From 6243b68356e47f80ec64beb6ea05cde2f9fe7450 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 19 Jul 2019 12:12:40 -0300 Subject: [PATCH 01/58] Try to fix performance --- app/share.js | 25 +++++++++++++++---------- app/views/ShareListView/index.js | 2 -- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/app/share.js b/app/share.js index a1441164f86..f9766c3dcf9 100644 --- a/app/share.js +++ b/app/share.js @@ -6,27 +6,30 @@ import { Provider } from 'react-redux'; import Navigation from './lib/Navigation'; import store from './lib/createStore'; import { appInit } from './actions'; -import ShareListView from './views/ShareListView'; -import ShareView from './views/ShareView'; -import SelectServerView from './views/SelectServerView'; -import AuthLoadingView from './views/AuthLoadingView'; -import WithoutServersView from './views/WithoutServersView'; import sharedStyles from './views/Styles'; import { isNotch } from './utils/deviceInfo'; import { defaultHeader, onNavigationStateChange } from './utils/navigation'; const InsideNavigator = createStackNavigator({ - ShareListView, - ShareView, - SelectServerView + ShareListView: { + getScreen: () => require('./views/ShareListView').default + }, + ShareView: { + getScreen: () => require('./views/ShareView').default + }, + SelectServerView: { + getScreen: () => require('./views/SelectServerView').default + } }, { initialRouteName: 'ShareListView', defaultNavigationOptions: defaultHeader }); const OutsideNavigator = createStackNavigator({ - WithoutServersView + WithoutServersView: { + getScreen: () => require('./views/WithoutServersView').default + } }, { initialRouteName: 'WithoutServersView', defaultNavigationOptions: defaultHeader @@ -35,7 +38,9 @@ const OutsideNavigator = createStackNavigator({ const AppContainer = createAppContainer(createSwitchNavigator({ OutsideStack: OutsideNavigator, InsideStack: InsideNavigator, - AuthLoading: AuthLoadingView + AuthLoading: { + getScreen: () => require('./views/AuthLoadingView').default + } }, { initialRouteName: 'AuthLoading' diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 0a3596b7096..5ced1268c96 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -126,8 +126,6 @@ export default class ShareListView extends React.Component { } async componentDidMount() { - this.getSubscriptions(); - const { navigation } = this.props; navigation.setParams({ initSearchingAndroid: this.initSearchingAndroid, From b043f9add85d27b10b7202cd06cfbf2239bda6d5 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 19 Jul 2019 14:13:06 -0300 Subject: [PATCH 02/58] Add slice to fix crash memory --- app/views/ShareListView/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 5ced1268c96..662382f0378 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -372,7 +372,7 @@ export default class ShareListView extends React.Component { {this.renderSectionHeader(header)} Date: Fri, 19 Jul 2019 15:29:54 -0300 Subject: [PATCH 03/58] Remove sort and group by type --- app/views/ShareListView/index.js | 57 ++++---------------------------- 1 file changed, 7 insertions(+), 50 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 662382f0378..9d6d32c5c95 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -43,10 +43,7 @@ const keyExtractor = item => item.rid; loading: state.server.loading, FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize, - baseUrl: state.settings.baseUrl || state.server ? state.server.server : '', - sortBy: state.sortPreferences.sortBy, - groupByType: state.sortPreferences.groupByType, - showFavorites: state.sortPreferences.showFavorites + baseUrl: state.settings.baseUrl || state.server ? state.server.server : '' }), dispatch => ({ openSearchHeader: () => dispatch(openSearchHeaderAction()), closeSearchHeader: () => dispatch(closeSearchHeaderAction()) @@ -97,9 +94,6 @@ export default class ShareListView extends React.Component { baseUrl: PropTypes.string, token: PropTypes.string, userId: PropTypes.string, - sortBy: PropTypes.string, - groupByType: PropTypes.bool, - showFavorites: PropTypes.bool, loading: PropTypes.bool } @@ -114,13 +108,7 @@ export default class ShareListView extends React.Component { loading: true, fileInfo: null, search: [], - discussions: [], - channels: [], - favorites: [], chats: [], - privateGroup: [], - direct: [], - livechat: [], servers: [] }; } @@ -201,38 +189,19 @@ export default class ShareListView extends React.Component { this.data.removeAllListeners(); } - const { - server, sortBy, showFavorites, groupByType - } = this.props; const { serversDB } = database.databases; + const { server } = this.props; if (server) { this.data = database.objects('subscriptions').filtered('archived != true && open == true'); - if (sortBy === 'alphabetical') { - this.data = this.data.sorted('name', false); - } else { - this.data = this.data.sorted('roomUpdatedAt', true); - } + // servers this.servers = serversDB.objects('servers'); - // favorites - if (showFavorites) { - this.favorites = this.data.filtered('f == true'); - } else { - this.favorites = []; - } + // chats + this.data = this.data.sorted('roomUpdatedAt', true); + this.chats = this.data.slice(0, 50); - // type - if (groupByType) { - this.discussions = this.data.filtered('prid != null'); - this.channels = this.data.filtered('t == $0 AND prid == null', 'c'); - this.privateGroup = this.data.filtered('t == $0 AND prid == null', 'p'); - this.direct = this.data.filtered('t == $0 AND prid == null', 'd'); - this.livechat = this.data.filtered('t == $0 AND prid == null', 'l'); - } else { - this.chats = this.data; - } safeAddListener(this.data, this.updateState); } }, 300); @@ -244,12 +213,6 @@ export default class ShareListView extends React.Component { this.updateStateInteraction = InteractionManager.runAfterInteractions(() => { this.internalSetState({ chats: this.chats ? this.chats.slice() : [], - favorites: this.favorites ? this.favorites.slice() : [], - discussions: this.discussions ? this.discussions.slice() : [], - channels: this.channels ? this.channels.slice() : [], - privateGroup: this.privateGroup ? this.privateGroup.slice() : [], - direct: this.direct ? this.direct.slice() : [], - livechat: this.livechat ? this.livechat.slice() : [], servers: this.servers ? this.servers.slice() : [], loading: false }); @@ -411,7 +374,7 @@ export default class ShareListView extends React.Component { renderContent = () => { const { - discussions, channels, privateGroup, direct, livechat, search, chats, favorites + search, chats } = this.state; if (search.length > 0) { @@ -436,12 +399,6 @@ export default class ShareListView extends React.Component { return ( {this.renderServerSelector()} - {this.renderSection(favorites, 'Favorites')} - {this.renderSection(discussions, 'Discussions')} - {this.renderSection(channels, 'Channels')} - {this.renderSection(direct, 'Direct_Messages')} - {this.renderSection(privateGroup, 'Private_Groups')} - {this.renderSection(livechat, 'Livechat')} {this.renderSection(chats, 'Chats')} ); From 2346f57b5d75f2d694c873d6f55be0633be560c6 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 19 Jul 2019 15:31:29 -0300 Subject: [PATCH 04/58] Remove slice --- app/views/ShareListView/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 9d6d32c5c95..cc3fe498c72 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -335,7 +335,7 @@ export default class ShareListView extends React.Component { {this.renderSectionHeader(header)} Date: Fri, 19 Jul 2019 16:39:47 -0300 Subject: [PATCH 05/58] Fix memory on search --- app/views/ShareListView/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index cc3fe498c72..3d930b51b9b 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -269,7 +269,7 @@ export default class ShareListView extends React.Component { search = (text) => { const result = database.objects('subscriptions').filtered('name CONTAINS[c] $0', text); const subscriptions = database.objects('subscriptions'); - const data = result.length !== subscriptions.length ? result : []; + const data = result.length !== subscriptions.length ? result.slice(0, 50) : []; this.internalSetState({ search: data }); From 92ed26506cfedd1134d593fad8b4a93b22541140 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 19 Jul 2019 18:17:36 -0300 Subject: [PATCH 06/58] Update code --- app/presentation/DirectoryItem/index.js | 2 +- app/views/ShareListView/index.js | 104 +++++++++++++----------- app/views/ShareListView/styles.js | 8 +- 3 files changed, 62 insertions(+), 52 deletions(-) diff --git a/app/presentation/DirectoryItem/index.js b/app/presentation/DirectoryItem/index.js index 652113e62b2..f9c0d888324 100644 --- a/app/presentation/DirectoryItem/index.js +++ b/app/presentation/DirectoryItem/index.js @@ -35,7 +35,7 @@ const DirectoryItem = ({ {title} - {description} + { description ? {description} : null } diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 3d930b51b9b..04df46be8e4 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, Text, LayoutAnimation, InteractionManager, FlatList, ScrollView, ActivityIndicator, Keyboard + View, Text, LayoutAnimation, InteractionManager, FlatList, ActivityIndicator, Keyboard } from 'react-native'; import { SafeAreaView } from 'react-navigation'; import ShareExtension from 'rn-extensions-share'; @@ -30,6 +30,7 @@ import ShareListHeader from './Header'; import styles from './styles'; const SCROLL_OFFSET = 56; +const LIMIT = 50; const getItemLayoutChannel = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const getItemLayoutServer = (data, index) => ({ length: ROW_HEIGHT_SERVER, offset: ROW_HEIGHT_SERVER * index, index }); const keyExtractor = item => item.rid; @@ -200,7 +201,7 @@ export default class ShareListView extends React.Component { // chats this.data = this.data.sorted('roomUpdatedAt', true); - this.chats = this.data.slice(0, 50); + this.chats = this.data.slice(0, LIMIT); safeAddListener(this.data, this.updateState); } @@ -268,10 +269,9 @@ export default class ShareListView extends React.Component { search = (text) => { const result = database.objects('subscriptions').filtered('name CONTAINS[c] $0', text); - const subscriptions = database.objects('subscriptions'); - const data = result.length !== subscriptions.length ? result.slice(0, 50) : []; this.internalSetState({ - search: data + search: result.slice(0, LIMIT), + isSearching: text !== '' }); } @@ -295,13 +295,17 @@ export default class ShareListView extends React.Component { renderListHeader = () => ; - renderSectionHeader = header => ( - - - {I18n.t(header)} - - - ) + renderSectionHeader = (header) => { + const { isSearching } = this.state; + if (isSearching) { return null; } + return ( + + + {I18n.t(header)} + + + ); + } renderItem = ({ item }) => { const { userId, token, baseUrl } = this.props; @@ -372,54 +376,58 @@ export default class ShareListView extends React.Component { ) : null; } - renderContent = () => { - const { - search, chats - } = this.state; - - if (search.length > 0) { - return ( - - ); - } + renderEmptyComponent = () => ( + + {I18n.t('No_results_found')} + + ); + renderHeader = () => { + const { isSearching } = this.state; return ( - - {this.renderServerSelector()} - {this.renderSection(chats, 'Chats')} - + + {this.renderListHeader()} + { !isSearching + ? ( + + {this.renderServerSelector()} + {this.renderSectionHeader('Chats')} + + ) + : null + } + ); } + renderContent = () => { + const { + search, chats, mediaLoading, loading, isSearching + } = this.state; - renderScrollView = () => { - const { mediaLoading, loading } = this.state; if (mediaLoading || loading) { return ; } return ( - - {this.renderListHeader()} - {this.renderContent()} - + initialNumToRender={12} + windowSize={20} + /> ); } @@ -442,7 +450,7 @@ export default class ShareListView extends React.Component { const showError = !this.canUploadFile(); return ( - { showError ? this.renderError() : this.renderScrollView() } + { showError ? this.renderError() : this.renderContent() } ); } diff --git a/app/views/ShareListView/styles.js b/app/views/ShareListView/styles.js index 4269db2e33e..ad8dfa44b39 100644 --- a/app/views/ShareListView/styles.js +++ b/app/views/ShareListView/styles.js @@ -15,7 +15,9 @@ export default StyleSheet.create({ }, content: { flex: 1, - backgroundColor: isIOS ? COLOR_WHITE : '#E1E5E8' + backgroundColor: isIOS ? COLOR_WHITE : '#E1E5E8', + justifyContent: 'center', + alignItems: 'center' }, flatlist: { width: '100%', @@ -24,8 +26,8 @@ export default StyleSheet.create({ bordered: { ...sharedStyles.separatorVertical }, - scroll: { - width: '100%' + borderBottom: { + ...sharedStyles.separatorBottom }, headerContainer: { paddingHorizontal: 15, From 68a7e24054218f2e7048cf26a64d905de3e06d18 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 19 Jul 2019 20:36:43 -0300 Subject: [PATCH 07/58] Minor fixes --- app/views/ShareListView/index.js | 40 +++++-------------------------- app/views/ShareListView/styles.js | 2 +- 2 files changed, 7 insertions(+), 35 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 04df46be8e4..5c97c768e84 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -22,7 +22,7 @@ import { closeSearchHeader as closeSearchHeaderAction } from '../../actions/rooms'; import DirectoryItem, { ROW_HEIGHT } from '../../presentation/DirectoryItem'; -import ServerItem, { ROW_HEIGHT as ROW_HEIGHT_SERVER } from '../../presentation/ServerItem'; +import ServerItem from '../../presentation/ServerItem'; import { CloseShareExtensionButton, CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import SearchBar from '../RoomsListView/ListHeader/SearchBar'; import ShareListHeader from './Header'; @@ -31,8 +31,7 @@ import styles from './styles'; const SCROLL_OFFSET = 56; const LIMIT = 50; -const getItemLayoutChannel = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); -const getItemLayoutServer = (data, index) => ({ length: ROW_HEIGHT_SERVER, offset: ROW_HEIGHT_SERVER * index, index }); +const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const keyExtractor = item => item.rid; @connect(state => ({ @@ -102,6 +101,7 @@ export default class ShareListView extends React.Component { super(props); this.data = []; this.state = { + isSearching: false, searching: false, value: '', isMedia: false, @@ -332,32 +332,6 @@ export default class ShareListView extends React.Component { renderSeparator = () => ; - renderSection = (data, header) => { - if (data && data.length > 0) { - return ( - - {this.renderSectionHeader(header)} - - - - - ); - } - return null; - } - renderServerSelector = () => { const { servers } = this.state; const { server } = this.props; @@ -377,7 +351,7 @@ export default class ShareListView extends React.Component { } renderEmptyComponent = () => ( - + {I18n.t('No_results_found')} ); @@ -412,20 +386,18 @@ export default class ShareListView extends React.Component { return ( ); diff --git a/app/views/ShareListView/styles.js b/app/views/ShareListView/styles.js index ad8dfa44b39..82e6c296860 100644 --- a/app/views/ShareListView/styles.js +++ b/app/views/ShareListView/styles.js @@ -21,7 +21,7 @@ export default StyleSheet.create({ }, flatlist: { width: '100%', - backgroundColor: COLOR_WHITE + backgroundColor: COLOR_BACKGROUND_CONTAINER }, bordered: { ...sharedStyles.separatorVertical From f2f83d8e07d79b6c8cc2c18cc8b4b56aa5cfc6d1 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 19 Jul 2019 20:41:20 -0300 Subject: [PATCH 08/58] Add border bottom to flatlist content --- app/views/ShareListView/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 5c97c768e84..d7aee3e7d59 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -332,6 +332,8 @@ export default class ShareListView extends React.Component { renderSeparator = () => ; + renderBorderBottom = () => ; + renderServerSelector = () => { const { servers } = this.state; const { server } = this.props; @@ -393,6 +395,7 @@ export default class ShareListView extends React.Component { contentOffset={isIOS ? { x: 0, y: SCROLL_OFFSET } : {}} ItemSeparatorComponent={this.renderSeparator} ListHeaderComponent={this.renderHeader} + ListFooterComponent={!isSearching && this.renderBorderBottom} ListHeaderComponentStyle={!isSearching ? styles.borderBottom : {}} ListEmptyComponent={this.renderEmptyComponent} enableEmptySections From 818dfb4c24eead930f1dc892d5fbbffaab669e19 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sat, 20 Jul 2019 11:02:34 -0300 Subject: [PATCH 09/58] Add cancel button to search --- app/containers/SearchBox.js | 34 +++++++++++++++++--- app/views/ShareListView/SearchBar.js | 48 ++++++++++++++++++++++++++++ app/views/ShareListView/index.js | 6 ++-- 3 files changed, 81 insertions(+), 7 deletions(-) create mode 100644 app/views/ShareListView/SearchBar.js diff --git a/app/containers/SearchBox.js b/app/containers/SearchBox.js index 87a3cd8e3a9..b426dc6a12f 100644 --- a/app/containers/SearchBox.js +++ b/app/containers/SearchBox.js @@ -1,6 +1,9 @@ import React from 'react'; -import { View, StyleSheet, TextInput } from 'react-native'; +import { + View, StyleSheet, TextInput, Text +} from 'react-native'; import PropTypes from 'prop-types'; +import Touchable from 'react-native-platform-touchable'; import I18n from '../i18n'; import { isIOS } from '../utils/deviceInfo'; @@ -9,7 +12,9 @@ import sharedStyles from '../views/Styles'; const styles = StyleSheet.create({ container: { - backgroundColor: isIOS ? '#F7F8FA' : '#54585E' + backgroundColor: isIOS ? '#F7F8FA' : '#54585E', + flexDirection: 'row', + alignItems: 'center' }, searchBox: { alignItems: 'center', @@ -21,7 +26,8 @@ const styles = StyleSheet.create({ height: 36, margin: 16, marginVertical: 10, - paddingHorizontal: 10 + paddingHorizontal: 10, + flex: 1 }, input: { color: '#8E8E93', @@ -31,10 +37,26 @@ const styles = StyleSheet.create({ paddingTop: 0, paddingBottom: 0, ...sharedStyles.textRegular + }, + cancel: { + marginRight: 10 + }, + cancelText: { + ...sharedStyles.textRegular, + ...sharedStyles.textColorHeaderBack, + fontSize: 17 } }); -const SearchBox = ({ onChangeText, onSubmitEditing, testID }) => ( +const CancelButton = onCancelPress => ( + + {I18n.t('Cancel')} + +); + +const SearchBox = ({ + onChangeText, onSubmitEditing, testID, hasCancel, onCancelPress, ...props +}) => ( @@ -50,14 +72,18 @@ const SearchBox = ({ onChangeText, onSubmitEditing, testID }) => ( underlineColorAndroid='transparent' onChangeText={onChangeText} onSubmitEditing={onSubmitEditing} + {...props} /> + { hasCancel ? CancelButton(onCancelPress) : null } ); SearchBox.propTypes = { onChangeText: PropTypes.func.isRequired, onSubmitEditing: PropTypes.func, + hasCancel: PropTypes.bool, + onCancelPress: PropTypes.func, testID: PropTypes.string }; diff --git a/app/views/ShareListView/SearchBar.js b/app/views/ShareListView/SearchBar.js new file mode 100644 index 00000000000..5a5f9ced346 --- /dev/null +++ b/app/views/ShareListView/SearchBar.js @@ -0,0 +1,48 @@ +import React, { useState } from 'react'; +import PropTypes from 'prop-types'; +import { Keyboard, LayoutAnimation } from 'react-native'; + +import SearchBox from '../../containers/SearchBox'; +import { isIOS } from '../../utils/deviceInfo'; + +const SearchBar = React.memo(({ onChangeSearchText }) => { + const [text, setText] = useState(''); + const [hasCancel, setHasCancel] = useState(false); + + const onChangeText = (searchText) => { + onChangeSearchText(searchText); + setText(searchText); + }; + + const onCancelPress = () => { + Keyboard.dismiss(); + onChangeText(''); + setHasCancel(false); + }; + + const onFocus = () => { + setHasCancel(true); + LayoutAnimation.easeInEaseOut(); + }; + + if (isIOS) { + return ( + + ); + } + return null; +}); + +SearchBar.propTypes = { + onChangeSearchText: PropTypes.func +}; + +export default SearchBar; diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index d7aee3e7d59..cf95e3c6086 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -24,7 +24,7 @@ import { import DirectoryItem, { ROW_HEIGHT } from '../../presentation/DirectoryItem'; import ServerItem from '../../presentation/ServerItem'; import { CloseShareExtensionButton, CustomHeaderButtons, Item } from '../../containers/HeaderButton'; -import SearchBar from '../RoomsListView/ListHeader/SearchBar'; +import SearchBar from './SearchBar'; import ShareListHeader from './Header'; import styles from './styles'; @@ -293,7 +293,7 @@ export default class ShareListView extends React.Component { } } - renderListHeader = () => ; + renderSearchBar = () => ; renderSectionHeader = (header) => { const { isSearching } = this.state; @@ -362,7 +362,7 @@ export default class ShareListView extends React.Component { const { isSearching } = this.state; return ( - {this.renderListHeader()} + {this.renderSearchBar()} { !isSearching ? ( From 59d90d0d9a8287b71e02b99644ede6a70fe4526e Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sat, 20 Jul 2019 12:44:26 -0300 Subject: [PATCH 10/58] Remove unnecessary socket --- app/lib/methods/getSettings.js | 9 +++++++ app/lib/realm.js | 15 ++++++++++- app/share.js | 44 +++++++++++++++++++++++++++++--- app/views/SelectServerView.js | 39 +++++++++++++++++++++++----- app/views/ShareListView/index.js | 42 ++++++++++++++---------------- 5 files changed, 114 insertions(+), 35 deletions(-) diff --git a/app/lib/methods/getSettings.js b/app/lib/methods/getSettings.js index c751b5182a9..11e55c1c101 100644 --- a/app/lib/methods/getSettings.js +++ b/app/lib/methods/getSettings.js @@ -40,6 +40,15 @@ export default async function() { if (setting._id === 'Site_Name') { updateServer.call(this, { name: setting.valueAsString }); } + if (setting._id === 'UI_Use_Real_Name') { + updateServer.call(this, { useRealName: setting.valueAsBoolean }); + } + if (setting._id === 'FileUpload_MediaTypeWhiteList') { + updateServer.call(this, { FileUpload_MediaTypeWhiteList: setting.valueAsString }); + } + if (setting._id === 'FileUpload_MaxFileSize') { + updateServer.call(this, { FileUpload_MaxFileSize: setting.valueAsNumber }); + } }) ) ); diff --git a/app/lib/realm.js b/app/lib/realm.js index 9980c3a1f06..faa0184fddf 100644 --- a/app/lib/realm.js +++ b/app/lib/realm.js @@ -26,6 +26,9 @@ const serversSchema = { id: 'string', name: { type: 'string', optional: true }, iconURL: { type: 'string', optional: true }, + useRealName: { type: 'bool', optional: true }, + FileUpload_MediaTypeWhiteList: { type: 'string', optional: true }, + FileUpload_MaxFileSize: { type: 'int', optional: true }, roomsUpdatedAt: { type: 'date', optional: true }, version: 'string?' } @@ -414,7 +417,7 @@ class DB { userSchema, serversSchema ], - schemaVersion: 9, + schemaVersion: 10, migration: (oldRealm, newRealm) => { if (oldRealm.schemaVersion >= 1 && newRealm.schemaVersion <= 9) { const newServers = newRealm.objects('servers'); @@ -424,6 +427,16 @@ class DB { newServers[i].roomsUpdatedAt = null; } } + if (oldRealm.schemaVersion === 9 && newRealm.schemaVersion === 10) { + const newServers = newRealm.objects('servers'); + + // eslint-disable-next-line no-plusplus + for (let i = 0; i < newServers.length; i++) { + newServers[i].useRealName = null; + newServers[i].FileUpload_MediaTypeWhiteList = null; + newServers[i].FileUpload_MaxFileSize = null; + } + } } }), inMemoryDB: new Realm({ diff --git a/app/share.js b/app/share.js index f9766c3dcf9..d7173f61ee0 100644 --- a/app/share.js +++ b/app/share.js @@ -2,14 +2,18 @@ import React from 'react'; import { View } from 'react-native'; import { createAppContainer, createStackNavigator, createSwitchNavigator } from 'react-navigation'; import { Provider } from 'react-redux'; +import RNUserDefaults from 'rn-user-defaults'; import Navigation from './lib/Navigation'; import store from './lib/createStore'; -import { appInit } from './actions'; +import database from './lib/realm'; import sharedStyles from './views/Styles'; -import { isNotch } from './utils/deviceInfo'; +import { isNotch, isIOS } from './utils/deviceInfo'; import { defaultHeader, onNavigationStateChange } from './utils/navigation'; - +import { selectServerSuccess } from './actions/server'; +import { setUser } from './actions/login'; +import RocketChat from './lib/rocketchat'; +import { addSettings } from './actions'; const InsideNavigator = createStackNavigator({ ShareListView: { @@ -49,10 +53,42 @@ const AppContainer = createAppContainer(createSwitchNavigator({ class Root extends React.Component { constructor(props) { super(props); - store.dispatch(appInit()); this.state = { isLandscape: false }; + this.init(); + } + + init = async() => { + if (isIOS) { + await RNUserDefaults.setName('group.ios.chat.rocket'); + } + const currentServer = await RNUserDefaults.get('currentServer'); + + if (currentServer) { + // server + database.setActiveDB(currentServer); + const { serversDB } = database.databases; + const server = serversDB.objectForPrimaryKey('servers', currentServer); + store.dispatch(selectServerSuccess(currentServer, server.version)); + + // add settings to upload media + store.dispatch(addSettings({ + Site_Url: server.id, + useRealName: server.useRealName, + FileUpload_MediaTypeWhiteList: server.FileUpload_MediaTypeWhiteList, + FileUpload_MaxFileSize: server.FileUpload_MaxFileSize + })); + + // user + const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ server }`); + const user = userId && serversDB.objectForPrimaryKey('user', userId); + store.dispatch(setUser(user)); + + await Navigation.navigate('InsideStack'); + } else { + await Navigation.navigate('OutsideStack'); + } } handleLayout = (event) => { diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index 4a40edb1902..7b503bc046c 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -5,18 +5,21 @@ import { import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { SafeAreaView } from 'react-navigation'; +import RNUserDefaults from 'rn-user-defaults'; import I18n from '../i18n'; import database from '../lib/realm'; import StatusBar from '../containers/StatusBar'; -import { selectServerRequest as selectServerRequestAction } from '../actions/server'; - +import { selectServerSuccess as selectServerSuccessAction } from '../actions/server'; +import { setUser as setUserAction } from '../actions/login'; +import { addSettings as addSettingsAction } from '../actions'; import { COLOR_BACKGROUND_CONTAINER } from '../constants/colors'; import Navigation from '../lib/Navigation'; import ServerItem, { ROW_HEIGHT } from '../presentation/ServerItem'; import sharedStyles from './Styles'; +import RocketChat from '../lib/rocketchat'; const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const keyExtractor = item => item.id; @@ -39,7 +42,9 @@ const styles = StyleSheet.create({ @connect(state => ({ server: state.server.server }), dispatch => ({ - selectServerRequest: server => dispatch(selectServerRequestAction(server)) + setUser: user => dispatch(setUserAction(user)), + addSettings: settings => dispatch(addSettingsAction(settings)), + selectServerSuccess: server => dispatch(selectServerSuccessAction(server)) })) export default class SelectServerView extends React.Component { static navigationOptions = () => ({ @@ -48,7 +53,9 @@ export default class SelectServerView extends React.Component { static propTypes = { server: PropTypes.string, - selectServerRequest: PropTypes.func + setUser: PropTypes.func, + addSettings: PropTypes.func, + selectServerSuccess: PropTypes.func } constructor(props) { @@ -61,13 +68,31 @@ export default class SelectServerView extends React.Component { }; } - select = (server) => { + select = async(server) => { const { - server: currentServer, selectServerRequest + server: currentServer, selectServerSuccess, setUser, addSettings } = this.props; if (currentServer !== server) { - selectServerRequest(server); + const { serversDB } = database.databases; + + // server + database.setActiveDB(server); + const serverInfo = serversDB.objectForPrimaryKey('servers', server); + selectServerSuccess(server, serverInfo.version); + + // add settings to upload media + addSettings({ + Site_Url: serverInfo.id, + useRealName: serverInfo.useRealName, + FileUpload_MediaTypeWhiteList: serverInfo.FileUpload_MediaTypeWhiteList, + FileUpload_MaxFileSize: serverInfo.FileUpload_MaxFileSize + }); + + // user + const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ server }`); + const user = userId && serversDB.objectForPrimaryKey('user', userId); + setUser(user); } Navigation.navigate('ShareListView'); } diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index cf95e3c6086..58568220dcd 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -37,13 +37,12 @@ const keyExtractor = item => item.rid; @connect(state => ({ userId: state.login.user && state.login.user.id, token: state.login.user && state.login.user.token, - useRealName: state.settings.UI_Use_Real_Name, searchText: state.rooms.searchText, server: state.server.server, - loading: state.server.loading, + useRealName: state.settings.UI_Use_Real_Name, FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize, - baseUrl: state.settings.baseUrl || state.server ? state.server.server : '' + baseUrl: state.server ? state.server.server : '' }), dispatch => ({ openSearchHeader: () => dispatch(openSearchHeaderAction()), closeSearchHeader: () => dispatch(closeSearchHeaderAction()) @@ -93,8 +92,7 @@ export default class ShareListView extends React.Component { closeSearchHeader: PropTypes.func, baseUrl: PropTypes.string, token: PropTypes.string, - userId: PropTypes.string, - loading: PropTypes.bool + userId: PropTypes.string } constructor(props) { @@ -106,7 +104,6 @@ export default class ShareListView extends React.Component { value: '', isMedia: false, mediaLoading: false, - loading: true, fileInfo: null, search: [], chats: [], @@ -115,6 +112,8 @@ export default class ShareListView extends React.Component { } async componentDidMount() { + this.getSubscriptions(); + const { navigation } = this.props; navigation.setParams({ initSearchingAndroid: this.initSearchingAndroid, @@ -147,25 +146,23 @@ export default class ShareListView extends React.Component { } componentWillReceiveProps(nextProps) { - const { searchText, loading } = this.props; + const { searchText, server } = this.props; - if (nextProps.server && loading !== nextProps.loading) { - if (nextProps.loading) { - this.internalSetState({ loading: true }); - } else { - this.getSubscriptions(); - } + if (server !== nextProps.server) { + this.getSubscriptions(); } else if (searchText !== nextProps.searchText) { this.search(nextProps.searchText); } } shouldComponentUpdate(nextProps, nextState) { - const { loading, searching } = this.state; - if (nextState.loading !== loading) { + const { searching } = this.state; + if (nextState.searching !== searching) { return true; } - if (nextState.searching !== searching) { + + const { server } = this.props; + if (server !== nextProps.server) { return true; } @@ -214,8 +211,7 @@ export default class ShareListView extends React.Component { this.updateStateInteraction = InteractionManager.runAfterInteractions(() => { this.internalSetState({ chats: this.chats ? this.chats.slice() : [], - servers: this.servers ? this.servers.slice() : [], - loading: false + servers: this.servers ? this.servers.slice() : [] }); this.forceUpdate(); }); @@ -241,9 +237,9 @@ export default class ShareListView extends React.Component { canUploadFile = () => { const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = this.props; - const { fileInfo: file, mediaLoading, loading } = this.state; + const { fileInfo: file, mediaLoading } = this.state; - if (loading || mediaLoading) { + if (mediaLoading) { return true; } if (!(file && file.path)) { @@ -378,10 +374,10 @@ export default class ShareListView extends React.Component { renderContent = () => { const { - search, chats, mediaLoading, loading, isSearching + search, chats, mediaLoading, isSearching } = this.state; - if (mediaLoading || loading) { + if (mediaLoading) { return ; } @@ -422,7 +418,7 @@ export default class ShareListView extends React.Component { } render() { - const showError = !this.canUploadFile(); + const showError = false; // !this.canUploadFile(); return ( { showError ? this.renderError() : this.renderContent() } From c943f885f5edfe06943f57b997b6255ba8bc19b5 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sat, 20 Jul 2019 17:05:13 -0300 Subject: [PATCH 11/58] Add loading while get subscriptions --- app/views/ShareListView/index.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 58568220dcd..c28d14a5a2a 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -107,13 +107,12 @@ export default class ShareListView extends React.Component { fileInfo: null, search: [], chats: [], - servers: [] + servers: [], + loading: true }; } async componentDidMount() { - this.getSubscriptions(); - const { navigation } = this.props; navigation.setParams({ initSearchingAndroid: this.initSearchingAndroid, @@ -143,12 +142,15 @@ export default class ShareListView extends React.Component { log('err_process_media_share_extension', e); this.setState({ mediaLoading: false }); } + + this.getSubscriptions(); } componentWillReceiveProps(nextProps) { const { searchText, server } = this.props; if (server !== nextProps.server) { + this.setState({ loading: true }); this.getSubscriptions(); } else if (searchText !== nextProps.searchText) { this.search(nextProps.searchText); @@ -211,7 +213,8 @@ export default class ShareListView extends React.Component { this.updateStateInteraction = InteractionManager.runAfterInteractions(() => { this.internalSetState({ chats: this.chats ? this.chats.slice() : [], - servers: this.servers ? this.servers.slice() : [] + servers: this.servers ? this.servers.slice() : [], + loading: false }); this.forceUpdate(); }); @@ -374,10 +377,10 @@ export default class ShareListView extends React.Component { renderContent = () => { const { - search, chats, mediaLoading, isSearching + search, chats, mediaLoading, loading, isSearching } = this.state; - if (mediaLoading) { + if (mediaLoading || loading) { return ; } From fc171b60065bc42308c093dc025ac11fd0932955 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 22:04:06 -0300 Subject: [PATCH 12/58] Fix can upload file on Share Extension --- app/views/ShareListView/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index c28d14a5a2a..9d3bce94a4b 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -99,6 +99,7 @@ export default class ShareListView extends React.Component { super(props); this.data = []; this.state = { + showError: false, isSearching: false, searching: false, value: '', @@ -214,7 +215,8 @@ export default class ShareListView extends React.Component { this.internalSetState({ chats: this.chats ? this.chats.slice() : [], servers: this.servers ? this.servers.slice() : [], - loading: false + loading: false, + showError: !this.canUploadFile() }); this.forceUpdate(); }); @@ -421,7 +423,7 @@ export default class ShareListView extends React.Component { } render() { - const showError = false; // !this.canUploadFile(); + const { showError } = this.state; return ( { showError ? this.renderError() : this.renderContent() } From 617476193ba0a927850b423125d2c54bc7a7bf3a Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 22:15:15 -0300 Subject: [PATCH 13/58] Allow change server on file not allowed --- app/views/ShareListView/index.js | 9 ++++++--- app/views/ShareListView/styles.js | 9 +++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 9d3bce94a4b..737f05c9826 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -415,9 +415,12 @@ export default class ShareListView extends React.Component { : 'error-invalid-file-type'; return ( - {I18n.t(errorMessage)} - - { file.type } + { this.renderServerSelector() } + + {I18n.t(errorMessage)} + + { file.type } + ); } diff --git a/app/views/ShareListView/styles.js b/app/views/ShareListView/styles.js index 82e6c296860..d79d1f023f6 100644 --- a/app/views/ShareListView/styles.js +++ b/app/views/ShareListView/styles.js @@ -8,8 +8,6 @@ import { export default StyleSheet.create({ container: { - justifyContent: 'center', - alignItems: 'center', flex: 1, backgroundColor: COLOR_BACKGROUND_CONTAINER }, @@ -19,6 +17,10 @@ export default StyleSheet.create({ justifyContent: 'center', alignItems: 'center' }, + centered: { + justifyContent: 'center', + alignItems: 'center' + }, flatlist: { width: '100%', backgroundColor: COLOR_BACKGROUND_CONTAINER @@ -39,8 +41,7 @@ export default StyleSheet.create({ ...sharedStyles.textColorNormal, ...sharedStyles.textRegular, fontSize: 17, - letterSpacing: 0.27, - flex: 1 + letterSpacing: 0.27 }, separator: { ...sharedStyles.separatorBottom, From 4913d9b892fcaf5526065ecc101599a16f2296f5 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 22:18:54 -0300 Subject: [PATCH 14/58] Fix loading if error on upload media --- app/views/ShareListView/index.js | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 737f05c9826..f2a8905c509 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -242,11 +242,14 @@ export default class ShareListView extends React.Component { canUploadFile = () => { const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = this.props; - const { fileInfo: file, mediaLoading } = this.state; + const { fileInfo: file, mediaLoading, isMedia } = this.state; if (mediaLoading) { return true; } + if (!isMedia) { + return true; + } if (!(file && file.path)) { return true; } @@ -408,11 +411,16 @@ export default class ShareListView extends React.Component { } renderError = () => { - const { fileInfo: file } = this.state; + const { fileInfo: file, loading } = this.state; const { FileUpload_MaxFileSize } = this.props; const errorMessage = (FileUpload_MaxFileSize < file.size) ? 'error-file-too-large' : 'error-invalid-file-type'; + + if (loading) { + return ; + } + return ( { this.renderServerSelector() } From 356e7be8cdd37a5e9e69bd4ac553d7e9fd0e711d Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 22:30:50 -0300 Subject: [PATCH 15/58] Remove debounce --- app/views/ShareListView/index.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index f2a8905c509..23805974070 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -12,7 +12,6 @@ import { isEqual } from 'lodash'; import Navigation from '../../lib/Navigation'; import database, { safeAddListener } from '../../lib/realm'; -import debounce from '../../utils/debounce'; import { isIOS, isAndroid } from '../../utils/deviceInfo'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; @@ -185,7 +184,7 @@ export default class ShareListView extends React.Component { this.setState(...args); } - getSubscriptions = debounce(() => { + getSubscriptions = () => { if (this.data && this.data.removeAllListeners) { this.data.removeAllListeners(); } @@ -205,12 +204,12 @@ export default class ShareListView extends React.Component { safeAddListener(this.data, this.updateState); } - }, 300); + }; uriToPath = uri => decodeURIComponent(isIOS ? uri.replace(/^file:\/\//, '') : uri); // eslint-disable-next-line react/sort-comp - updateState = debounce(() => { + updateState = () => { this.updateStateInteraction = InteractionManager.runAfterInteractions(() => { this.internalSetState({ chats: this.chats ? this.chats.slice() : [], @@ -220,7 +219,7 @@ export default class ShareListView extends React.Component { }); this.forceUpdate(); }); - }, 300); + }; getRoomTitle = (item) => { const { useRealName } = this.props; From 95b739514531251a246f27d808a3cdcf48dca3c0 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 23:04:36 -0300 Subject: [PATCH 16/58] Fix infinity loading --- app/views/ShareListView/index.js | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 23805974070..67847f837ab 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -147,13 +147,13 @@ export default class ShareListView extends React.Component { } componentWillReceiveProps(nextProps) { - const { searchText, server } = this.props; + const { searchText } = this.props; - if (server !== nextProps.server) { + if (searchText !== nextProps.searchText) { + this.search(nextProps.searchText); + } else { this.setState({ loading: true }); this.getSubscriptions(); - } else if (searchText !== nextProps.searchText) { - this.search(nextProps.searchText); } } @@ -337,7 +337,7 @@ export default class ShareListView extends React.Component { renderBorderBottom = () => ; - renderServerSelector = () => { + renderSelectServer = () => { const { servers } = this.state; const { server } = this.props; const currentServer = servers.find(serverFiltered => serverFiltered.id === server); @@ -369,7 +369,7 @@ export default class ShareListView extends React.Component { { !isSearching ? ( - {this.renderServerSelector()} + {this.renderSelectServer()} {this.renderSectionHeader('Chats')} ) @@ -404,6 +404,7 @@ export default class ShareListView extends React.Component { enableEmptySections removeClippedSubviews keyboardShouldPersistTaps='always' + initialNumToRender={12} windowSize={20} /> ); @@ -422,7 +423,7 @@ export default class ShareListView extends React.Component { return ( - { this.renderServerSelector() } + { this.renderSelectServer() } {I18n.t(errorMessage)} From 6d3f6b6fa79918d18863b441d1c6d7660c7e6a95 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 23:06:09 -0300 Subject: [PATCH 17/58] Fix cancel button translate --- app/containers/HeaderButton.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/containers/HeaderButton.js b/app/containers/HeaderButton.js index e1550b4c001..076dd938056 100644 --- a/app/containers/HeaderButton.js +++ b/app/containers/HeaderButton.js @@ -5,6 +5,7 @@ import HeaderButtons, { HeaderButton, Item } from 'react-navigation-header-butto import { CustomIcon } from '../lib/Icons'; import { isIOS } from '../utils/deviceInfo'; import { COLOR_PRIMARY, COLOR_WHITE } from '../constants/colors'; +import I18n from '../i18n'; const color = isIOS ? COLOR_PRIMARY : COLOR_WHITE; export const headerIconSize = 23; @@ -35,7 +36,7 @@ export const CloseModalButton = React.memo(({ navigation, testID }) => ( export const CloseShareExtensionButton = React.memo(({ onPress, testID }) => ( {isIOS - ? + ? : } From 662225d85ac8cde781640c134f403556d3918342 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 23:35:50 -0300 Subject: [PATCH 18/58] Fix error on get userId - Share Extension --- app/share.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/share.js b/app/share.js index d7173f61ee0..db298394b88 100644 --- a/app/share.js +++ b/app/share.js @@ -81,7 +81,7 @@ class Root extends React.Component { })); // user - const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ server }`); + const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ currentServer }`); const user = userId && serversDB.objectForPrimaryKey('user', userId); store.dispatch(setUser(user)); From 377edac3712291015e032292914df657b1180caf Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sun, 21 Jul 2019 23:51:40 -0300 Subject: [PATCH 19/58] Fix share message --- app/lib/rocketchat.js | 14 ++++++++++++++ app/views/ShareView/index.js | 8 +++++++- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 7b3e75ae55e..fa3e1140076 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -217,6 +217,20 @@ const RocketChat = { }); }, + async simpleConnect({ server, token }) { + if (this.sdk) { + this.sdk.disconnect(); + this.sdk = null; + } + + // Use useSsl: false only if server url starts with http:// + const useSsl = !/http:\/\//.test(server); + + this.sdk = new RocketchatClient({ host: server, protocol: 'ddp', useSsl }); + + await this.sdk.login({ resume: token }); + }, + register(credentials) { // RC 0.50.0 return this.sdk.post('users.register', credentials, false); diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index f0b787d2a26..2037abcf40b 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -20,7 +20,9 @@ import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import { isReadOnly, isBlocked } from '../../utils/room'; @connect(state => ({ - username: state.login.user && state.login.user.username + username: state.login.user && state.login.user.username, + token: state.login.user && state.login.user.token, + server: state.server.server })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { @@ -46,6 +48,8 @@ export default class ShareView extends React.Component { static propTypes = { navigation: PropTypes.object, + server: PropTypes.string, + token: PropTypes.string, username: PropTypes.string.isRequired }; @@ -112,8 +116,10 @@ export default class ShareView extends React.Component { sendTextMessage = async() => { const { value, rid } = this.state; + const { server, token } = this.props; if (value !== '' && rid !== '') { try { + await RocketChat.simpleConnect({ server, token }); await RocketChat.sendMessage(rid, value, undefined); } catch (error) { log('err_share_extension_send_message', error); From a88b8111aa894d82586694ce690873e59a97be91 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 00:02:15 -0300 Subject: [PATCH 20/58] Improve share extension init --- app/lib/rocketchat.js | 28 +++++++++++++++++++++---- app/share.js | 24 +-------------------- app/views/SelectServerView.js | 39 ++++------------------------------- app/views/ShareView/index.js | 12 +++++------ 4 files changed, 34 insertions(+), 69 deletions(-) diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index fa3e1140076..110eb6784bf 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -10,10 +10,12 @@ import database from './realm'; import log from '../utils/log'; import { isIOS, getBundleId } from '../utils/deviceInfo'; +import { addSettings } from '../actions'; import { setUser, setLoginServices, loginRequest, loginFailure, logout } from '../actions/login'; import { disconnect, connectSuccess, connectRequest } from '../actions/connect'; +import { selectServerSuccess } from '../actions/server'; import subscribeRooms from './methods/subscriptions/rooms'; import subscribeRoom from './methods/subscriptions/room'; @@ -217,18 +219,36 @@ const RocketChat = { }); }, - async simpleConnect({ server, token }) { + async shareExtensionInit(currentServer) { + database.setActiveDB(currentServer); + if (this.sdk) { this.sdk.disconnect(); this.sdk = null; } // Use useSsl: false only if server url starts with http:// - const useSsl = !/http:\/\//.test(server); + const useSsl = !/http:\/\//.test(currentServer); - this.sdk = new RocketchatClient({ host: server, protocol: 'ddp', useSsl }); + this.sdk = new RocketchatClient({ host: currentServer, protocol: 'ddp', useSsl }); - await this.sdk.login({ resume: token }); + // set Server + const { serversDB } = database.databases; + const server = serversDB.objectForPrimaryKey('servers', currentServer); + reduxStore.dispatch(selectServerSuccess(currentServer, server.version)); + + // set File configs + reduxStore.dispatch(addSettings({ + Site_Url: server.id, + useRealName: server.useRealName, + FileUpload_MediaTypeWhiteList: server.FileUpload_MediaTypeWhiteList, + FileUpload_MaxFileSize: server.FileUpload_MaxFileSize + })); + + // set User info + const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ currentServer }`); + const user = userId && serversDB.objectForPrimaryKey('user', userId); + reduxStore.dispatch(setUser(user)); }, register(credentials) { diff --git a/app/share.js b/app/share.js index db298394b88..5cd871afdc1 100644 --- a/app/share.js +++ b/app/share.js @@ -6,14 +6,10 @@ import RNUserDefaults from 'rn-user-defaults'; import Navigation from './lib/Navigation'; import store from './lib/createStore'; -import database from './lib/realm'; import sharedStyles from './views/Styles'; import { isNotch, isIOS } from './utils/deviceInfo'; import { defaultHeader, onNavigationStateChange } from './utils/navigation'; -import { selectServerSuccess } from './actions/server'; -import { setUser } from './actions/login'; import RocketChat from './lib/rocketchat'; -import { addSettings } from './actions'; const InsideNavigator = createStackNavigator({ ShareListView: { @@ -66,25 +62,7 @@ class Root extends React.Component { const currentServer = await RNUserDefaults.get('currentServer'); if (currentServer) { - // server - database.setActiveDB(currentServer); - const { serversDB } = database.databases; - const server = serversDB.objectForPrimaryKey('servers', currentServer); - store.dispatch(selectServerSuccess(currentServer, server.version)); - - // add settings to upload media - store.dispatch(addSettings({ - Site_Url: server.id, - useRealName: server.useRealName, - FileUpload_MediaTypeWhiteList: server.FileUpload_MediaTypeWhiteList, - FileUpload_MaxFileSize: server.FileUpload_MaxFileSize - })); - - // user - const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ currentServer }`); - const user = userId && serversDB.objectForPrimaryKey('user', userId); - store.dispatch(setUser(user)); - + await RocketChat.shareExtensionInit(currentServer); await Navigation.navigate('InsideStack'); } else { await Navigation.navigate('OutsideStack'); diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index 7b503bc046c..a27f9bdd984 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -5,17 +5,11 @@ import { import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { SafeAreaView } from 'react-navigation'; -import RNUserDefaults from 'rn-user-defaults'; import I18n from '../i18n'; import database from '../lib/realm'; import StatusBar from '../containers/StatusBar'; -import { selectServerSuccess as selectServerSuccessAction } from '../actions/server'; -import { setUser as setUserAction } from '../actions/login'; -import { addSettings as addSettingsAction } from '../actions'; -import { - COLOR_BACKGROUND_CONTAINER -} from '../constants/colors'; +import { COLOR_BACKGROUND_CONTAINER } from '../constants/colors'; import Navigation from '../lib/Navigation'; import ServerItem, { ROW_HEIGHT } from '../presentation/ServerItem'; import sharedStyles from './Styles'; @@ -41,10 +35,6 @@ const styles = StyleSheet.create({ @connect(state => ({ server: state.server.server -}), dispatch => ({ - setUser: user => dispatch(setUserAction(user)), - addSettings: settings => dispatch(addSettingsAction(settings)), - selectServerSuccess: server => dispatch(selectServerSuccessAction(server)) })) export default class SelectServerView extends React.Component { static navigationOptions = () => ({ @@ -52,10 +42,7 @@ export default class SelectServerView extends React.Component { }) static propTypes = { - server: PropTypes.string, - setUser: PropTypes.func, - addSettings: PropTypes.func, - selectServerSuccess: PropTypes.func + server: PropTypes.string } constructor(props) { @@ -70,29 +57,11 @@ export default class SelectServerView extends React.Component { select = async(server) => { const { - server: currentServer, selectServerSuccess, setUser, addSettings + server: currentServer } = this.props; if (currentServer !== server) { - const { serversDB } = database.databases; - - // server - database.setActiveDB(server); - const serverInfo = serversDB.objectForPrimaryKey('servers', server); - selectServerSuccess(server, serverInfo.version); - - // add settings to upload media - addSettings({ - Site_Url: serverInfo.id, - useRealName: serverInfo.useRealName, - FileUpload_MediaTypeWhiteList: serverInfo.FileUpload_MediaTypeWhiteList, - FileUpload_MaxFileSize: serverInfo.FileUpload_MaxFileSize - }); - - // user - const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ server }`); - const user = userId && serversDB.objectForPrimaryKey('user', userId); - setUser(user); + await RocketChat.shareExtensionInit(server); } Navigation.navigate('ShareListView'); } diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 2037abcf40b..1381e493a38 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -21,8 +21,7 @@ import { isReadOnly, isBlocked } from '../../utils/room'; @connect(state => ({ username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token, - server: state.server.server + token: state.login.user && state.login.user.token })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { @@ -48,9 +47,8 @@ export default class ShareView extends React.Component { static propTypes = { navigation: PropTypes.object, - server: PropTypes.string, - token: PropTypes.string, - username: PropTypes.string.isRequired + username: PropTypes.string, + token: PropTypes.string }; constructor(props) { @@ -116,10 +114,10 @@ export default class ShareView extends React.Component { sendTextMessage = async() => { const { value, rid } = this.state; - const { server, token } = this.props; + const { token } = this.props; if (value !== '' && rid !== '') { try { - await RocketChat.simpleConnect({ server, token }); + await RocketChat.login({ resume: token }); await RocketChat.sendMessage(rid, value, undefined); } catch (error) { log('err_share_extension_send_message', error); From 7de1e90b5ececf82e69db187380116e84007cb4e Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 11:02:44 -0300 Subject: [PATCH 21/58] Update code --- app/lib/realm.js | 12 +----------- app/lib/rocketchat.js | 2 ++ app/views/ShareListView/SearchBar.js | 4 +++- app/views/ShareView/index.js | 8 ++------ 4 files changed, 8 insertions(+), 18 deletions(-) diff --git a/app/lib/realm.js b/app/lib/realm.js index faa0184fddf..f0d8c500898 100644 --- a/app/lib/realm.js +++ b/app/lib/realm.js @@ -417,7 +417,7 @@ class DB { userSchema, serversSchema ], - schemaVersion: 10, + schemaVersion: 9, migration: (oldRealm, newRealm) => { if (oldRealm.schemaVersion >= 1 && newRealm.schemaVersion <= 9) { const newServers = newRealm.objects('servers'); @@ -427,16 +427,6 @@ class DB { newServers[i].roomsUpdatedAt = null; } } - if (oldRealm.schemaVersion === 9 && newRealm.schemaVersion === 10) { - const newServers = newRealm.objects('servers'); - - // eslint-disable-next-line no-plusplus - for (let i = 0; i < newServers.length; i++) { - newServers[i].useRealName = null; - newServers[i].FileUpload_MediaTypeWhiteList = null; - newServers[i].FileUpload_MaxFileSize = null; - } - } } }), inMemoryDB: new Realm({ diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 110eb6784bf..78f02b0284b 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -249,6 +249,8 @@ const RocketChat = { const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ currentServer }`); const user = userId && serversDB.objectForPrimaryKey('user', userId); reduxStore.dispatch(setUser(user)); + + await RocketChat.login({ resume: user.token }); }, register(credentials) { diff --git a/app/views/ShareListView/SearchBar.js b/app/views/ShareListView/SearchBar.js index 5a5f9ced346..7f85f7b97b9 100644 --- a/app/views/ShareListView/SearchBar.js +++ b/app/views/ShareListView/SearchBar.js @@ -22,7 +22,9 @@ const SearchBar = React.memo(({ onChangeSearchText }) => { const onFocus = () => { setHasCancel(true); - LayoutAnimation.easeInEaseOut(); + if (isIOS) { + LayoutAnimation.easeInEaseOut(); + } }; if (isIOS) { diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 1381e493a38..988ae79b61c 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -20,8 +20,7 @@ import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import { isReadOnly, isBlocked } from '../../utils/room'; @connect(state => ({ - username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token + username: state.login.user && state.login.user.username })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { @@ -47,8 +46,7 @@ export default class ShareView extends React.Component { static propTypes = { navigation: PropTypes.object, - username: PropTypes.string, - token: PropTypes.string + username: PropTypes.string }; constructor(props) { @@ -114,10 +112,8 @@ export default class ShareView extends React.Component { sendTextMessage = async() => { const { value, rid } = this.state; - const { token } = this.props; if (value !== '' && rid !== '') { try { - await RocketChat.login({ resume: token }); await RocketChat.sendMessage(rid, value, undefined); } catch (error) { log('err_share_extension_send_message', error); From 22a07aa1703f3198480539299c4f89f0fe01f843 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 11:09:58 -0300 Subject: [PATCH 22/58] Fix login sdk --- app/share.js | 2 +- app/views/SelectServerView.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/share.js b/app/share.js index 5cd871afdc1..e37c96a19f7 100644 --- a/app/share.js +++ b/app/share.js @@ -62,8 +62,8 @@ class Root extends React.Component { const currentServer = await RNUserDefaults.get('currentServer'); if (currentServer) { - await RocketChat.shareExtensionInit(currentServer); await Navigation.navigate('InsideStack'); + await RocketChat.shareExtensionInit(currentServer); } else { await Navigation.navigate('OutsideStack'); } diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index a27f9bdd984..80d1dcf896a 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -60,10 +60,10 @@ export default class SelectServerView extends React.Component { server: currentServer } = this.props; + Navigation.navigate('ShareListView'); if (currentServer !== server) { await RocketChat.shareExtensionInit(server); } - Navigation.navigate('ShareListView'); } renderItem = ({ item }) => { From 5c8c3d89b4b57a0ee0d53e6a37531f34d7778cec Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 12:48:07 -0300 Subject: [PATCH 23/58] Add search on header --- app/containers/SearchBox.js | 3 +- app/views/ShareListView/Header.js | 9 ++- app/views/ShareListView/SearchBar.js | 50 --------------- app/views/ShareListView/SearchHeader.js | 83 +++++++++++++++++++++++++ app/views/ShareListView/index.js | 26 +++++--- package.json | 1 + yarn.lock | 5 ++ 7 files changed, 116 insertions(+), 61 deletions(-) delete mode 100644 app/views/ShareListView/SearchBar.js create mode 100644 app/views/ShareListView/SearchHeader.js diff --git a/app/containers/SearchBox.js b/app/containers/SearchBox.js index b426dc6a12f..35e8d8ea366 100644 --- a/app/containers/SearchBox.js +++ b/app/containers/SearchBox.js @@ -14,7 +14,8 @@ const styles = StyleSheet.create({ container: { backgroundColor: isIOS ? '#F7F8FA' : '#54585E', flexDirection: 'row', - alignItems: 'center' + alignItems: 'center', + flex: 1 }, searchBox: { alignItems: 'center', diff --git a/app/views/ShareListView/Header.js b/app/views/ShareListView/Header.js index fcd87498bb1..d42c5844f8d 100644 --- a/app/views/ShareListView/Header.js +++ b/app/views/ShareListView/Header.js @@ -10,7 +10,8 @@ import I18n from '../../i18n'; import { COLOR_WHITE, HEADER_TITLE } from '../../constants/colors'; import sharedStyles from '../Styles'; import { setSearch as setSearchAction } from '../../actions/rooms'; -import { isAndroid } from '../../utils/deviceInfo'; +import { isAndroid, isIOS } from '../../utils/deviceInfo'; +import SearchHeader from './SearchHeader'; const styles = StyleSheet.create({ container: { @@ -84,6 +85,12 @@ class ShareListHeader extends PureComponent { /> ); + } else if (isIOS) { + return ( + + ); } return {I18n.t('Select_Channels')}; } diff --git a/app/views/ShareListView/SearchBar.js b/app/views/ShareListView/SearchBar.js deleted file mode 100644 index 7f85f7b97b9..00000000000 --- a/app/views/ShareListView/SearchBar.js +++ /dev/null @@ -1,50 +0,0 @@ -import React, { useState } from 'react'; -import PropTypes from 'prop-types'; -import { Keyboard, LayoutAnimation } from 'react-native'; - -import SearchBox from '../../containers/SearchBox'; -import { isIOS } from '../../utils/deviceInfo'; - -const SearchBar = React.memo(({ onChangeSearchText }) => { - const [text, setText] = useState(''); - const [hasCancel, setHasCancel] = useState(false); - - const onChangeText = (searchText) => { - onChangeSearchText(searchText); - setText(searchText); - }; - - const onCancelPress = () => { - Keyboard.dismiss(); - onChangeText(''); - setHasCancel(false); - }; - - const onFocus = () => { - setHasCancel(true); - if (isIOS) { - LayoutAnimation.easeInEaseOut(); - } - }; - - if (isIOS) { - return ( - - ); - } - return null; -}); - -SearchBar.propTypes = { - onChangeSearchText: PropTypes.func -}; - -export default SearchBar; diff --git a/app/views/ShareListView/SearchHeader.js b/app/views/ShareListView/SearchHeader.js new file mode 100644 index 00000000000..7c949126e25 --- /dev/null +++ b/app/views/ShareListView/SearchHeader.js @@ -0,0 +1,83 @@ +import React, { useState } from 'react'; +import PropTypes from 'prop-types'; +import { + Keyboard, LayoutAnimation, View, StyleSheet +} from 'react-native'; +import ShareExtension from 'rn-extensions-share'; +import { getStatusBarHeight } from 'react-native-iphone-x-helper'; + +import SearchBox from '../../containers/SearchBox'; +import { isIOS } from '../../utils/deviceInfo'; +import { CloseShareExtensionButton } from '../../containers/HeaderButton'; +import { HEADER_BACKGROUND } from '../../constants/colors'; + +import sharedStyles from '../Styles'; + +const styles = StyleSheet.create({ + container: { + backgroundColor: HEADER_BACKGROUND, + width: '100%', + flexDirection: 'row', + paddingTop: getStatusBarHeight(), + ...sharedStyles.separatorBottom + } +}); + +const SearchHeader = React.memo(({ onChangeSearchText }) => { + const [text, setText] = useState(''); + const [hasCancel, setHasCancel] = useState(false); + + const onChangeText = (searchText) => { + onChangeSearchText(searchText); + setText(searchText); + }; + + const onCancelPress = () => { + Keyboard.dismiss(); + onChangeText(''); + setHasCancel(false); + if (isIOS) { + LayoutAnimation.easeInEaseOut(); + } + }; + + const onFocus = () => { + setHasCancel(true); + if (isIOS) { + LayoutAnimation.easeInEaseOut(); + } + }; + + if (isIOS) { + return ( + + { + !hasCancel + ? ( + + ) + : null + } + + + ); + } + return null; +}); + +SearchHeader.propTypes = { + onChangeSearchText: PropTypes.func +}; + +export default SearchHeader; diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 67847f837ab..eee40da6a05 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -23,12 +23,10 @@ import { import DirectoryItem, { ROW_HEIGHT } from '../../presentation/DirectoryItem'; import ServerItem from '../../presentation/ServerItem'; import { CloseShareExtensionButton, CustomHeaderButtons, Item } from '../../containers/HeaderButton'; -import SearchBar from './SearchBar'; import ShareListHeader from './Header'; import styles from './styles'; -const SCROLL_OFFSET = 56; const LIMIT = 50; const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const keyExtractor = item => item.rid; @@ -53,8 +51,15 @@ export default class ShareListView extends React.Component { const cancelSearchingAndroid = navigation.getParam('cancelSearchingAndroid'); const initSearchingAndroid = navigation.getParam('initSearchingAndroid', () => {}); + if (isIOS) { + return { + headerBackTitle: I18n.t('Back'), + header: + }; + } + return { - headerBackTitle: isIOS ? I18n.t('Back') : null, + headerBackTitle: null, headerLeft: searching ? ( @@ -296,8 +301,6 @@ export default class ShareListView extends React.Component { } } - renderSearchBar = () => ; - renderSectionHeader = (header) => { const { isSearching } = this.state; if (isSearching) { return null; } @@ -365,7 +368,6 @@ export default class ShareListView extends React.Component { const { isSearching } = this.state; return ( - {this.renderSearchBar()} { !isSearching ? ( @@ -395,7 +397,6 @@ export default class ShareListView extends React.Component { style={styles.flatlist} renderItem={this.renderItem} getItemLayout={getItemLayout} - contentOffset={isIOS ? { x: 0, y: SCROLL_OFFSET } : {}} ItemSeparatorComponent={this.renderSeparator} ListHeaderComponent={this.renderHeader} ListFooterComponent={!isSearching && this.renderBorderBottom} @@ -411,7 +412,7 @@ export default class ShareListView extends React.Component { } renderError = () => { - const { fileInfo: file, loading } = this.state; + const { fileInfo: file, loading, isSearching } = this.state; const { FileUpload_MaxFileSize } = this.props; const errorMessage = (FileUpload_MaxFileSize < file.size) ? 'error-file-too-large' @@ -423,7 +424,14 @@ export default class ShareListView extends React.Component { return ( - { this.renderSelectServer() } + { !isSearching + ? ( + + {this.renderSelectServer()} + + ) + : null + } {I18n.t(errorMessage)} diff --git a/package.json b/package.json index e53bee19fb7..13022742692 100644 --- a/package.json +++ b/package.json @@ -48,6 +48,7 @@ "react-native-gesture-handler": "^1.2.1", "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-iphone-x-helper": "^1.2.1", "react-native-keyboard-aware-scroll-view": "0.8.0", "react-native-keyboard-input": "^5.3.1", "react-native-keyboard-tracking-view": "^5.5.0", diff --git a/yarn.lock b/yarn.lock index 85efb9201c9..00b1af4dd46 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11594,6 +11594,11 @@ react-native-iphone-x-helper@^1.0.3: resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.0.tgz#9f8a376eb00bc712115abff4420318a0063fa796" integrity sha512-xIeTo4s77wwKgBZLVRIZC9tM9/PkXS46Ul76NXmvmixEb3ZwqGdQesR3zRiLMOoIdfOURB6N9bba9po7+x9Bag== +react-native-iphone-x-helper@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772" + integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ== + react-native-keyboard-aware-scroll-view@0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/react-native-keyboard-aware-scroll-view/-/react-native-keyboard-aware-scroll-view-0.8.0.tgz#00bcaa38c91323913bb7a733059ad2bc4875f88c" From 0c34978dc96e8edf5265208a39ece0265dcbd522 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 12:54:51 -0300 Subject: [PATCH 24/58] Fix padding on notch devices --- app/views/ShareListView/SearchHeader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/ShareListView/SearchHeader.js b/app/views/ShareListView/SearchHeader.js index 7c949126e25..1e60c7528bb 100644 --- a/app/views/ShareListView/SearchHeader.js +++ b/app/views/ShareListView/SearchHeader.js @@ -7,7 +7,7 @@ import ShareExtension from 'rn-extensions-share'; import { getStatusBarHeight } from 'react-native-iphone-x-helper'; import SearchBox from '../../containers/SearchBox'; -import { isIOS } from '../../utils/deviceInfo'; +import { isIOS, isNotch } from '../../utils/deviceInfo'; import { CloseShareExtensionButton } from '../../containers/HeaderButton'; import { HEADER_BACKGROUND } from '../../constants/colors'; @@ -18,7 +18,7 @@ const styles = StyleSheet.create({ backgroundColor: HEADER_BACKGROUND, width: '100%', flexDirection: 'row', - paddingTop: getStatusBarHeight(), + paddingTop: getStatusBarHeight() + (isNotch ? 20 : 0), ...sharedStyles.separatorBottom } }); From c9b467a55a9d043b79abe8ff85a6700c86a0fad6 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 12:59:38 -0300 Subject: [PATCH 25/58] Fix search after click on item --- app/views/ShareListView/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index eee40da6a05..bee61336f37 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -242,6 +242,7 @@ export default class ShareListView extends React.Component { fileInfo, name: this.getRoomTitle(item) }); + this.search(''); } canUploadFile = () => { From 125acfda2a381f4eae372bd29a297e9ff5b09699 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 13:20:36 -0300 Subject: [PATCH 26/58] Improve clear search --- app/views/ShareListView/index.js | 1 - app/views/ShareView/index.js | 11 ++++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index bee61336f37..eee40da6a05 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -242,7 +242,6 @@ export default class ShareListView extends React.Component { fileInfo, name: this.getRoomTitle(item) }); - this.search(''); } canUploadFile = () => { diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 988ae79b61c..1acf3632958 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -18,9 +18,12 @@ import Loading from './Loading'; import database from '../../lib/realm'; import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import { isReadOnly, isBlocked } from '../../utils/room'; +import { setSearch as setSearchAction } from '../../actions/rooms'; @connect(state => ({ username: state.login.user && state.login.user.username +}), dispatch => ({ + setSearch: searchText => dispatch(setSearchAction(searchText)) })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { @@ -46,7 +49,8 @@ export default class ShareView extends React.Component { static propTypes = { navigation: PropTypes.object, - username: PropTypes.string + username: PropTypes.string, + setSearch: PropTypes.func }; constructor(props) { @@ -81,6 +85,11 @@ export default class ShareView extends React.Component { navigation.setParams({ sendMessage: this._sendMessage, canSend: !(isReadOnly(room, { username }) || isBlocked(room)) }); } + componentDidUpdate() { + const { setSearch } = this.props; + setSearch(''); + } + bytesToSize = bits => `${ ((bits / 8) / 1048576).toFixed(2) }MB`; _sendMessage = async() => { From 71092d6927644b9e7d1aec3e299c695580199903 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 13:34:06 -0300 Subject: [PATCH 27/58] Update schemaVersion --- app/lib/realm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/realm.js b/app/lib/realm.js index f0d8c500898..3a17584cc31 100644 --- a/app/lib/realm.js +++ b/app/lib/realm.js @@ -417,7 +417,7 @@ class DB { userSchema, serversSchema ], - schemaVersion: 9, + schemaVersion: 10, migration: (oldRealm, newRealm) => { if (oldRealm.schemaVersion >= 1 && newRealm.schemaVersion <= 9) { const newServers = newRealm.objects('servers'); From fb4a4b96379336997c029d63e49fa125d6019ec1 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 14:19:15 -0300 Subject: [PATCH 28/58] Refactor header share list --- .../{Header.js => Header/Header.android.js} | 51 +++--------- app/views/ShareListView/Header/Header.ios.js | 76 +++++++++++++++++ app/views/ShareListView/Header/index.js | 30 +++++++ app/views/ShareListView/SearchHeader.js | 83 ------------------- 4 files changed, 119 insertions(+), 121 deletions(-) rename app/views/ShareListView/{Header.js => Header/Header.android.js} (53%) create mode 100644 app/views/ShareListView/Header/Header.ios.js create mode 100644 app/views/ShareListView/Header/index.js delete mode 100644 app/views/ShareListView/SearchHeader.js diff --git a/app/views/ShareListView/Header.js b/app/views/ShareListView/Header/Header.android.js similarity index 53% rename from app/views/ShareListView/Header.js rename to app/views/ShareListView/Header/Header.android.js index d42c5844f8d..df79b3468ae 100644 --- a/app/views/ShareListView/Header.js +++ b/app/views/ShareListView/Header/Header.android.js @@ -1,17 +1,14 @@ import React, { PureComponent } from 'react'; import { - View, StyleSheet, Text, Platform + View, StyleSheet, Text } from 'react-native'; import PropTypes from 'prop-types'; import { connect } from 'react-redux'; import { TextInput } from 'react-native-gesture-handler'; -import I18n from '../../i18n'; -import { COLOR_WHITE, HEADER_TITLE } from '../../constants/colors'; -import sharedStyles from '../Styles'; -import { setSearch as setSearchAction } from '../../actions/rooms'; -import { isAndroid, isIOS } from '../../utils/deviceInfo'; -import SearchHeader from './SearchHeader'; +import I18n from '../../../i18n'; +import { COLOR_WHITE, HEADER_TITLE } from '../../../constants/colors'; +import sharedStyles from '../../Styles'; const styles = StyleSheet.create({ container: { @@ -24,30 +21,19 @@ const styles = StyleSheet.create({ ...sharedStyles.textRegular }, title: { - ...Platform.select({ - ios: { - fontSize: 17, - ...sharedStyles.textSemibold, - color: HEADER_TITLE - }, - android: { - fontSize: 20, - ...sharedStyles.textRegular, - color: HEADER_TITLE - } - }) + fontSize: 20, + ...sharedStyles.textRegular, + color: HEADER_TITLE } }); @connect(state => ({ showSearchHeader: state.rooms.showSearchHeader -}), dispatch => ({ - setSearch: searchText => dispatch(setSearchAction(searchText)) })) -class ShareListHeader extends PureComponent { +class Header extends PureComponent { static propTypes = { showSearchHeader: PropTypes.bool, - setSearch: PropTypes.func + onChangeSearchText: PropTypes.func } componentDidUpdate(prevProps) { @@ -59,21 +45,16 @@ class ShareListHeader extends PureComponent { } } - onSearchChangeText = (text) => { - const { setSearch } = this.props; - setSearch(text.trim()); - } - setSearchInputRef = (ref) => { this.searchInputRef = ref; } render() { const { - showSearchHeader + showSearchHeader, onChangeSearchText } = this.props; - if (showSearchHeader && isAndroid) { + if (showSearchHeader) { return ( ); - } else if (isIOS) { - return ( - - ); } return {I18n.t('Select_Channels')}; } } -export default ShareListHeader; +export default Header; diff --git a/app/views/ShareListView/Header/Header.ios.js b/app/views/ShareListView/Header/Header.ios.js new file mode 100644 index 00000000000..2964f14a867 --- /dev/null +++ b/app/views/ShareListView/Header/Header.ios.js @@ -0,0 +1,76 @@ +import React, { useState } from 'react'; +import PropTypes from 'prop-types'; +import { + Keyboard, LayoutAnimation, View, StyleSheet +} from 'react-native'; +import ShareExtension from 'rn-extensions-share'; +import { getStatusBarHeight } from 'react-native-iphone-x-helper'; + +import SearchBox from '../../../containers/SearchBox'; +import { isNotch } from '../../../utils/deviceInfo'; +import { CloseShareExtensionButton } from '../../../containers/HeaderButton'; +import { HEADER_BACKGROUND } from '../../../constants/colors'; + +import sharedStyles from '../../Styles'; + +const styles = StyleSheet.create({ + container: { + backgroundColor: HEADER_BACKGROUND, + width: '100%', + flexDirection: 'row', + paddingTop: getStatusBarHeight() + (isNotch ? 20 : 0), + ...sharedStyles.separatorBottom + } +}); + +const Header = React.memo(({ onChangeSearchText }) => { + const [text, setText] = useState(''); + const [hasCancel, setHasCancel] = useState(false); + + const onChangeText = (searchText) => { + onChangeSearchText(searchText); + setText(searchText); + }; + + const onCancelPress = () => { + Keyboard.dismiss(); + onChangeText(''); + setHasCancel(false); + LayoutAnimation.easeInEaseOut(); + }; + + const onFocus = () => { + setHasCancel(true); + LayoutAnimation.easeInEaseOut(); + }; + + return ( + + { + !hasCancel + ? ( + + ) + : null + } + + + ); +}); + +Header.propTypes = { + onChangeSearchText: PropTypes.func +}; + +export default Header; diff --git a/app/views/ShareListView/Header/index.js b/app/views/ShareListView/Header/index.js new file mode 100644 index 00000000000..7779e9a3524 --- /dev/null +++ b/app/views/ShareListView/Header/index.js @@ -0,0 +1,30 @@ +import React, { PureComponent } from 'react'; +import PropTypes from 'prop-types'; +import { connect } from 'react-redux'; + +import { setSearch as setSearchAction } from '../../../actions/rooms'; +import Header from './Header'; + +@connect(() => ({}), dispatch => ({ + setSearch: searchText => dispatch(setSearchAction(searchText)) +})) +class ShareListHeader extends PureComponent { + static propTypes = { + setSearch: PropTypes.func + } + + onSearchChangeText = (text) => { + const { setSearch } = this.props; + setSearch(text.trim()); + } + + render() { + return ( +
+ ); + } +} + +export default ShareListHeader; diff --git a/app/views/ShareListView/SearchHeader.js b/app/views/ShareListView/SearchHeader.js deleted file mode 100644 index 1e60c7528bb..00000000000 --- a/app/views/ShareListView/SearchHeader.js +++ /dev/null @@ -1,83 +0,0 @@ -import React, { useState } from 'react'; -import PropTypes from 'prop-types'; -import { - Keyboard, LayoutAnimation, View, StyleSheet -} from 'react-native'; -import ShareExtension from 'rn-extensions-share'; -import { getStatusBarHeight } from 'react-native-iphone-x-helper'; - -import SearchBox from '../../containers/SearchBox'; -import { isIOS, isNotch } from '../../utils/deviceInfo'; -import { CloseShareExtensionButton } from '../../containers/HeaderButton'; -import { HEADER_BACKGROUND } from '../../constants/colors'; - -import sharedStyles from '../Styles'; - -const styles = StyleSheet.create({ - container: { - backgroundColor: HEADER_BACKGROUND, - width: '100%', - flexDirection: 'row', - paddingTop: getStatusBarHeight() + (isNotch ? 20 : 0), - ...sharedStyles.separatorBottom - } -}); - -const SearchHeader = React.memo(({ onChangeSearchText }) => { - const [text, setText] = useState(''); - const [hasCancel, setHasCancel] = useState(false); - - const onChangeText = (searchText) => { - onChangeSearchText(searchText); - setText(searchText); - }; - - const onCancelPress = () => { - Keyboard.dismiss(); - onChangeText(''); - setHasCancel(false); - if (isIOS) { - LayoutAnimation.easeInEaseOut(); - } - }; - - const onFocus = () => { - setHasCancel(true); - if (isIOS) { - LayoutAnimation.easeInEaseOut(); - } - }; - - if (isIOS) { - return ( - - { - !hasCancel - ? ( - - ) - : null - } - - - ); - } - return null; -}); - -SearchHeader.propTypes = { - onChangeSearchText: PropTypes.func -}; - -export default SearchHeader; From 5688a8f5e8dcac52afebfc3af051a2879de66ac2 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 14:27:11 -0300 Subject: [PATCH 29/58] Improve setSearch --- app/views/ShareListView/index.js | 11 ++++++++--- app/views/ShareView/index.js | 11 +---------- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index eee40da6a05..b86e130c494 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -18,7 +18,8 @@ import { CustomIcon } from '../../lib/Icons'; import log from '../../utils/log'; import { openSearchHeader as openSearchHeaderAction, - closeSearchHeader as closeSearchHeaderAction + closeSearchHeader as closeSearchHeaderAction, + setSearch as setSearchAction } from '../../actions/rooms'; import DirectoryItem, { ROW_HEIGHT } from '../../presentation/DirectoryItem'; import ServerItem from '../../presentation/ServerItem'; @@ -42,7 +43,8 @@ const keyExtractor = item => item.rid; baseUrl: state.server ? state.server.server : '' }), dispatch => ({ openSearchHeader: () => dispatch(openSearchHeaderAction()), - closeSearchHeader: () => dispatch(closeSearchHeaderAction()) + closeSearchHeader: () => dispatch(closeSearchHeaderAction()), + setSearch: searchText => dispatch(setSearchAction(searchText)) })) /** @extends React.Component */ export default class ShareListView extends React.Component { @@ -94,6 +96,7 @@ export default class ShareListView extends React.Component { FileUpload_MaxFileSize: PropTypes.number, openSearchHeader: PropTypes.func, closeSearchHeader: PropTypes.func, + setSearch: PropTypes.func, baseUrl: PropTypes.string, token: PropTypes.string, userId: PropTypes.string @@ -233,7 +236,7 @@ export default class ShareListView extends React.Component { shareMessage = (item) => { const { value, isMedia, fileInfo } = this.state; - const { navigation } = this.props; + const { navigation, setSearch } = this.props; navigation.navigate('ShareView', { rid: item.rid, @@ -242,6 +245,8 @@ export default class ShareListView extends React.Component { fileInfo, name: this.getRoomTitle(item) }); + + setSearch(''); } canUploadFile = () => { diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 1acf3632958..988ae79b61c 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -18,12 +18,9 @@ import Loading from './Loading'; import database from '../../lib/realm'; import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import { isReadOnly, isBlocked } from '../../utils/room'; -import { setSearch as setSearchAction } from '../../actions/rooms'; @connect(state => ({ username: state.login.user && state.login.user.username -}), dispatch => ({ - setSearch: searchText => dispatch(setSearchAction(searchText)) })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { @@ -49,8 +46,7 @@ export default class ShareView extends React.Component { static propTypes = { navigation: PropTypes.object, - username: PropTypes.string, - setSearch: PropTypes.func + username: PropTypes.string }; constructor(props) { @@ -85,11 +81,6 @@ export default class ShareView extends React.Component { navigation.setParams({ sendMessage: this._sendMessage, canSend: !(isReadOnly(room, { username }) || isBlocked(room)) }); } - componentDidUpdate() { - const { setSearch } = this.props; - setSearch(''); - } - bytesToSize = bits => `${ ((bits / 8) / 1048576).toFixed(2) }MB`; _sendMessage = async() => { From 9070afaaefbaa46ef4f1de06ebc8f75908fa497e Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 14:35:19 -0300 Subject: [PATCH 30/58] Remove react-native-iphone-x-helper --- app/views/ShareListView/Header/Header.ios.js | 4 +--- app/views/ShareListView/index.js | 4 ++-- app/views/ShareListView/styles.js | 5 +++++ package.json | 1 - yarn.lock | 5 ----- 5 files changed, 8 insertions(+), 11 deletions(-) diff --git a/app/views/ShareListView/Header/Header.ios.js b/app/views/ShareListView/Header/Header.ios.js index 2964f14a867..af1b7811aeb 100644 --- a/app/views/ShareListView/Header/Header.ios.js +++ b/app/views/ShareListView/Header/Header.ios.js @@ -4,10 +4,8 @@ import { Keyboard, LayoutAnimation, View, StyleSheet } from 'react-native'; import ShareExtension from 'rn-extensions-share'; -import { getStatusBarHeight } from 'react-native-iphone-x-helper'; import SearchBox from '../../../containers/SearchBox'; -import { isNotch } from '../../../utils/deviceInfo'; import { CloseShareExtensionButton } from '../../../containers/HeaderButton'; import { HEADER_BACKGROUND } from '../../../constants/colors'; @@ -18,7 +16,7 @@ const styles = StyleSheet.create({ backgroundColor: HEADER_BACKGROUND, width: '100%', flexDirection: 'row', - paddingTop: getStatusBarHeight() + (isNotch ? 20 : 0), + marginBottom: 10, ...sharedStyles.separatorBottom } }); diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index b86e130c494..58ffaf15226 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -56,7 +56,7 @@ export default class ShareListView extends React.Component { if (isIOS) { return { headerBackTitle: I18n.t('Back'), - header: + headerTitle: }; } @@ -364,7 +364,7 @@ export default class ShareListView extends React.Component { } renderEmptyComponent = () => ( - + {I18n.t('No_results_found')} ); diff --git a/app/views/ShareListView/styles.js b/app/views/ShareListView/styles.js index d79d1f023f6..a1b31aa16f3 100644 --- a/app/views/ShareListView/styles.js +++ b/app/views/ShareListView/styles.js @@ -11,6 +11,11 @@ export default StyleSheet.create({ flex: 1, backgroundColor: COLOR_BACKGROUND_CONTAINER }, + emptyContainer: { + padding: 20, + justifyContent: 'center', + alignItems: 'center' + }, content: { flex: 1, backgroundColor: isIOS ? COLOR_WHITE : '#E1E5E8', diff --git a/package.json b/package.json index 13022742692..e53bee19fb7 100644 --- a/package.json +++ b/package.json @@ -48,7 +48,6 @@ "react-native-gesture-handler": "^1.2.1", "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-iphone-x-helper": "^1.2.1", "react-native-keyboard-aware-scroll-view": "0.8.0", "react-native-keyboard-input": "^5.3.1", "react-native-keyboard-tracking-view": "^5.5.0", diff --git a/yarn.lock b/yarn.lock index 00b1af4dd46..85efb9201c9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11594,11 +11594,6 @@ react-native-iphone-x-helper@^1.0.3: resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.0.tgz#9f8a376eb00bc712115abff4420318a0063fa796" integrity sha512-xIeTo4s77wwKgBZLVRIZC9tM9/PkXS46Ul76NXmvmixEb3ZwqGdQesR3zRiLMOoIdfOURB6N9bba9po7+x9Bag== -react-native-iphone-x-helper@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/react-native-iphone-x-helper/-/react-native-iphone-x-helper-1.2.1.tgz#645e2ffbbb49e80844bb4cbbe34a126fda1e6772" - integrity sha512-/VbpIEp8tSNNHIvstuA3Swx610whci1Zpc9mqNkqn14DkMbw+ORviln2u0XyHG1kPvvwTNGZY6QpeFwxYaSdbQ== - react-native-keyboard-aware-scroll-view@0.8.0: version "0.8.0" resolved "https://registry.yarnpkg.com/react-native-keyboard-aware-scroll-view/-/react-native-keyboard-aware-scroll-view-0.8.0.tgz#00bcaa38c91323913bb7a733059ad2bc4875f88c" From b50721fc25970cc09bf788443f081d17967dc4d6 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 14:40:36 -0300 Subject: [PATCH 31/58] Improve search --- app/views/ShareListView/index.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 58ffaf15226..7c919de5d8f 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -18,8 +18,7 @@ import { CustomIcon } from '../../lib/Icons'; import log from '../../utils/log'; import { openSearchHeader as openSearchHeaderAction, - closeSearchHeader as closeSearchHeaderAction, - setSearch as setSearchAction + closeSearchHeader as closeSearchHeaderAction } from '../../actions/rooms'; import DirectoryItem, { ROW_HEIGHT } from '../../presentation/DirectoryItem'; import ServerItem from '../../presentation/ServerItem'; @@ -43,8 +42,7 @@ const keyExtractor = item => item.rid; baseUrl: state.server ? state.server.server : '' }), dispatch => ({ openSearchHeader: () => dispatch(openSearchHeaderAction()), - closeSearchHeader: () => dispatch(closeSearchHeaderAction()), - setSearch: searchText => dispatch(setSearchAction(searchText)) + closeSearchHeader: () => dispatch(closeSearchHeaderAction()) })) /** @extends React.Component */ export default class ShareListView extends React.Component { @@ -96,7 +94,6 @@ export default class ShareListView extends React.Component { FileUpload_MaxFileSize: PropTypes.number, openSearchHeader: PropTypes.func, closeSearchHeader: PropTypes.func, - setSearch: PropTypes.func, baseUrl: PropTypes.string, token: PropTypes.string, userId: PropTypes.string @@ -236,7 +233,7 @@ export default class ShareListView extends React.Component { shareMessage = (item) => { const { value, isMedia, fileInfo } = this.state; - const { navigation, setSearch } = this.props; + const { navigation } = this.props; navigation.navigate('ShareView', { rid: item.rid, @@ -245,8 +242,6 @@ export default class ShareListView extends React.Component { fileInfo, name: this.getRoomTitle(item) }); - - setSearch(''); } canUploadFile = () => { From 9d6b0087f482af1f72f1fb710cc69f7cfec2d173 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Mon, 22 Jul 2019 17:28:44 -0300 Subject: [PATCH 32/58] Adjust some styles --- app/views/ShareListView/Header/Header.ios.js | 1 - app/views/ShareListView/styles.js | 1 + app/views/Styles.js | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/ShareListView/Header/Header.ios.js b/app/views/ShareListView/Header/Header.ios.js index af1b7811aeb..4d56ef2656c 100644 --- a/app/views/ShareListView/Header/Header.ios.js +++ b/app/views/ShareListView/Header/Header.ios.js @@ -16,7 +16,6 @@ const styles = StyleSheet.create({ backgroundColor: HEADER_BACKGROUND, width: '100%', flexDirection: 'row', - marginBottom: 10, ...sharedStyles.separatorBottom } }); diff --git a/app/views/ShareListView/styles.js b/app/views/ShareListView/styles.js index a1b31aa16f3..63d7e39ff8f 100644 --- a/app/views/ShareListView/styles.js +++ b/app/views/ShareListView/styles.js @@ -27,6 +27,7 @@ export default StyleSheet.create({ alignItems: 'center' }, flatlist: { + marginTop: isIOS ? 6 : 0, // the height of the navigation bar with the searchbar is larger width: '100%', backgroundColor: COLOR_BACKGROUND_CONTAINER }, diff --git a/app/views/Styles.js b/app/views/Styles.js index 17135487605..041f9ea0543 100644 --- a/app/views/Styles.js +++ b/app/views/Styles.js @@ -200,7 +200,7 @@ export default StyleSheet.create({ marginVertical: 10 }, notchLandscapeContainer: { - marginTop: -44, + marginTop: -34, paddingHorizontal: 30, backgroundColor: COLOR_BACKGROUND_CONTAINER } From a7faf45187db18238a02d0a9295aeae236c91f28 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 23 Jul 2019 15:10:03 -0300 Subject: [PATCH 33/58] Change deployment target & bump version & change device compatibility --- ios/RocketChatRN.xcodeproj/project.pbxproj | 8 ++++---- ios/ShareRocketChatRN/Info.plist | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ios/RocketChatRN.xcodeproj/project.pbxproj b/ios/RocketChatRN.xcodeproj/project.pbxproj index c71dc7675fa..0311d08b5a5 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -1930,7 +1930,7 @@ $PODS_CONFIGURATION_BUILD_DIR/Firebase, ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.2; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; @@ -1938,7 +1938,7 @@ PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = "Development chat.rocket.reactnative.ShareExtension"; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; + TARGETED_DEVICE_FAMILY = 1; }; name = Debug; }; @@ -1978,14 +1978,14 @@ $PODS_CONFIGURATION_BUILD_DIR/Firebase, ); INFOPLIST_FILE = ShareRocketChatRN/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.2; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks"; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = chat.rocket.reactnative.ShareExtension; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = "chat.rocket.reactnative.ShareExtension AppStore"; SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; + TARGETED_DEVICE_FAMILY = 1; }; name = Release; }; diff --git a/ios/ShareRocketChatRN/Info.plist b/ios/ShareRocketChatRN/Info.plist index 926b25005cc..6875a03a190 100644 --- a/ios/ShareRocketChatRN/Info.plist +++ b/ios/ShareRocketChatRN/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 1.0 + 1.17.0 CFBundleVersion 1 NSAppTransportSecurity From 08d50be816031064a194f4da76a3002e5b8044e3 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Tue, 23 Jul 2019 23:14:21 -0300 Subject: [PATCH 34/58] Upgrade rn-extension-share --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index e53bee19fb7..d96aaabda32 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "redux-immutable-state-invariant": "^2.1.0", "redux-saga": "^0.16.2", "remove-markdown": "^0.3.0", - "rn-extensions-share": "^2.3.7", + "rn-extensions-share": "^2.3.8", "rn-fetch-blob": "^0.10.15", "rn-user-defaults": "^1.3.4", "semver": "6.0.0", diff --git a/yarn.lock b/yarn.lock index 85efb9201c9..5175a0af5b7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12629,10 +12629,10 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" -rn-extensions-share@^2.3.7: - version "2.3.7" - resolved "https://registry.yarnpkg.com/rn-extensions-share/-/rn-extensions-share-2.3.7.tgz#9f1387af25124c21e92854570cd088ed788b60ac" - integrity sha512-8SP3HTKf9g+/4hm/ER+IcbpImaqsTny7WUNOC18Vvq5Js+2O9MAKaQB+gHSP7IC6JYsbOzh+cc2jNRfc0zJpOA== +rn-extensions-share@^2.3.8: + version "2.3.8" + resolved "https://registry.yarnpkg.com/rn-extensions-share/-/rn-extensions-share-2.3.8.tgz#10d88a2f80e1f59df60eaba11ca1bf2e7ee6c896" + integrity sha512-fc9QPNPrlU0nOh/Y6OnqRSggs/BXNht6PFBZZvD4G+fZ8Lg7BtmqUv91WsbcSiVeYtRZj9cs+7nkQp8ckmeFhg== rn-fetch-blob@^0.10.15: version "0.10.15" From 027c3b4a4620ef5f1b311f2bf1567ea576a47be9 Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 11:32:12 -0300 Subject: [PATCH 35/58] If there's no current token, show OutsideStack --- app/share.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/share.js b/app/share.js index e37c96a19f7..f2bbbeba42b 100644 --- a/app/share.js +++ b/app/share.js @@ -60,8 +60,9 @@ class Root extends React.Component { await RNUserDefaults.setName('group.ios.chat.rocket'); } const currentServer = await RNUserDefaults.get('currentServer'); + const token = await RNUserDefaults.get(RocketChat.TOKEN_KEY); - if (currentServer) { + if (currentServer && token) { await Navigation.navigate('InsideStack'); await RocketChat.shareExtensionInit(currentServer); } else { From 479020e3aceb6413c0a3d3e1b69a1de9c95da14e Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 11:43:58 -0300 Subject: [PATCH 36/58] Missing translation --- app/i18n/locales/pt-BR.js | 1 + app/views/WithoutServersView.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index cb321841e10..4f7515f9d14 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -383,5 +383,6 @@ export default { you_were_mentioned: 'você foi mencionado', you: 'você', You: 'Você', + You_need_to_access_at_least_one_RocketChat_server_to_share_something: 'Você precisa acessar ao menos um servidor Rocket.Chat para compartilhar.', You_will_not_be_able_to_recover_this_message: 'Você não será capaz de recuperar essa mensagem!' }; diff --git a/app/views/WithoutServersView.js b/app/views/WithoutServersView.js index fd825898149..cd763cc1b1e 100644 --- a/app/views/WithoutServersView.js +++ b/app/views/WithoutServersView.js @@ -14,7 +14,8 @@ const styles = StyleSheet.create({ flex: 1, backgroundColor: COLOR_WHITE, justifyContent: 'center', - alignItems: 'center' + alignItems: 'center', + padding: 15 }, title: { fontSize: 18, From ee7b3045a68c2f9415444f25d9716d5b70911630 Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 11:59:25 -0300 Subject: [PATCH 37/58] Change from "Select channels" to "Send to..." --- app/i18n/locales/en.js | 2 +- app/i18n/locales/pt-BR.js | 2 +- app/views/ShareListView/Header/Header.android.js | 7 ++++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index f26cfd8ded9..547f7db3316 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -311,13 +311,13 @@ export default { Search_global_users: 'Search for global users', Search_global_users_description: 'If you turn-on, you can search for any user from others companies or servers.', Select_Avatar: 'Select Avatar', - Select_Channels: 'Select Channels', Select_Server: 'Select Server', Select_Users: 'Select Users', Send: 'Send', Send_audio_message: 'Send audio message', Send_crash_report: 'Send crash report', Send_message: 'Send message', + Send_to: 'Send to...', Sent_an_attachment: 'Sent an attachment', Server: 'Server', Servers: 'Servers', diff --git a/app/i18n/locales/pt-BR.js b/app/i18n/locales/pt-BR.js index 4f7515f9d14..2e8ea6051c9 100644 --- a/app/i18n/locales/pt-BR.js +++ b/app/i18n/locales/pt-BR.js @@ -302,12 +302,12 @@ export default { Search_global_users: 'Busca por usuários globais', Search_global_users_description: 'Caso ativado, busca por usuários de outras empresas ou servidores.', Select_Avatar: 'Selecionar Avatar', - Select_Channels: 'Selecionar Canais', Select_Server: 'Selecionar Servidor', Select_Users: 'Selecionar Usuários', Send: 'Enviar', Send_audio_message: 'Enviar mensagem de áudio', Send_message: 'Enviar mensagem', + Send_to: 'Enviar para...', Sent_an_attachment: 'Enviou um anexo', Server: 'Servidor', Set_username_subtitle: 'O usuário é utilizado para permitir que você seja mencionado em mensagens', diff --git a/app/views/ShareListView/Header/Header.android.js b/app/views/ShareListView/Header/Header.android.js index df79b3468ae..0c5047a5e0f 100644 --- a/app/views/ShareListView/Header/Header.android.js +++ b/app/views/ShareListView/Header/Header.android.js @@ -22,8 +22,9 @@ const styles = StyleSheet.create({ }, title: { fontSize: 20, - ...sharedStyles.textRegular, - color: HEADER_TITLE + ...sharedStyles.textBold, + color: HEADER_TITLE, + marginHorizontal: 16 } }); @@ -67,7 +68,7 @@ class Header extends PureComponent { ); } - return {I18n.t('Select_Channels')}; + return {I18n.t('Send_to')}; } } From 46d0ef6b51a5a3db5187f85259374b44d0b8cd7b Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 12:03:03 -0300 Subject: [PATCH 38/58] Enabled `canSend` as default --- app/views/ShareView/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 988ae79b61c..c34c95d0047 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -24,7 +24,7 @@ import { isReadOnly, isBlocked } from '../../utils/room'; })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { - const canSend = navigation.getParam('canSend', false); + const canSend = navigation.getParam('canSend', true); return ({ title: I18n.t('Share'), From 4872bfa029bcb306c1106f4e7a3f33f87160a7c3 Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 12:06:25 -0300 Subject: [PATCH 39/58] Increase server icon size to align server label with channels labels --- app/presentation/ServerItem/styles.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/presentation/ServerItem/styles.js b/app/presentation/ServerItem/styles.js index c8eb4f260a1..07669158fad 100644 --- a/app/presentation/ServerItem/styles.js +++ b/app/presentation/ServerItem/styles.js @@ -16,8 +16,8 @@ export default StyleSheet.create({ alignItems: 'center' }, serverIcon: { - width: 38, - height: 38, + width: 44, + height: 44, marginHorizontal: 15, borderRadius: 4 }, From 15ce43529ad9a61b0e48ca374de7979994e8bbfd Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 12:12:46 -0300 Subject: [PATCH 40/58] Android search header as React.memo --- .../ShareListView/Header/Header.android.js | 63 ++++++------------- app/views/ShareListView/Header/index.js | 8 ++- 2 files changed, 27 insertions(+), 44 deletions(-) diff --git a/app/views/ShareListView/Header/Header.android.js b/app/views/ShareListView/Header/Header.android.js index 0c5047a5e0f..91c1a47b902 100644 --- a/app/views/ShareListView/Header/Header.android.js +++ b/app/views/ShareListView/Header/Header.android.js @@ -1,9 +1,8 @@ -import React, { PureComponent } from 'react'; +import React from 'react'; import { View, StyleSheet, Text } from 'react-native'; import PropTypes from 'prop-types'; -import { connect } from 'react-redux'; import { TextInput } from 'react-native-gesture-handler'; import I18n from '../../../i18n'; @@ -28,48 +27,26 @@ const styles = StyleSheet.create({ } }); -@connect(state => ({ - showSearchHeader: state.rooms.showSearchHeader -})) -class Header extends PureComponent { - static propTypes = { - showSearchHeader: PropTypes.bool, - onChangeSearchText: PropTypes.func +const Header = React.memo(({ showSearchHeader, onChangeSearchText }) => { + if (showSearchHeader) { + return ( + + + + ); } + return {I18n.t('Send_to')}; +}); - componentDidUpdate(prevProps) { - const { showSearchHeader } = this.props; - if (showSearchHeader && prevProps.showSearchHeader !== showSearchHeader) { - setTimeout(() => { - this.searchInputRef.focus(); - }, 300); - } - } - - setSearchInputRef = (ref) => { - this.searchInputRef = ref; - } - - render() { - const { - showSearchHeader, onChangeSearchText - } = this.props; - - if (showSearchHeader) { - return ( - - - - ); - } - return {I18n.t('Send_to')}; - } -} +Header.propTypes = { + showSearchHeader: PropTypes.bool, + onChangeSearchText: PropTypes.func +}; export default Header; diff --git a/app/views/ShareListView/Header/index.js b/app/views/ShareListView/Header/index.js index 7779e9a3524..c067e890697 100644 --- a/app/views/ShareListView/Header/index.js +++ b/app/views/ShareListView/Header/index.js @@ -5,11 +5,14 @@ import { connect } from 'react-redux'; import { setSearch as setSearchAction } from '../../../actions/rooms'; import Header from './Header'; -@connect(() => ({}), dispatch => ({ +@connect(state => ({ + showSearchHeader: state.rooms.showSearchHeader +}), dispatch => ({ setSearch: searchText => dispatch(setSearchAction(searchText)) })) class ShareListHeader extends PureComponent { static propTypes = { + showSearchHeader: PropTypes.bool, setSearch: PropTypes.func } @@ -19,8 +22,11 @@ class ShareListHeader extends PureComponent { } render() { + const { showSearchHeader } = this.props; + return (
); From f402ab5d3cae031a2b19ee8ca44c757753085aef Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 14:05:17 -0300 Subject: [PATCH 41/58] Cancel search on Android back press --- .../ShareListView/Header/Header.android.js | 6 +-- app/views/ShareListView/index.js | 49 ++++++++++++------- 2 files changed, 34 insertions(+), 21 deletions(-) diff --git a/app/views/ShareListView/Header/Header.android.js b/app/views/ShareListView/Header/Header.android.js index 91c1a47b902..6473e85bc03 100644 --- a/app/views/ShareListView/Header/Header.android.js +++ b/app/views/ShareListView/Header/Header.android.js @@ -1,9 +1,8 @@ import React from 'react'; import { - View, StyleSheet, Text + View, StyleSheet, Text, TextInput } from 'react-native'; import PropTypes from 'prop-types'; -import { TextInput } from 'react-native-gesture-handler'; import I18n from '../../../i18n'; import { COLOR_WHITE, HEADER_TITLE } from '../../../constants/colors'; @@ -17,7 +16,8 @@ const styles = StyleSheet.create({ search: { fontSize: 20, color: COLOR_WHITE, - ...sharedStyles.textRegular + ...sharedStyles.textRegular, + marginHorizontal: 14 }, title: { fontSize: 20, diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 7c919de5d8f..9d3d49d4cda 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, Text, LayoutAnimation, InteractionManager, FlatList, ActivityIndicator, Keyboard + View, Text, LayoutAnimation, InteractionManager, FlatList, ActivityIndicator, Keyboard, BackHandler } from 'react-native'; import { SafeAreaView } from 'react-navigation'; import ShareExtension from 'rn-extensions-share'; @@ -104,8 +104,8 @@ export default class ShareListView extends React.Component { this.data = []; this.state = { showError: false, - isSearching: false, searching: false, + searchText: '', value: '', isMedia: false, mediaLoading: false, @@ -115,6 +115,8 @@ export default class ShareListView extends React.Component { servers: [], loading: true }; + this.didFocusListener = props.navigation.addListener('didFocus', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); + this.willBlurListener = props.navigation.addListener('willBlur', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); } async componentDidMount() { @@ -157,7 +159,6 @@ export default class ShareListView extends React.Component { if (searchText !== nextProps.searchText) { this.search(nextProps.searchText); } else { - this.setState({ loading: true }); this.getSubscriptions(); } } @@ -279,13 +280,14 @@ export default class ShareListView extends React.Component { const result = database.objects('subscriptions').filtered('name CONTAINS[c] $0', text); this.internalSetState({ search: result.slice(0, LIMIT), - isSearching: text !== '' + searchText: text }); } initSearchingAndroid = () => { + const { chats } = this.state; const { openSearchHeader, navigation } = this.props; - this.setState({ searching: true }); + this.setState({ searching: true, search: chats }); navigation.setParams({ searching: true }); openSearchHeader(); } @@ -293,17 +295,28 @@ export default class ShareListView extends React.Component { cancelSearchingAndroid = () => { if (isAndroid) { const { closeSearchHeader, navigation } = this.props; - this.setState({ searching: false }); + this.internalSetState({ searching: false, search: [], searchText: '' }); navigation.setParams({ searching: false }); closeSearchHeader(); - this.internalSetState({ search: [] }); Keyboard.dismiss(); } } + handleBackPress = () => { + const { searching } = this.state; + if (searching) { + this.cancelSearchingAndroid(); + return true; + } + return false; + } + renderSectionHeader = (header) => { - const { isSearching } = this.state; - if (isSearching) { return null; } + const { searching } = this.state; + if (searching) { + return null; + } + return ( @@ -365,10 +378,10 @@ export default class ShareListView extends React.Component { ); renderHeader = () => { - const { isSearching } = this.state; + const { searching } = this.state; return ( - { !isSearching + { !searching ? ( {this.renderSelectServer()} @@ -383,7 +396,7 @@ export default class ShareListView extends React.Component { renderContent = () => { const { - search, chats, mediaLoading, loading, isSearching + chats, mediaLoading, loading, search, searching, searchText } = this.state; if (mediaLoading || loading) { @@ -392,16 +405,16 @@ export default class ShareListView extends React.Component { return ( { - const { fileInfo: file, loading, isSearching } = this.state; + const { fileInfo: file, loading, searching } = this.state; const { FileUpload_MaxFileSize } = this.props; const errorMessage = (FileUpload_MaxFileSize < file.size) ? 'error-file-too-large' @@ -424,7 +437,7 @@ export default class ShareListView extends React.Component { return ( - { !isSearching + { !searching ? ( {this.renderSelectServer()} From aaa6576a4e201d0c3559fd2d9366ff5292f43685 Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 16:22:06 -0300 Subject: [PATCH 42/58] Refactor --- .../ShareListView/Header/Header.android.js | 6 +- app/views/ShareListView/Header/Header.ios.js | 19 +-- app/views/ShareListView/Header/index.js | 50 ++++---- app/views/ShareListView/index.js | 109 ++++++------------ 4 files changed, 74 insertions(+), 110 deletions(-) diff --git a/app/views/ShareListView/Header/Header.android.js b/app/views/ShareListView/Header/Header.android.js index 6473e85bc03..55720d9200d 100644 --- a/app/views/ShareListView/Header/Header.android.js +++ b/app/views/ShareListView/Header/Header.android.js @@ -27,8 +27,8 @@ const styles = StyleSheet.create({ } }); -const Header = React.memo(({ showSearchHeader, onChangeSearchText }) => { - if (showSearchHeader) { +const Header = React.memo(({ searching, onChangeSearchText }) => { + if (searching) { return ( { }); Header.propTypes = { - showSearchHeader: PropTypes.bool, + searching: PropTypes.bool, onChangeSearchText: PropTypes.func }; diff --git a/app/views/ShareListView/Header/Header.ios.js b/app/views/ShareListView/Header/Header.ios.js index 4d56ef2656c..fabe3c499b9 100644 --- a/app/views/ShareListView/Header/Header.ios.js +++ b/app/views/ShareListView/Header/Header.ios.js @@ -14,15 +14,15 @@ import sharedStyles from '../../Styles'; const styles = StyleSheet.create({ container: { backgroundColor: HEADER_BACKGROUND, - width: '100%', flexDirection: 'row', ...sharedStyles.separatorBottom } }); -const Header = React.memo(({ onChangeSearchText }) => { +const Header = React.memo(({ + searching, onChangeSearchText, initSearch, cancelSearch +}) => { const [text, setText] = useState(''); - const [hasCancel, setHasCancel] = useState(false); const onChangeText = (searchText) => { onChangeSearchText(searchText); @@ -32,19 +32,19 @@ const Header = React.memo(({ onChangeSearchText }) => { const onCancelPress = () => { Keyboard.dismiss(); onChangeText(''); - setHasCancel(false); + cancelSearch(); LayoutAnimation.easeInEaseOut(); }; const onFocus = () => { - setHasCancel(true); + initSearch(); LayoutAnimation.easeInEaseOut(); }; return ( { - !hasCancel + !searching ? ( { } { }); Header.propTypes = { - onChangeSearchText: PropTypes.func + searching: PropTypes.bool, + onChangeSearchText: PropTypes.func, + initSearch: PropTypes.func, + cancelSearch: PropTypes.func }; export default Header; diff --git a/app/views/ShareListView/Header/index.js b/app/views/ShareListView/Header/index.js index c067e890697..3cca590fa7b 100644 --- a/app/views/ShareListView/Header/index.js +++ b/app/views/ShareListView/Header/index.js @@ -1,36 +1,30 @@ -import React, { PureComponent } from 'react'; +import React from 'react'; import PropTypes from 'prop-types'; -import { connect } from 'react-redux'; -import { setSearch as setSearchAction } from '../../../actions/rooms'; import Header from './Header'; -@connect(state => ({ - showSearchHeader: state.rooms.showSearchHeader -}), dispatch => ({ - setSearch: searchText => dispatch(setSearchAction(searchText)) -})) -class ShareListHeader extends PureComponent { - static propTypes = { - showSearchHeader: PropTypes.bool, - setSearch: PropTypes.func - } +const ShareListHeader = React.memo(({ + searching, initSearch, cancelSearch, search +}) => { + const onSearchChangeText = (text) => { + search(text.trim()); + }; - onSearchChangeText = (text) => { - const { setSearch } = this.props; - setSearch(text.trim()); - } + return ( +
+ ); +}); - render() { - const { showSearchHeader } = this.props; - - return ( -
- ); - } -} +ShareListHeader.propTypes = { + searching: PropTypes.bool, + initSearch: PropTypes.func, + cancelSearch: PropTypes.func, + search: PropTypes.func +}; export default ShareListHeader; diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 9d3d49d4cda..59b190556a9 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -1,7 +1,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import { - View, Text, LayoutAnimation, InteractionManager, FlatList, ActivityIndicator, Keyboard, BackHandler + View, Text, LayoutAnimation, FlatList, ActivityIndicator, Keyboard, BackHandler } from 'react-native'; import { SafeAreaView } from 'react-navigation'; import ShareExtension from 'rn-extensions-share'; @@ -11,15 +11,11 @@ import * as mime from 'react-native-mime-types'; import { isEqual } from 'lodash'; import Navigation from '../../lib/Navigation'; -import database, { safeAddListener } from '../../lib/realm'; +import database from '../../lib/realm'; import { isIOS, isAndroid } from '../../utils/deviceInfo'; import I18n from '../../i18n'; import { CustomIcon } from '../../lib/Icons'; import log from '../../utils/log'; -import { - openSearchHeader as openSearchHeaderAction, - closeSearchHeader as closeSearchHeaderAction -} from '../../actions/rooms'; import DirectoryItem, { ROW_HEIGHT } from '../../presentation/DirectoryItem'; import ServerItem from '../../presentation/ServerItem'; import { CloseShareExtensionButton, CustomHeaderButtons, Item } from '../../containers/HeaderButton'; @@ -34,27 +30,30 @@ const keyExtractor = item => item.rid; @connect(state => ({ userId: state.login.user && state.login.user.id, token: state.login.user && state.login.user.token, - searchText: state.rooms.searchText, server: state.server.server, useRealName: state.settings.UI_Use_Real_Name, FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize, baseUrl: state.server ? state.server.server : '' -}), dispatch => ({ - openSearchHeader: () => dispatch(openSearchHeaderAction()), - closeSearchHeader: () => dispatch(closeSearchHeaderAction()) })) /** @extends React.Component */ export default class ShareListView extends React.Component { static navigationOptions = ({ navigation }) => { const searching = navigation.getParam('searching'); - const cancelSearchingAndroid = navigation.getParam('cancelSearchingAndroid'); - const initSearchingAndroid = navigation.getParam('initSearchingAndroid', () => {}); + const initSearch = navigation.getParam('initSearch', () => {}); + const cancelSearch = navigation.getParam('cancelSearch', () => {}); + const search = navigation.getParam('search', () => {}); if (isIOS) { return { - headerBackTitle: I18n.t('Back'), - headerTitle: + headerTitle: ( + + ) }; } @@ -63,7 +62,7 @@ export default class ShareListView extends React.Component { headerLeft: searching ? ( - + ) : ( @@ -72,13 +71,13 @@ export default class ShareListView extends React.Component { testID='share-extension-close' /> ), - headerTitle: , + headerTitle: , headerRight: ( searching ? null : ( - {isAndroid ? : null} + {isAndroid ? : null} ) ) @@ -89,11 +88,8 @@ export default class ShareListView extends React.Component { navigation: PropTypes.object, server: PropTypes.string, useRealName: PropTypes.bool, - searchText: PropTypes.string, FileUpload_MediaTypeWhiteList: PropTypes.string, FileUpload_MaxFileSize: PropTypes.number, - openSearchHeader: PropTypes.func, - closeSearchHeader: PropTypes.func, baseUrl: PropTypes.string, token: PropTypes.string, userId: PropTypes.string @@ -110,7 +106,7 @@ export default class ShareListView extends React.Component { isMedia: false, mediaLoading: false, fileInfo: null, - search: [], + searchResults: [], chats: [], servers: [], loading: true @@ -122,8 +118,9 @@ export default class ShareListView extends React.Component { async componentDidMount() { const { navigation } = this.props; navigation.setParams({ - initSearchingAndroid: this.initSearchingAndroid, - cancelSearchingAndroid: this.cancelSearchingAndroid + initSearch: this.initSearch, + cancelSearch: this.cancelSearch, + search: this.search }); try { @@ -153,16 +150,6 @@ export default class ShareListView extends React.Component { this.getSubscriptions(); } - componentWillReceiveProps(nextProps) { - const { searchText } = this.props; - - if (searchText !== nextProps.searchText) { - this.search(nextProps.searchText); - } else { - this.getSubscriptions(); - } - } - shouldComponentUpdate(nextProps, nextState) { const { searching } = this.state; if (nextState.searching !== searching) { @@ -174,8 +161,8 @@ export default class ShareListView extends React.Component { return true; } - const { search } = this.state; - if (!isEqual(nextState.search, search)) { + const { searchResults } = this.state; + if (!isEqual(nextState.searchResults, searchResults)) { return true; } return false; @@ -191,32 +178,14 @@ export default class ShareListView extends React.Component { } getSubscriptions = () => { - if (this.data && this.data.removeAllListeners) { - this.data.removeAllListeners(); - } - const { serversDB } = database.databases; const { server } = this.props; if (server) { - this.data = database.objects('subscriptions').filtered('archived != true && open == true'); - - // servers + this.data = database.objects('subscriptions').filtered('archived != true && open == true').sorted('roomUpdatedAt', true); this.servers = serversDB.objects('servers'); - - // chats - this.data = this.data.sorted('roomUpdatedAt', true); this.chats = this.data.slice(0, LIMIT); - safeAddListener(this.data, this.updateState); - } - }; - - uriToPath = uri => decodeURIComponent(isIOS ? uri.replace(/^file:\/\//, '') : uri); - - // eslint-disable-next-line react/sort-comp - updateState = () => { - this.updateStateInteraction = InteractionManager.runAfterInteractions(() => { this.internalSetState({ chats: this.chats ? this.chats.slice() : [], servers: this.servers ? this.servers.slice() : [], @@ -224,9 +193,11 @@ export default class ShareListView extends React.Component { showError: !this.canUploadFile() }); this.forceUpdate(); - }); + } }; + uriToPath = uri => decodeURIComponent(isIOS ? uri.replace(/^file:\/\//, '') : uri); + getRoomTitle = (item) => { const { useRealName } = this.props; return ((item.prid || useRealName) && item.fname) || item.name; @@ -279,33 +250,29 @@ export default class ShareListView extends React.Component { search = (text) => { const result = database.objects('subscriptions').filtered('name CONTAINS[c] $0', text); this.internalSetState({ - search: result.slice(0, LIMIT), + searchResults: result.slice(0, LIMIT), searchText: text }); } - initSearchingAndroid = () => { + initSearch = () => { const { chats } = this.state; - const { openSearchHeader, navigation } = this.props; - this.setState({ searching: true, search: chats }); + const { navigation } = this.props; + this.setState({ searching: true, searchResults: chats }); navigation.setParams({ searching: true }); - openSearchHeader(); } - cancelSearchingAndroid = () => { - if (isAndroid) { - const { closeSearchHeader, navigation } = this.props; - this.internalSetState({ searching: false, search: [], searchText: '' }); - navigation.setParams({ searching: false }); - closeSearchHeader(); - Keyboard.dismiss(); - } + cancelSearch = () => { + const { navigation } = this.props; + this.internalSetState({ searching: false, searchResults: [], searchText: '' }); + navigation.setParams({ searching: false }); + Keyboard.dismiss(); } handleBackPress = () => { const { searching } = this.state; if (searching) { - this.cancelSearchingAndroid(); + this.cancelSearch(); return true; } return false; @@ -396,7 +363,7 @@ export default class ShareListView extends React.Component { renderContent = () => { const { - chats, mediaLoading, loading, search, searching, searchText + chats, mediaLoading, loading, searchResults, searching, searchText } = this.state; if (mediaLoading || loading) { @@ -405,7 +372,7 @@ export default class ShareListView extends React.Component { return ( Date: Wed, 24 Jul 2019 16:47:45 -0300 Subject: [PATCH 43/58] StatusBar --- app/views/ShareListView/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 59b190556a9..9c7aee496a8 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -22,6 +22,7 @@ import { CloseShareExtensionButton, CustomHeaderButtons, Item } from '../../cont import ShareListHeader from './Header'; import styles from './styles'; +import StatusBar from '../../containers/StatusBar'; const LIMIT = 50; const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); @@ -425,6 +426,7 @@ export default class ShareListView extends React.Component { const { showError } = this.state; return ( + { showError ? this.renderError() : this.renderContent() } ); From 0d520c4da4daf2caa7a4ffa9326d98024202d0f3 Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 24 Jul 2019 16:52:35 -0300 Subject: [PATCH 44/58] Fix server change --- app/views/ShareListView/index.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 9c7aee496a8..92ebf73a8e1 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -151,6 +151,13 @@ export default class ShareListView extends React.Component { this.getSubscriptions(); } + componentWillReceiveProps(nextProps) { + const { server } = this.props; + if (nextProps.server !== server) { + this.getSubscriptions(); + } + } + shouldComponentUpdate(nextProps, nextState) { const { searching } = this.state; if (nextState.searching !== searching) { From 791ead23656be2517f52b8ae6df0b2e5136ed017 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 25 Jul 2019 12:09:06 -0300 Subject: [PATCH 45/58] Migrate Share Extension methods to external classes because android reuse --- app/actions/actionsTypes.js | 5 +++++ app/actions/share.js | 22 ++++++++++++++++++++++ app/lib/ShareNavigation.js | 21 +++++++++++++++++++++ app/lib/rocketchat.js | 21 +++++++++++++-------- app/reducers/index.js | 4 +++- app/reducers/share.js | 29 +++++++++++++++++++++++++++++ app/share.js | 2 +- app/views/SelectServerView.js | 6 +++--- app/views/ShareListView/index.js | 19 +++++++++---------- app/views/ShareView/index.js | 4 ++-- 10 files changed, 108 insertions(+), 25 deletions(-) create mode 100644 app/actions/share.js create mode 100644 app/lib/ShareNavigation.js create mode 100644 app/reducers/share.js diff --git a/app/actions/actionsTypes.js b/app/actions/actionsTypes.js index 45d2886f72f..4e466bcaa94 100644 --- a/app/actions/actionsTypes.js +++ b/app/actions/actionsTypes.js @@ -14,6 +14,11 @@ export const LOGIN = createRequestTypes('LOGIN', [ 'SET_SERVICES', 'SET_PREFERENCE' ]); +export const SHARE = createRequestTypes('SHARE', [ + 'SELECT_SERVER', + 'SET_USER', + 'SET_SERVER_INFO' +]); export const USER = createRequestTypes('USER', ['SET']); export const ROOMS = createRequestTypes('ROOMS', [ ...defaultTypes, diff --git a/app/actions/share.js b/app/actions/share.js new file mode 100644 index 00000000000..eebb473434b --- /dev/null +++ b/app/actions/share.js @@ -0,0 +1,22 @@ +import { SHARE } from './actionsTypes'; + +export function shareSelectServer(server) { + return { + type: SHARE.SELECT_SERVER, + server + }; +} + +export function shareSetUser(user) { + return { + type: SHARE.SET_USER, + user + }; +} + +export function shareSetServerInfo(serverInfo) { + return { + type: SHARE.SET_SERVER_INFO, + serverInfo + }; +} diff --git a/app/lib/ShareNavigation.js b/app/lib/ShareNavigation.js new file mode 100644 index 00000000000..84bc279089e --- /dev/null +++ b/app/lib/ShareNavigation.js @@ -0,0 +1,21 @@ +import { NavigationActions } from 'react-navigation'; + +let _shareNavigator; + +function setTopLevelNavigator(navigatorRef) { + _shareNavigator = navigatorRef; +} + +function navigate(routeName, params) { + _shareNavigator.dispatch( + NavigationActions.navigate({ + routeName, + params + }) + ); +} + +export default { + navigate, + setTopLevelNavigator +}; diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 78f02b0284b..857e1bcf8f7 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -10,12 +10,13 @@ import database from './realm'; import log from '../utils/log'; import { isIOS, getBundleId } from '../utils/deviceInfo'; -import { addSettings } from '../actions'; import { setUser, setLoginServices, loginRequest, loginFailure, logout } from '../actions/login'; import { disconnect, connectSuccess, connectRequest } from '../actions/connect'; -import { selectServerSuccess } from '../actions/server'; +import { + shareSelectServer, shareSetServerInfo, shareSetUser +} from '../actions/share'; import subscribeRooms from './methods/subscriptions/rooms'; import subscribeRoom from './methods/subscriptions/room'; @@ -235,20 +236,24 @@ const RocketChat = { // set Server const { serversDB } = database.databases; const server = serversDB.objectForPrimaryKey('servers', currentServer); - reduxStore.dispatch(selectServerSuccess(currentServer, server.version)); + reduxStore.dispatch(shareSelectServer(currentServer)); // set File configs - reduxStore.dispatch(addSettings({ + reduxStore.dispatch(shareSetServerInfo({ Site_Url: server.id, - useRealName: server.useRealName, - FileUpload_MediaTypeWhiteList: server.FileUpload_MediaTypeWhiteList, - FileUpload_MaxFileSize: server.FileUpload_MaxFileSize + ...server })); // set User info const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ currentServer }`); const user = userId && serversDB.objectForPrimaryKey('user', userId); - reduxStore.dispatch(setUser(user)); + reduxStore.dispatch(shareSetUser({ + user: { + userId: user.id, + token: user.token, + username: user.username + } + })); await RocketChat.login({ resume: user.token }); }, diff --git a/app/reducers/index.js b/app/reducers/index.js index e7bfb41d132..6d2bd447f75 100644 --- a/app/reducers/index.js +++ b/app/reducers/index.js @@ -11,6 +11,7 @@ import app from './app'; import sortPreferences from './sortPreferences'; import notification from './notification'; import markdown from './markdown'; +import share from './share'; export default combineReducers({ settings, @@ -24,5 +25,6 @@ export default combineReducers({ rooms, sortPreferences, notification, - markdown + markdown, + share }); diff --git a/app/reducers/share.js b/app/reducers/share.js new file mode 100644 index 00000000000..968121f9053 --- /dev/null +++ b/app/reducers/share.js @@ -0,0 +1,29 @@ +import { SHARE } from '../actions/actionsTypes'; + +const initialState = { + user: {}, + server: '', + serverInfo: {} +}; + +export default function share(state = initialState, action) { + switch (action.type) { + case SHARE.SELECT_SERVER: + return { + ...state, + server: action.server + }; + case SHARE.SET_USER: + return { + ...state, + user: action.user + }; + case SHARE.SET_SERVER_INFO: + return { + ...state, + serverInfo: action.serverInfo + }; + default: + return state; + } +} diff --git a/app/share.js b/app/share.js index f2bbbeba42b..7ea3ce299ff 100644 --- a/app/share.js +++ b/app/share.js @@ -4,7 +4,7 @@ import { createAppContainer, createStackNavigator, createSwitchNavigator } from import { Provider } from 'react-redux'; import RNUserDefaults from 'rn-user-defaults'; -import Navigation from './lib/Navigation'; +import Navigation from './lib/ShareNavigation'; import store from './lib/createStore'; import sharedStyles from './views/Styles'; import { isNotch, isIOS } from './utils/deviceInfo'; diff --git a/app/views/SelectServerView.js b/app/views/SelectServerView.js index 80d1dcf896a..66086cbbaeb 100644 --- a/app/views/SelectServerView.js +++ b/app/views/SelectServerView.js @@ -10,7 +10,7 @@ import I18n from '../i18n'; import database from '../lib/realm'; import StatusBar from '../containers/StatusBar'; import { COLOR_BACKGROUND_CONTAINER } from '../constants/colors'; -import Navigation from '../lib/Navigation'; +import Navigation from '../lib/ShareNavigation'; import ServerItem, { ROW_HEIGHT } from '../presentation/ServerItem'; import sharedStyles from './Styles'; import RocketChat from '../lib/rocketchat'; @@ -33,8 +33,8 @@ const styles = StyleSheet.create({ } }); -@connect(state => ({ - server: state.server.server +@connect(({ share }) => ({ + server: share.server })) export default class SelectServerView extends React.Component { static navigationOptions = () => ({ diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 9d3d49d4cda..972e7e65b7a 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -10,7 +10,7 @@ import RNFetchBlob from 'rn-fetch-blob'; import * as mime from 'react-native-mime-types'; import { isEqual } from 'lodash'; -import Navigation from '../../lib/Navigation'; +import Navigation from '../../lib/ShareNavigation'; import database, { safeAddListener } from '../../lib/realm'; import { isIOS, isAndroid } from '../../utils/deviceInfo'; import I18n from '../../i18n'; @@ -31,15 +31,14 @@ const LIMIT = 50; const getItemLayout = (data, index) => ({ length: ROW_HEIGHT, offset: ROW_HEIGHT * index, index }); const keyExtractor = item => item.rid; -@connect(state => ({ - userId: state.login.user && state.login.user.id, - token: state.login.user && state.login.user.token, - searchText: state.rooms.searchText, - server: state.server.server, - useRealName: state.settings.UI_Use_Real_Name, - FileUpload_MediaTypeWhiteList: state.settings.FileUpload_MediaTypeWhiteList, - FileUpload_MaxFileSize: state.settings.FileUpload_MaxFileSize, - baseUrl: state.server ? state.server.server : '' +@connect(({ share }) => ({ + userId: share.user && share.user.id, + token: share.user && share.user.token, + server: share.server, + useRealName: share.serverInfo.UI_Use_Real_Name, + FileUpload_MediaTypeWhiteList: share.serverInfo.FileUpload_MediaTypeWhiteList, + FileUpload_MaxFileSize: share.serverInfo.FileUpload_MaxFileSize, + baseUrl: share ? share.server : '' }), dispatch => ({ openSearchHeader: () => dispatch(openSearchHeaderAction()), closeSearchHeader: () => dispatch(closeSearchHeaderAction()) diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index c34c95d0047..9bb38097dee 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -19,8 +19,8 @@ import database from '../../lib/realm'; import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import { isReadOnly, isBlocked } from '../../utils/room'; -@connect(state => ({ - username: state.login.user && state.login.user.username +@connect(({ share }) => ({ + username: share.user && share.user.username })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { From 20c19182900996439bb5b3f7f91ba5b0294e4aea Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 25 Jul 2019 13:26:00 -0300 Subject: [PATCH 46/58] Fix send file message --- app/lib/methods/sendFileMessage.js | 9 +++++++-- app/lib/methods/sendMessage.js | 4 ++-- app/lib/rocketchat.js | 8 +++----- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/app/lib/methods/sendFileMessage.js b/app/lib/methods/sendFileMessage.js index 08da0b37427..2153df479bd 100644 --- a/app/lib/methods/sendFileMessage.js +++ b/app/lib/methods/sendFileMessage.js @@ -26,8 +26,13 @@ export function cancelUpload(path) { export function sendFileMessage(rid, fileInfo, tmid) { return new Promise((resolve, reject) => { try { - const { FileUpload_MaxFileSize, Site_Url } = reduxStore.getState().settings; - const { id, token } = reduxStore.getState().login.user; + const { settings, share, login } = reduxStore.getState(); + const { FileUpload_MaxFileSize, Site_Url } = Object.entries(settings).length !== 0 + ? settings + : share.serverInfo; + const { id, token } = Object.entries(login.user).length !== 0 + ? login.user + : share.user; // -1 maxFileSize means there is no limit if (FileUpload_MaxFileSize > -1 && fileInfo.size > FileUpload_MaxFileSize) { diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index eae4a824019..89e1da320a7 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -16,8 +16,8 @@ export const getMessage = (rid, msg = '', tmid) => { _updatedAt: new Date(), status: messagesStatus.TEMP, u: { - _id: reduxStore.getState().login.user.id || '1', - username: reduxStore.getState().login.user.username + _id: reduxStore.getState().login.user.id || reduxStore.getState().share.user.id || '1', + username: reduxStore.getState().login.user.username || reduxStore.getState().share.user.username } }; try { diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 857e1bcf8f7..942e5375491 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -248,11 +248,9 @@ const RocketChat = { const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ currentServer }`); const user = userId && serversDB.objectForPrimaryKey('user', userId); reduxStore.dispatch(shareSetUser({ - user: { - userId: user.id, - token: user.token, - username: user.username - } + id: user.id, + token: user.token, + username: user.username })); await RocketChat.login({ resume: user.token }); From a91b19115a14b10f1d242a34a279a23cae56a121 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Thu, 25 Jul 2019 14:20:45 -0300 Subject: [PATCH 47/58] Improve code --- app/lib/methods/sendMessage.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index 89e1da320a7..945c1b30af2 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -7,6 +7,7 @@ import random from '../../utils/random'; export const getMessage = (rid, msg = '', tmid) => { const _id = random(17); + const { login, share } = reduxStore.getState(); const message = { _id, rid, @@ -16,8 +17,8 @@ export const getMessage = (rid, msg = '', tmid) => { _updatedAt: new Date(), status: messagesStatus.TEMP, u: { - _id: reduxStore.getState().login.user.id || reduxStore.getState().share.user.id || '1', - username: reduxStore.getState().login.user.username || reduxStore.getState().share.user.username + _id: login.user.id || share.user.id || '1', + username: login.user.username || share.user.username } }; try { From d0d0b81b66ab3389eb2b5fb5e393802a1f340be7 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 09:08:01 -0300 Subject: [PATCH 48/58] Fix multiple logins android --- app/lib/methods/sendFileMessage.js | 10 +++------- app/lib/methods/sendMessage.js | 10 +++++----- app/views/ShareView/index.js | 4 ++-- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/app/lib/methods/sendFileMessage.js b/app/lib/methods/sendFileMessage.js index 2153df479bd..0b5c5c5bbb3 100644 --- a/app/lib/methods/sendFileMessage.js +++ b/app/lib/methods/sendFileMessage.js @@ -23,16 +23,12 @@ export function cancelUpload(path) { } } -export function sendFileMessage(rid, fileInfo, tmid) { +export function sendFileMessage(rid, fileInfo, tmid, shareExtension = false) { return new Promise((resolve, reject) => { try { const { settings, share, login } = reduxStore.getState(); - const { FileUpload_MaxFileSize, Site_Url } = Object.entries(settings).length !== 0 - ? settings - : share.serverInfo; - const { id, token } = Object.entries(login.user).length !== 0 - ? login.user - : share.user; + const { FileUpload_MaxFileSize, Site_Url } = shareExtension ? share.serverInfo : settings; + const { id, token } = shareExtension ? share.user : login.user; // -1 maxFileSize means there is no limit if (FileUpload_MaxFileSize > -1 && fileInfo.size > FileUpload_MaxFileSize) { diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index 945c1b30af2..2ecbdbf3abd 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -5,7 +5,7 @@ import reduxStore from '../createStore'; import log from '../../utils/log'; import random from '../../utils/random'; -export const getMessage = (rid, msg = '', tmid) => { +export const getMessage = (rid, msg = '', tmid, shareExtension) => { const _id = random(17); const { login, share } = reduxStore.getState(); const message = { @@ -17,8 +17,8 @@ export const getMessage = (rid, msg = '', tmid) => { _updatedAt: new Date(), status: messagesStatus.TEMP, u: { - _id: login.user.id || share.user.id || '1', - username: login.user.username || share.user.username + _id: (shareExtension ? share.user.id : login.user.id) || '1', + username: shareExtension ? share.user.username : login.user.username } }; try { @@ -44,9 +44,9 @@ export async function sendMessageCall(message) { return data; } -export default async function(rid, msg, tmid) { +export default async function(rid, msg, tmid, shareExtension = false) { try { - const message = getMessage(rid, msg, tmid); + const message = getMessage(rid, msg, tmid, shareExtension); const [room] = database.objects('subscriptions').filtered('rid == $0', rid); if (room) { diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 9bb38097dee..2ad510d874b 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -103,7 +103,7 @@ export default class ShareView extends React.Component { const fileMessage = { ...fileInfo, name, description }; if (fileInfo && rid !== '') { try { - await RocketChat.sendFileMessage(rid, fileMessage, undefined); + await RocketChat.sendFileMessage(rid, fileMessage, undefined, true); } catch (e) { log('err_send_media_message', e); } @@ -114,7 +114,7 @@ export default class ShareView extends React.Component { const { value, rid } = this.state; if (value !== '' && rid !== '') { try { - await RocketChat.sendMessage(rid, value, undefined); + await RocketChat.sendMessage(rid, value, undefined, true); } catch (error) { log('err_share_extension_send_message', error); } From 6b7bc654afddadffeda354b1a985c6ee34fcb11b Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 11:28:05 -0300 Subject: [PATCH 49/58] Change params to sendMessage --- app/lib/methods/sendMessage.js | 13 ++++++------- app/views/RoomView/index.js | 3 ++- app/views/ShareView/index.js | 21 ++++++++++++++++----- 3 files changed, 24 insertions(+), 13 deletions(-) diff --git a/app/lib/methods/sendMessage.js b/app/lib/methods/sendMessage.js index 2ecbdbf3abd..52c4f6e9417 100644 --- a/app/lib/methods/sendMessage.js +++ b/app/lib/methods/sendMessage.js @@ -1,13 +1,12 @@ import messagesStatus from '../../constants/messagesStatus'; import buildMessage from './helpers/buildMessage'; import database from '../realm'; -import reduxStore from '../createStore'; import log from '../../utils/log'; import random from '../../utils/random'; -export const getMessage = (rid, msg = '', tmid, shareExtension) => { +export const getMessage = (rid, msg = '', tmid, user) => { const _id = random(17); - const { login, share } = reduxStore.getState(); + const { id, username } = user; const message = { _id, rid, @@ -17,8 +16,8 @@ export const getMessage = (rid, msg = '', tmid, shareExtension) => { _updatedAt: new Date(), status: messagesStatus.TEMP, u: { - _id: (shareExtension ? share.user.id : login.user.id) || '1', - username: shareExtension ? share.user.username : login.user.username + _id: id || '1', + username } }; try { @@ -44,9 +43,9 @@ export async function sendMessageCall(message) { return data; } -export default async function(rid, msg, tmid, shareExtension = false) { +export default async function(rid, msg, tmid, user) { try { - const message = getMessage(rid, msg, tmid, shareExtension); + const message = getMessage(rid, msg, tmid, user); const [room] = database.objects('subscriptions').filtered('rid == $0', rid); if (room) { diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index 42a9ae9a30f..c314bbf5716 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -410,8 +410,9 @@ export default class RoomView extends React.Component { } sendMessage = (message, tmid) => { + const { user } = this.props; LayoutAnimation.easeInEaseOut(); - RocketChat.sendMessage(this.rid, message, this.tmid || tmid).then(() => { + RocketChat.sendMessage(this.rid, message, this.tmid || tmid, user).then(() => { this.setLastOpen(null); }); }; diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index 2ad510d874b..395a4cdb69e 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -20,7 +20,11 @@ import { CustomHeaderButtons, Item } from '../../containers/HeaderButton'; import { isReadOnly, isBlocked } from '../../utils/room'; @connect(({ share }) => ({ - username: share.user && share.user.username + user: { + id: share.user && share.user.id, + username: share.user && share.user.username, + token: share.user && share.user.token + } })) export default class ShareView extends React.Component { static navigationOptions = ({ navigation }) => { @@ -46,7 +50,11 @@ export default class ShareView extends React.Component { static propTypes = { navigation: PropTypes.object, - username: PropTypes.string + user: PropTypes.shape({ + id: PropTypes.string.isRequired, + username: PropTypes.string.isRequired, + token: PropTypes.string.isRequired + }) }; constructor(props) { @@ -77,7 +85,8 @@ export default class ShareView extends React.Component { componentDidMount() { const { room } = this.state; - const { navigation, username } = this.props; + const { navigation, user } = this.props; + const { username } = user; navigation.setParams({ sendMessage: this._sendMessage, canSend: !(isReadOnly(room, { username }) || isBlocked(room)) }); } @@ -112,9 +121,10 @@ export default class ShareView extends React.Component { sendTextMessage = async() => { const { value, rid } = this.state; + const { user } = this.props; if (value !== '' && rid !== '') { try { - await RocketChat.sendMessage(rid, value, undefined, true); + await RocketChat.sendMessage(rid, value, undefined, user); } catch (error) { log('err_share_extension_send_message', error); } @@ -204,7 +214,8 @@ export default class ShareView extends React.Component { } render() { - const { username } = this.props; + const { user } = this.props; + const { username } = user; const { name, loading, isMedia, room } = this.state; From 9e066113cbd9054e52f7195d15f70dc76b0ff381 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 11:35:39 -0300 Subject: [PATCH 50/58] Change params to sendFileMessage --- app/containers/MessageBox/index.js | 12 ++++++++---- app/lib/methods/sendFileMessage.js | 8 +++----- app/views/RoomView/UploadProgress.js | 12 +++++++++--- app/views/RoomView/index.js | 2 +- app/views/ShareView/index.js | 9 ++++++--- 5 files changed, 27 insertions(+), 16 deletions(-) diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index e4857920818..1dba41fd467 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -489,7 +489,9 @@ class MessageBox extends Component { } sendMediaMessage = async(file) => { - const { rid, tmid } = this.props; + const { + rid, tmid, baseUrl: server, user + } = this.props; this.setState({ file: { isVisible: false } }); const fileInfo = { name: file.name, @@ -500,7 +502,7 @@ class MessageBox extends Component { path: file.path }; try { - await RocketChat.sendFileMessage(rid, fileInfo, tmid); + await RocketChat.sendFileMessage(rid, fileInfo, tmid, server, user); } catch (e) { log('err_send_media_message', e); } @@ -602,14 +604,16 @@ class MessageBox extends Component { } finishAudioMessage = async(fileInfo) => { - const { rid, tmid } = this.props; + const { + rid, tmid, baseUrl: server, user + } = this.props; this.setState({ recording: false }); if (fileInfo) { try { - await RocketChat.sendFileMessage(rid, fileInfo, tmid); + await RocketChat.sendFileMessage(rid, fileInfo, tmid, server, user); } catch (e) { if (e && e.error === 'error-file-too-large') { return Alert.alert(I18n.t(e.error)); diff --git a/app/lib/methods/sendFileMessage.js b/app/lib/methods/sendFileMessage.js index 0b5c5c5bbb3..0a410e727e7 100644 --- a/app/lib/methods/sendFileMessage.js +++ b/app/lib/methods/sendFileMessage.js @@ -1,4 +1,3 @@ -import reduxStore from '../createStore'; import database from '../realm'; import log from '../../utils/log'; @@ -23,12 +22,11 @@ export function cancelUpload(path) { } } -export function sendFileMessage(rid, fileInfo, tmid, shareExtension = false) { +export function sendFileMessage(rid, fileInfo, tmid, server, user) { return new Promise((resolve, reject) => { try { - const { settings, share, login } = reduxStore.getState(); - const { FileUpload_MaxFileSize, Site_Url } = shareExtension ? share.serverInfo : settings; - const { id, token } = shareExtension ? share.user : login.user; + const { FileUpload_MaxFileSize, Site_Url } = database.objectForPrimaryKey('servers', server); + const { id, token } = user; // -1 maxFileSize means there is no limit if (FileUpload_MaxFileSize > -1 && fileInfo.size > FileUpload_MaxFileSize) { diff --git a/app/views/RoomView/UploadProgress.js b/app/views/RoomView/UploadProgress.js index 30aa95cad0b..90264941d4a 100644 --- a/app/views/RoomView/UploadProgress.js +++ b/app/views/RoomView/UploadProgress.js @@ -64,7 +64,13 @@ const styles = StyleSheet.create({ export default class UploadProgress extends Component { static propTypes = { window: PropTypes.object, - rid: PropTypes.string + rid: PropTypes.string, + user: PropTypes.shape({ + id: PropTypes.string.isRequired, + username: PropTypes.string.isRequired, + token: PropTypes.string.isRequired + }), + baseUrl: PropTypes.string.isRequired } constructor(props) { @@ -124,13 +130,13 @@ export default class UploadProgress extends Component { } tryAgain = async(item) => { - const { rid } = this.props; + const { rid, baseUrl: server, user } = this.props; try { database.write(() => { item.error = false; }); - await RocketChat.sendFileMessage(rid, item); + await RocketChat.sendFileMessage(rid, item, undefined, server, user); } catch (e) { log('err_upload_progress_try_again', e); } diff --git a/app/views/RoomView/index.js b/app/views/RoomView/index.js index c314bbf5716..9b8d50d6baf 100644 --- a/app/views/RoomView/index.js +++ b/app/views/RoomView/index.js @@ -624,7 +624,7 @@ export default class RoomView extends React.Component { {this.renderFooter()} {this.renderActions()} - + { @@ -54,7 +55,8 @@ export default class ShareView extends React.Component { id: PropTypes.string.isRequired, username: PropTypes.string.isRequired, token: PropTypes.string.isRequired - }) + }), + baseUrl: PropTypes.string.isRequired }; constructor(props) { @@ -108,11 +110,12 @@ export default class ShareView extends React.Component { sendMediaMessage = async() => { const { rid, fileInfo, file } = this.state; + const { baseUrl: server, user } = this.props; const { name, description } = file; const fileMessage = { ...fileInfo, name, description }; if (fileInfo && rid !== '') { try { - await RocketChat.sendFileMessage(rid, fileMessage, undefined, true); + await RocketChat.sendFileMessage(rid, fileMessage, undefined, server, user); } catch (e) { log('err_send_media_message', e); } From 5cba5d9d29df652e5c1f296bf40282bb814622f5 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 11:49:19 -0300 Subject: [PATCH 51/58] Fix problem on sendFileMessage --- app/lib/methods/sendFileMessage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/lib/methods/sendFileMessage.js b/app/lib/methods/sendFileMessage.js index 0a410e727e7..f7f774d5c34 100644 --- a/app/lib/methods/sendFileMessage.js +++ b/app/lib/methods/sendFileMessage.js @@ -25,7 +25,8 @@ export function cancelUpload(path) { export function sendFileMessage(rid, fileInfo, tmid, server, user) { return new Promise((resolve, reject) => { try { - const { FileUpload_MaxFileSize, Site_Url } = database.objectForPrimaryKey('servers', server); + const { serversDB } = database.databases; + const { FileUpload_MaxFileSize, id: Site_Url } = serversDB.objectForPrimaryKey('servers', server); const { id, token } = user; // -1 maxFileSize means there is no limit From 294a139d14504cedc542b801f9a24d7e361eac17 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 14:38:49 -0300 Subject: [PATCH 52/58] Fix file size --- app/views/ShareView/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/ShareView/index.js b/app/views/ShareView/index.js index b9216a97026..8f4b783db16 100644 --- a/app/views/ShareView/index.js +++ b/app/views/ShareView/index.js @@ -92,7 +92,7 @@ export default class ShareView extends React.Component { navigation.setParams({ sendMessage: this._sendMessage, canSend: !(isReadOnly(room, { username }) || isBlocked(room)) }); } - bytesToSize = bits => `${ ((bits / 8) / 1048576).toFixed(2) }MB`; + bytesToSize = bytes => `${ (bytes / 1048576).toFixed(2) }MB`; _sendMessage = async() => { const { isMedia } = this.state; From 616dc7d1a1ca238b4300628c24e6049aedf6548e Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 15:40:03 -0300 Subject: [PATCH 53/58] Change react-native-realm-path to podfile --- ios/Podfile | 3 + ios/Podfile.lock | 8 +- .../react-native-realm-path/RNRealmPath.h | 1 + .../react-native-realm-path/RNRealmPath.h | 1 + .../react-native-realm-path.podspec.json | 21 + ios/Pods/Manifest.lock | 8 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 10226 ++++++++-------- .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../react-native-realm-path-dummy.m | 5 + .../react-native-realm-path-prefix.pch | 12 + .../react-native-realm-path.xcconfig | 9 + ios/RocketChatRN.xcodeproj/project.pbxproj | 6 - package.json | 2 +- yarn.lock | 8 +- 17 files changed, 5290 insertions(+), 5044 deletions(-) create mode 120000 ios/Pods/Headers/Private/react-native-realm-path/RNRealmPath.h create mode 120000 ios/Pods/Headers/Public/react-native-realm-path/RNRealmPath.h create mode 100644 ios/Pods/Local Podspecs/react-native-realm-path.podspec.json create mode 100644 ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path-dummy.m create mode 100644 ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path-prefix.pch create mode 100644 ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path.xcconfig diff --git a/ios/Podfile b/ios/Podfile index 1035be266fe..4ffa07963bc 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -34,6 +34,7 @@ target 'RocketChatRN' do pod 'react-native-splash-screen', :path => '../node_modules/react-native-splash-screen' pod 'react-native-orientation-locker', :path => '../node_modules/react-native-orientation-locker' + pod 'react-native-realm-path', :path => '../node_modules/react-native-realm-path' pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' @@ -73,6 +74,8 @@ target 'ShareRocketChatRN' do pod 'RNDeviceInfo', :path => '../node_modules/react-native-device-info' pod 'RNLocalize', :path => '../node_modules/react-native-localize' + pod 'react-native-realm-path', :path => '../node_modules/react-native-realm-path' + pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec' diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 940a0e2b9b1..08392462ea0 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -113,6 +113,8 @@ PODS: - React - react-native-orientation-locker (1.1.5): - React + - react-native-realm-path (1.2.11): + - React - react-native-splash-screen (3.2.0): - React - react-native-webview (5.8.1): @@ -188,6 +190,7 @@ DEPENDENCIES: - GoogleIDFASupport (~> 3.14.0) - react-native-document-picker (from `../node_modules/react-native-document-picker`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) + - react-native-realm-path (from `../node_modules/react-native-realm-path`) - react-native-splash-screen (from `../node_modules/react-native-splash-screen`) - react-native-webview (from `../node_modules/react-native-webview`) - React/Core (from `../node_modules/react-native`) @@ -271,6 +274,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-document-picker" react-native-orientation-locker: :path: "../node_modules/react-native-orientation-locker" + react-native-realm-path: + :path: "../node_modules/react-native-realm-path" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" react-native-webview: @@ -353,6 +358,7 @@ SPEC CHECKSUMS: React: 76e6aa2b87d05eb6cccb6926d72685c9a07df152 react-native-document-picker: 94a07ce0494c559e2ae9fa86621d6c624d810fec react-native-orientation-locker: 132a63bab4dddd2a5709f6f7935ad9676b0af7c5 + react-native-realm-path: 868473ea0bc4629850f1ec51a70d81055c06d091 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba @@ -374,6 +380,6 @@ SPEC CHECKSUMS: UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: 7875ef440f1c2fb6583ee808c642c97d1410140d +PODFILE CHECKSUM: 80852b4c5177be5c007dca7daf4b6f34a3cb68cb COCOAPODS: 1.6.2 diff --git a/ios/Pods/Headers/Private/react-native-realm-path/RNRealmPath.h b/ios/Pods/Headers/Private/react-native-realm-path/RNRealmPath.h new file mode 120000 index 00000000000..48799a65876 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-realm-path/RNRealmPath.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-realm-path/ios/RNRealmPath.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-realm-path/RNRealmPath.h b/ios/Pods/Headers/Public/react-native-realm-path/RNRealmPath.h new file mode 120000 index 00000000000..48799a65876 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-realm-path/RNRealmPath.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-realm-path/ios/RNRealmPath.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/react-native-realm-path.podspec.json b/ios/Pods/Local Podspecs/react-native-realm-path.podspec.json new file mode 100644 index 00000000000..79723343943 --- /dev/null +++ b/ios/Pods/Local Podspecs/react-native-realm-path.podspec.json @@ -0,0 +1,21 @@ +{ + "name": "react-native-realm-path", + "version": "1.2.11", + "summary": "A helper to Realm Path on AppGroup iOS.", + "license": "MIT", + "authors": "Djorkaeff Alexandre", + "homepage": "https://github.com/rocketchat/react-native-realm-path", + "platforms": { + "ios": "10.0" + }, + "source": { + "git": "https://github.com/RocketChat/react-native-realm-path.git", + "tag": "v1.2.11" + }, + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 940a0e2b9b1..08392462ea0 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -113,6 +113,8 @@ PODS: - React - react-native-orientation-locker (1.1.5): - React + - react-native-realm-path (1.2.11): + - React - react-native-splash-screen (3.2.0): - React - react-native-webview (5.8.1): @@ -188,6 +190,7 @@ DEPENDENCIES: - GoogleIDFASupport (~> 3.14.0) - react-native-document-picker (from `../node_modules/react-native-document-picker`) - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) + - react-native-realm-path (from `../node_modules/react-native-realm-path`) - react-native-splash-screen (from `../node_modules/react-native-splash-screen`) - react-native-webview (from `../node_modules/react-native-webview`) - React/Core (from `../node_modules/react-native`) @@ -271,6 +274,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-document-picker" react-native-orientation-locker: :path: "../node_modules/react-native-orientation-locker" + react-native-realm-path: + :path: "../node_modules/react-native-realm-path" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" react-native-webview: @@ -353,6 +358,7 @@ SPEC CHECKSUMS: React: 76e6aa2b87d05eb6cccb6926d72685c9a07df152 react-native-document-picker: 94a07ce0494c559e2ae9fa86621d6c624d810fec react-native-orientation-locker: 132a63bab4dddd2a5709f6f7935ad9676b0af7c5 + react-native-realm-path: 868473ea0bc4629850f1ec51a70d81055c06d091 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba @@ -374,6 +380,6 @@ SPEC CHECKSUMS: UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: 7875ef440f1c2fb6583ee808c642c97d1410140d +PODFILE CHECKSUM: 80852b4c5177be5c007dca7daf4b6f34a3cb68cb COCOAPODS: 1.6.2 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 3c3681ba299..e8b0d6753bb 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,32 +7,14 @@ objects = { /* Begin PBXAggregateTarget section */ - 012EE4243226ABBB0BCDFF486045809E /* UMFontInterface */ = { + 04F2065D21456DD872C5C43AB59ADD11 /* UMFaceDetectorInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 6A15F9758EBBA3D16BB8C06AFE1A2386 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; + buildConfigurationList = 8A4D0198025C738F7EEBA269AB094A84 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMFontInterface; - }; - 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; + name = UMFaceDetectorInterface; }; 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */ = { isa = PBXAggregateTarget; @@ -48,15 +30,6 @@ ); name = FirebaseAnalytics; }; - 2EF7AAC4B473FC5EE7FAF38C422E42B2 /* UMSensorsInterface */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 120B9A626F190CC66D901ACC9F9F20D0 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; - buildPhases = ( - ); - dependencies = ( - ); - name = UMSensorsInterface; - }; 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */ = { isa = PBXAggregateTarget; buildConfigurationList = EDE4D9C83A65084FDD68DC55411111CD /* Build configuration list for PBXAggregateTarget "FirebaseABTesting" */; @@ -84,6 +57,15 @@ ); name = FirebasePerformance; }; + 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 0D1C58C4F3C697682657D483AF1081D3 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMConstantsInterface; + }; 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */ = { isa = PBXAggregateTarget; buildConfigurationList = EE90B36F22114F8D0D633EC22567EB29 /* Build configuration list for PBXAggregateTarget "FirebaseRemoteConfig" */; @@ -99,6 +81,15 @@ ); name = FirebaseRemoteConfig; }; + 61BBB5951F8410A3F291DFCFA7FBB0ED /* UMFontInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 5D667B4DA999A7C16C9786412E31BB39 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMFontInterface; + }; 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */ = { isa = PBXAggregateTarget; buildConfigurationList = 5AE3722DD39C3B2C37D89B1AC2A0A4C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; @@ -108,32 +99,32 @@ ); name = "boost-for-react-native"; }; - 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */ = { + 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 2814D5F6B46466474CE6DD5CE093DDB4 /* Build configuration list for PBXAggregateTarget "GoogleIDFASupport" */; + buildConfigurationList = 19B649D415B23577700588DC3FB19565 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */; buildPhases = ( ); dependencies = ( ); - name = GoogleIDFASupport; + name = UMPermissionsInterface; }; - 8512B7E98946D00581570BEAA92952AC /* UMTaskManagerInterface */ = { + 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 59AA1F9B689EB2CF42A78BBFFD49A79A /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; + buildConfigurationList = 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMTaskManagerInterface; + name = UMFileSystemInterface; }; - 86D46B5F7EA763C3041CA2087A947D2E /* UMBarCodeScannerInterface */ = { + 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */ = { isa = PBXAggregateTarget; - buildConfigurationList = 010FECF0E1C4F6DFAE0E7910FE62609B /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; + buildConfigurationList = 2814D5F6B46466474CE6DD5CE093DDB4 /* Build configuration list for PBXAggregateTarget "GoogleIDFASupport" */; buildPhases = ( ); dependencies = ( ); - name = UMBarCodeScannerInterface; + name = GoogleIDFASupport; }; 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */ = { isa = PBXAggregateTarget; @@ -168,598 +159,617 @@ ); name = Crashlytics; }; - D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */ = { + AD8E174269DB70F077106CD3E4799822 /* UMImageLoaderInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 13B185864087F75D556AC109B2D70BF7 /* Build configuration list for PBXAggregateTarget "Fabric" */; + buildConfigurationList = 7F7FDC33629A1F45A656AEFE5F74180A /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; buildPhases = ( ); dependencies = ( ); - name = Fabric; + name = UMImageLoaderInterface; }; - D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */ = { + B93FC7FBB72DC12DA58AC12DAD1125E8 /* UMCameraInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 51C66BBB4BF416CDA4D6EB626E21DA79 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */; + buildConfigurationList = 72CEBDFC2EB6828CBAE65B250700632B /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMConstantsInterface; + name = UMCameraInterface; }; - E44123D8CC993126C80CB5CA0A56B610 /* UMCameraInterface */ = { + BA72812BDDB8AD27AC5EC609D0D5DAF3 /* UMBarCodeScannerInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = F4A856825F17260CB5FA72AEDBB3F01A /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */; + buildConfigurationList = CF0F0F2A858BD25613E3D295B7A6EAED /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMCameraInterface; + name = UMBarCodeScannerInterface; }; - E4BFA976B260562E97E7EFBDEFE87B72 /* UMFaceDetectorInterface */ = { + D00660683B62A9AB32408C607FA0CC9A /* UMTaskManagerInterface */ = { isa = PBXAggregateTarget; - buildConfigurationList = 837096F0BCD0B9C0404702D05158B979 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */; + buildConfigurationList = BE20EBE9B903C4CE185EA77974922A5B /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */; buildPhases = ( ); dependencies = ( ); - name = UMFaceDetectorInterface; + name = UMTaskManagerInterface; }; - F3FBABCAF7437339A36C2DB10E815361 /* UMImageLoaderInterface */ = { + D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */ = { isa = PBXAggregateTarget; - buildConfigurationList = 0D18ABC225F79D37B4189D36A905BD19 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */; + buildConfigurationList = 13B185864087F75D556AC109B2D70BF7 /* Build configuration list for PBXAggregateTarget "Fabric" */; buildPhases = ( ); dependencies = ( ); - name = UMImageLoaderInterface; + name = Fabric; + }; + EB92566E001FC40AD291F3CA77C5C2F4 /* UMSensorsInterface */ = { + isa = PBXAggregateTarget; + buildConfigurationList = 9EC6E826B42909E982A2B43548E66129 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */; + buildPhases = ( + ); + dependencies = ( + ); + name = UMSensorsInterface; }; /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 01B1C53DC9DD22B04EE64A9604F95EC7 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 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 */; }; + 02AD9CDEC93DFAC2C48E42123B215276 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 18243DD4D0C8AA2DCCE5655F82047778 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02DBA939CE679A68546E01F00A6027D3 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C48284CABF83F748FB75471EE6008D /* FIROptions.m */; }; - 02FF5D849A0664874439EF4BAC2A029C /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB1BBCD3F64FF8BA9250E80D83F2FCB0 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; - 03264F83F234779E6370451AC35D74C8 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 85ECBDA0D5A54747860558630B334966 /* RNImageCropPicker-dummy.m */; }; - 04E29AD06C09CF741C3CB9BA91A55CF4 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */; }; + 0382161F2C3D6D01A94B118C2295C126 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9888A3379C92194BD14FCA592E7445 /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 046AE5C35766A231B0774F3A69DEB696 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45678E0D230C8C88D1244A897B54EFAE /* react-native-orientation-locker-dummy.m */; }; + 047D0B25A834E49C911B7FF4C3212260 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F2B38EAD7C5B9C5D033EBF142E50F9 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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 = EFBB213CC8CC8403FF058D580BA97F8F /* EXContactsRequester.m */; }; - 0649814FCE8D1A872EEEE4760938BF7E /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E600AA6C09BA6929B6D372D7C26520 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 068F141A4D4F93685151DDA6BC5270D0 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BC270C6949CA0301290C3350566DBC8 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06DB97AA4D51ABEB05E39B082642D45B /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = B148D96844207800368341EFCC6C8CCF /* ImageCropPicker.m */; }; - 07CE9BC85D70CB14707EB0B39EEB2899 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */; }; 07F8D080E8BF101BCF8A70FCAEBE060F /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = B70DF0D054083CCB1DE9AC9B8D3926B0 /* FIRErrors.m */; }; - 08AA3599F2E941302E152C039AEEAA98 /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = DD473071A9887609014D13E28B403DEF /* 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 = BA47D24FCD6B487BD75C30DC007D3C67 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08F5859959A583AE0145C4DA8A6D7857 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.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 = EA72B3AB767DB5E52E88C1B5615C7698 /* EXCameraPermissionRequester.m */; }; - 0A22011D34F56D40C55D8124106DAAD3 /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDA59EFE420F19EB57185B0E573DB44 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A42B05646032C26BCD812C94D27B004 /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A2CA0453EB4FA3888A09328AFB0C15A /* 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"; }; }; + 099D04D422C7D37A83C0CB1C16A4437A /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A0A4705F5E9E9608ED13CCCA082AAF5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A0D73F18FB51763AE9C6751ACE6E9CB /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0AC85B4ED3A0B32B50063F4CB81A290E /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5E8E6109691A6353CB4DD1B46E0BA2 /* GULAppEnvironmentUtil.m */; }; + 0B0C9CDB3BB27422996599F53E7CFC09 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 979097B7DB27D7F475B7C0D8B2A4293B /* RNLocalize.m */; }; + 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CAC3B2203776ADA84BCAE41FBE0379F /* EXRemoteNotificationRequester.m */; }; + 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 = EF1C56D47C620750CB08FBB28D7188B0 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C3B7C372E8CCD83F33E490FFA6FC98E /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9623D4DB3EC29B6AD964E55373B73D /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F7BA665B98DC5E312B0A27CF309B94E /* 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, ); }; }; 0D2EC3F4873B4B4E7B1FC9F4CC2E22B9 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0A208B50BC7DD0CB91ED9CAC3066BE /* FIRInstanceIDLogger.m */; }; - 0D7F803B04F7A1EF34D708876C2E0B6D /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */; }; - 0FBC3916AAAFD9B34F65BFE3DDF349FE /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EB188F70D25ED4EA02965D82F9D3C6F /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FBF6BE462F9B1EDF1D24CF41C77BC94 /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FB9CAFB88544A1A5BA37E1E111A459 /* 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, ); }; }; + 0F0200D8E9C231DBA8137D0D27D76D2E /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E3E0741DD379C5285961D2E986BA173 /* RNCUIWebViewManager.m */; }; + 1095E8FC04BF5D67388CD27AF735EA00 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 668AE27C04386475A4F88728253D308A /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 115DFB3AA8F66D3A7139D37FEC05B270 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4838D77CAFA6A9F6153336C544453F /* YGNode.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, ); }; }; - 11DA689255A097509015A43A92607F00 /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D4CA1ACC838745B51F8A5752971E375 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12ACC94DE2E5700B6CCF85313043EEC5 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AEDEA44575054AF11CC2DF2BFCC63A9 /* UMAppDelegateWrapper.m */; }; + 120A4380D0839C6F5B6B68F7016C0670 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */; }; + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = A6F52032E24B113CC7408E54490FD8B1 /* 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, ); }; }; + 144625E3202F45C2D373617B09801847 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = E786A6183AA3E8AD0FA61A82EAF88AD4 /* UMReactNativeEventEmitter.m */; }; + 14990E19CC1F4AAB0A67F65B096306A2 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */; }; + 15C551AC7F38881525D0F642D73D1C3A /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 192B96F1963E264CCFEBC3534FC8A498 /* 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 = C85CB6ADE38F01EC5F5DB0556BD13636 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 16CBCCDFDB0D21E6C825EAEC1409161D /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */; }; - 16E7AD971A8C64747F7B1E5207EB28F0 /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7CEA0551C62CA64D926B6356BED0D9 /* 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 */; }; - 1741B97F01C40A8B14D79E0F5E2BDBD6 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */; }; - 178A8BC83DD960839E99C065B46D317C /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 90AFB4C0A5A07720C95E049B54BBE4E1 /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B4C9BC716FE23E66FB42B9D28EFE62 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B3ADED8F8DEFA1278C85FB3E95276401 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C4CFC4C94B4768CD357C6D07640A6DD4 /* EXCameraRollRequester.m */; }; 17E0E641870D2DF76133B0E009B014C4 /* Duration.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 630D96CF42C5D421F8148108C056654D /* Duration.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B521D5919FC19FAF174C6CA9AD9EEA5E /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18B1B61855C9B69D71746E578DE198CC /* Empty.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C878EFBC94ECAB6800F32C740907CE /* Empty.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 18F37AFD3B1AEF9DAC492DEC75617BAF /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6770DB80DA2AD6203EE6306E2E63A14F /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; - 1A6BB3682752BA9D73FB55FEFB1AB20D /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22293BA067850112F37BE2951B912138 /* signalhandler.cc */; }; + 19E5155555E497E6C27F66B0152E5AA4 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = E98EAEC6C9E8BE7CEAA1A7C5AC870A81 /* DeviceUID.m */; }; 1B5BCA7CE5BC8921E2C38DF493C52578 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B18FD72A3EB5A96181A5E65A20158C48 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BDA4C9EBF6F3C8771E64B209D570E12 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 243936168A9D9B27F417C64A9ED4C4DC /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B9046261DFEF117ACDC9B34FA8DEE06 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F4CC5D457DF57726C2D0A610CE2458E1 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CF6E74B068BEAAEAE16A9C6D0AF9473 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B0BA5CC740171CCC1DBF9EE7E4BE7C /* YGMacros.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 */; }; - 1E7F403014ACA53DDDFB3DEF4C6AA08C /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = FE6FB884AB86130B3FA235D6596916D9 /* EXCameraRollRequester.m */; }; + 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, ); }; }; - 1FE4B39F4357606FF23D1632FD3BD1FA /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E40CAE250D12558A438C99703D4DE29 /* UMModuleRegistry.m */; }; + 1FE81B5026FBEAFA138AD1D683AFC2B4 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; 20BA40C421853310C98499D9267451D0 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B254C6B665958AB2EE0FF41B55E87D9 /* GULNetworkURLSession.m */; }; - 20C667BDA560C5D5EE23F8A14D3BA8CE /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = 78B94A6F6A5136FD15BB423507DA9025 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20D75267ED04465BFD9BDCD9D5BC9C57 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E516B77930E058AFB80698F795EA6B3 /* RNCWKProcessPoolManager.m */; }; - 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, ); }; }; + 21E73BD751F54484D260A00C2EB08783 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A81349EA8C993B86CB44D28972236524 /* UMModuleRegistryAdapter.m */; }; 21FB802D68798B4FC220407A9B8493F8 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3898F03FA6F5B8EC91001D51A7ADCBF2 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 234AC94C983D2EEC4B16AD508709D19A /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D32FC7C50BDE68EA71A2490A288F9E /* UMReactNativeAdapter-dummy.m */; }; + 2383940FE81981D16147620523B0D57F /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B1BB4F779DE264BB7D5C4D952CA67323 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 23AE483DD4588EDF9F5589977687F69F /* FIRComponentContainerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = EB42AB4A769B8206971D52BD7228724B /* FIRComponentContainerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24BB91403D6BE1CF5A0B280D86C22B71 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F83929F84751E54C2AD0013142488C7 /* DeviceUID.m */; }; + 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = B438A1B35BDB2C17AED2E57973661B0B /* EXPermissions.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, ); }; }; + 2630845AB60716C700B2A172A8E7696E /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9605093DCDE576A19361A5CA0D9820C0 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CB4225592A21E0AD70BE53C1742166 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26EF38C55EA1EB9A2D377EB54A15F63B /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */; }; + 26F9F2B542B9BA73FB684BF67B874579 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */; }; + 27444D047FA570009E1F8AFB879D2C74 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BEFF173864C59EF1F9D356DE406B8E8 /* RNSScreen.m */; }; + 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, ); }; }; - 2A5606225C37333A52B2528E12FA7128 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CE041C035115C3D3122148A188752ECD /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28ED695F268AB094B59F5E8A02D83CBF /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28F6B70B530EF918D1026D647DED9DFB /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8443BF9243EF19D3F65759F6816464 /* UMReactFontManager.m */; }; + 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 21EAE7CAD827EAFB28F5AE9B36F0FF4D /* EXPermissions-dummy.m */; }; 2ABE0C837D40AAB898715DEBF573F8A0 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B4855FBDD7E6447B957F25EF568AE39 /* GPBDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 29CC28732B35F69DDD786CBEBEED2149 /* GPBDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B611DF3E61BCA6065DFB637C49C3DD1 /* GPBUnknownField_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD7D606C5FCF2524B1CA130FFB8982 /* GPBUnknownField_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C242328AE492F316131B4CAE16D735D /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B72F9F3DBB9E81D5287C9AC02D55CA49 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 08AF325435742A9E699C98E542107CE3 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C520E5225CE3BE7F6AADECA719E57AF /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFC645B36E2820CBD47C45BF1DFEE72 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C7098145D910ED0119861F24D099EC3 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 127F912C8B415191F86EC0E2753DA599 /* RNSplashScreen.m */; }; 2C982A909201E7FF49A1AE8148E479BC /* GULNetworkLoggerProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4217C74187711229B5945ADEDB0A9DA0 /* GULNetworkLoggerProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CCD6BFDFD2913A1A6B4980991813C87 /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A84ABCF81827C11478853B3910F5194E /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2CFE8515CA9EDB362003E8212767039E /* GPBRootObject.h in Headers */ = {isa = PBXBuildFile; fileRef = E7EBE525A09050866014CB02AF5B19BB /* GPBRootObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F106CA61FE17CF4D772B91EFEE5289D /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D11C20D8BC0B5A08C5034CEF1D6E126 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30D6FDCC52D608CFD7FA1FAE7409E462 /* Pods-RocketChatRN-dummy.m */; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4F67FD4DC2D7E5C9CDD5A175081EFC /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D822AD060B6E93CBF52A50B8AC79A16 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8840AD3D979C04E9B8B92AC953EF52 /* UMCore-dummy.m */; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CB74A35FB5355FB96FE7ABD109EB592C /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3CB5219994521549C3C9F959AC67E0 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ED483F4E25CA6CE0E707A19519A3932 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F663F4A45768143AA9425436399F4CC /* GPBDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2F81FAD66DB037E6F97EDB9CF61BA5A8 /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F20D7BC6AB73EF8EF68D083EFEB0B53 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 307CB65169E8986E7C907168C1FDDF66 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B313B64B4512DE9DC178F27D1423BF2 /* EXAppLoaderProvider-dummy.m */; }; + 2FF30E634BB47222F4A50057C7A69207 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A54C07D3A48A04612B210D4F1D8A25A /* UIImage+Resize.m */; }; + 30742F2855420CDF782A467A075F60CA /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B82F8D20049A45DA627A7CB9FBA8E2 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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 = 6F5E56B8A4FA4ECD1C271132B8EFA3D3 /* EXCalendarRequester.m */; }; - 3117C61FEC528E0EBBD0D7C45B9B97EA /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31633FC371A071149454AEAC01E9F010 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.m */; }; + 31CBD3568692203AD941D320448A0167 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F8FA667020A7E45792DEEFC49F0A2D /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BE66EBB9341C756D85769740C62D4745 /* 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 = 173CE0DAEBEE072BE0F75998A652E853 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33519CEB7A0FFF0BDB8526C28B0B5F42 /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = FB7B093624CAF527E69467636ABD689D /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 340C84373AAEB32501315E9FDB7B595D /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 347CCDA32A42CA2110C6032A54F3AD5E /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */; }; + 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, ); }; }; 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, ); }; }; 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, ); }; }; + 382C2E817A391B9EC0D468297AA33846 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */; }; 3830C1B857C5717C7DBC2CCC16306EA8 /* GPBExtensionRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF2CE3186BE637555516FB742354EB9 /* GPBExtensionRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38BCB127248925C97DA22D9ADD596A34 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 975D4AA90560D485466B4A51B23DE27F /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3962D48BD20C18F08BFC6CA224575675 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */; }; - 3972FE6095DF71F6091188C712E9A122 /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = A44E9728C8336B589B6557FFE9BEF50A /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 395BBE16B196FE3396B41FD00CA6BB60 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DECA38109375851DE9F22197028E797 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 3975A189814E8B3B79F9566A9FECC624 /* FieldMask.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D1AC57504505A93DD8D0EA687056CBB /* FieldMask.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3998B98BA57ED5413CD8AD8C3500DAFA /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 747393603D7AEA89114E7A5E2375A908 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A317AFB452DD05A3096E391D4FA8CC8 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E928C14C9CA406B961ECB44E8B747C57 /* react-native-document-picker-dummy.m */; }; + 3A8997132AEDB739413F8EABB8BD3EBD /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 79DE7B6B154816E6DCBE487BB67ED173 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AA53AF15F15E8753345353A0A837F0A /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */; }; 3B1FAF90703091E00ADB644BFFBFC2B2 /* Wrappers.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D813648EB603BAF163D4B61F2C5691 /* Wrappers.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3B2D9B7C6D3737A877068C4BF9F7CD4F /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 87792DF843702030DB1321212D0917D6 /* RNDocumentPicker.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, ); }; }; + 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 = 8084D3241A42B62A15B74F8C533C2B59 /* EXSystemBrightnessRequester.m */; }; + 3D5465DE2AED4D2553BB758CB24C2860 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62B8E9E1E88EB990E7AC76F3B6B38A71 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 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"; }; }; - 3DEFEA836C5504C6F943130B3E301D5A /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EB4DFF23413897BD9364E3F9AB0C676 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E5151D480C1069B6D43F1F4CC07AF74 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E12617144A23133BF6F8F4556C822FE /* logging.cc */; }; + 3E7118452B13CF336A4C2F4C65E0F6B2 /* RNRealmPath.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0D6215F452EBB171927DB6516893D0 /* RNRealmPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EE027B293A0E5D138231C2B2DCCB39F /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F7CD0EC5EA6EFA71775000D8683E5C3 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8126B6469CB961532063EC12B48E0E40 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4123AEB246F2BE1F3D2BC7F5456F6701 /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41C9EA6EEEE1D42DD14D721F1BF3DEBF /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 74FDDE699F10FFBCD13225E59BBCBCEE /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41F4969C4656FFFDCEFA09D9CE6D1E73 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBDF16A20F05203CC4DE3B15C23AF93 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 424BAC2369E5A6E1072264D09811FB53 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */; }; 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 = 12EDFC33FED7F5C4559BC237114B9556 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E5691D1FB00DDBB44E372B7794C0E5 /* 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, ); }; }; - 44FF34A9AA9EBBD28CF69AF588D4F729 /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = B1EFF76120AAB1004F51873408FEAE9C /* UMViewManagerAdapter.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"; }; }; - 488CDAE7D04BDDE829743A0A96D791E9 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 86EFE06820FB134DCDDF6963B5BD7B4D /* EXRemindersRequester.m */; }; - 49D5AE148EDE23C66E04C17A9DF3CD0E /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */; }; + 46AC4867CC0CAA171EFCA1441C26D3F8 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */; }; + 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 28507E4DF8A45DB17887372FAFC2467D /* EXCameraPermissionRequester.m */; }; + 47FA7FBF77B1213A486EDFD2800F77B8 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */; }; + 481EA95DDF7F93A39B23F9F3E52A4015 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AEF13B03A35A95FFBD0419401781BC /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48454372DE951FB7EC3677D15B3A171D /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */; }; + 484E3AE09965FB061282B10034884EA8 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F6EC030F63CDFB6FACCF29A7D9AFBC /* Orientation.m */; }; + 488532CE86BAD8E19B9A30A2C246BA1F /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05681DFC28945653595E17F4E93C9D56 /* RNDeviceInfo-dummy.m */; }; 4A91A6BCDAD59855BD5D82CE6550FCB8 /* GPBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4B36E488844F33246DD27858C65EDED5 /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD149B7F3A980771CA2BD526A41981A /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B988A007FCE03DC053E93F061AF221D /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC20F93FB89F173A1218882C6857514 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C132CE26DC00D614C9AB9663046FDBA /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39AD2C8AD9970E5E1DE289AE559FEE74 /* RNCWKWebView.m */; }; + 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, ); }; }; 4CB7E74A4643875B43BC4F7B400D0674 /* FIRInstanceIDTokenStore.m in Sources */ = {isa = PBXBuildFile; fileRef = CC02B9C0F1CEDC2E11D97AAFA570B60F /* FIRInstanceIDTokenStore.m */; }; - 4D5D82F1954C11BD3FD51638583AA8C8 /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F3E334BFDD099216BB584990FB612997 /* yoga-dummy.m */; }; + 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D2B7471E1DEFB9FCA40493371A110BE /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D6204372A459395461F7EF95EAA3E23 /* GPBExtensionRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4E0A2703083AF8211C29C24927EEA578 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F253D6BB700AA13956A26AA399F054C7 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; - 4E4C434AF0295132859806A02E412BAA /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C353E80F9B563C9F63C040A3F248A8A /* RNCUIWebView.m */; }; - 4EAC5E92EBFEC9D791FD90D0328F7984 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D52C028F8C644B23CEB9F1C566CECEB /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5061609B99240490B2DAC5E44E415119 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E73B7F00B095CD969E171249C320AC2 /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97117171D9D65E650FCB6E4EA37E2016 /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 509F8E74467ABEF4F6A5662CB44A300A /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */; }; + 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 626A07274D4EB6A940A6B2AF98F40A12 /* EXCalendarRequester.m */; }; + 51D3A0538BB2CAD9581798E78842DBFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51E9C1CE19E5F6374631FAF47DF80AEA /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */; }; 52A745CB46EF3FB68AF264176DED6FF6 /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */; }; 540742094C16FD82B3A81A633B812851 /* FIRInstanceIDAuthService.h in Headers */ = {isa = PBXBuildFile; fileRef = 620FB2E72885D3DB06D010AAE96C5880 /* FIRInstanceIDAuthService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5417751F797161B8F8A945B9169880B8 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6EB8ABBF4DBB75EEAE28A420846B0D /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; 547507E011EB4B4692B1C4AF1D7D9513 /* GTMSessionFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; 54936AE44632EEB56709C47BD7DA7C30 /* GPBArray.m in Sources */ = {isa = PBXBuildFile; fileRef = 677CA4BB009608055FD2DE2322188AD1 /* GPBArray.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 55D8DFF2A980C8550C02EB12F4FDB220 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 769B813EB142B15699A2D538E9103E94 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 56190CE5DD772C01F08022D6215F5298 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D37C4A1FC44FCFDA1CA04CE747500EC8 /* FIRInstanceIDTokenManager.m */; }; + 5626EEA5122A67231A1B681E76F8AFDA /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0488280DDC23C1BA9BDCE5B5B6A20B3A /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 563242DBDA35DDC44EF47B2F10248BB3 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 590169C3BE81E6FE9B67E19D5DCFC107 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 720498850107B645922F11A5B0E2CFA1 /* EXWebBrowser-dummy.m */; }; - 592F5C115D492157BAB057FC36627C58 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E4F3B48D12ED3C384C0B5209F7FE1369 /* EXLocationRequester.m */; }; + 5672F848FF959C3A5CCFA56FE0288E79 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = AC4EE92D0E6B236B9F7EBA7159334C44 /* UMAppDelegateWrapper.m */; }; + 580240B0622D11D27185586F62C95571 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D1D60641E2AA793C28DF28387CB301 /* RNLocalize-dummy.m */; }; + 58379115C0327DDFD8C31B29DCF1958F /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F78FB9CC8979A1A1AE3B1411E72676C /* UMNativeModulesProxy.m */; }; 5935A9A037670707EAD529898A61A424 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C306448DF95BDD2C33FF0845BE3EE3 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 598BF86C3CEAF5C934DBC6C26792EF94 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */; }; + 593A4EBA1173D25632E2A07FD8197686 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 594680F9B579D06A192B669A7B3CA711 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B8CC93F6B13EC4F6A6B5FE0D56939147 /* 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 = A16E1DE4BC1E32430BA199493DE6EB8C /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C25F0E8F29D70CD722B76C5B5E10385 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F331C2ABA1A0071B3E11294641BFB5E3 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 65132A743ADEE9456C90C121015ACA6A /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E8B52E9B563C153A19B4C1DC383D066 /* EXAppLoaderProvider-dummy.m */; }; 5C2ABB749C6E8BBEC7631087BFA535DD /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 031182114156D9FD17B5BA12E328E7E0 /* GULNetworkConstants.m */; }; + 5C30D2624E293669A20BA3D803D3C745 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */; }; 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 = 0AC8AADDB173108EE276EA0EB28D012B /* EXConstants.m */; }; - 5DF5101487DF8545DD8F50F68AEDAF45 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 299100DCF93023EF88279144D44979D4 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EB91821D47776A42C401D05BB09BEF9 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6047C84A410D1A5644CB285592DDA5BE /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 80EB1576F23DD23C8D061B78F428A845 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F33A88AEB4882D9AB727CFB15FB1597 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B48203EA174ED2282FC881C38A2BA481 /* de.lproj */; }; + 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, ); }; }; - 61DB05B676737659776E885C28CE048A /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30D6FDCC52D608CFD7FA1FAE7409E462 /* Pods-RocketChatRN-dummy.m */; }; 6202F0EEEFCB1ABE4656F4975FF294BC /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */; }; - 6262BBFAEBD554FF9B9CB958D38B9AD5 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5438366E2EE31FC03C47D38F45877FDD /* EXSystemBrightnessRequester.m */; }; - 62825760B895542D30194A59B53D82EA /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = BE50045174443690244903BDE53B9ED7 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6246D907AD638D1DCD1A10AA988321F9 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = EECB4F3A81F1FB4F694A03F1EDE10895 /* RNSScreenContainer.m */; }; + 625B3FBE5DB5D7FFA8E6A04E481B6A86 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD723597BC7E878A613B6CBC61CDB542 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 62F5773429846182D47E299F05F56B8B /* SourceContext.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 61CE22C50D775F0923600623F3B4E3B7 /* SourceContext.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 631A9753D07F8F083584F2C7FF894B0A /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC8BB9A6F76EAD923DEB5A928B25C58 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 633F2782EF0F6487FDEDE505EF8DF73E /* FIRInstanceIDAuthKeyChain.h in Headers */ = {isa = PBXBuildFile; fileRef = 52413708A751A44C4BBEC6FA2ED9CCE8 /* FIRInstanceIDAuthKeyChain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 634166859E266DFB3F47EFEA72FD7880 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D082C0F20D0A95DC453DC8FEAE62DD1F /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F2FAE6500D04ED6F1312A01D565447 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64DC54D37099AD0EE355E5B55B892709 /* FieldMask.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE4FA8468D09611489BAA01EE305FB9 /* FieldMask.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65AB95B50A3F253E56767FC717190684 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC93B4AE1BC99FC3489FB009672CEBC9 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + 661C4FBAC64C5BC556613D4080641615 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1776896CFB2DB7D53F6870D097871B60 /* UMReactNativeAdapter.m */; }; 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, ); }; }; + 6706524B56ACFDA2540AD65DE183A4B5 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = A24F0D17F9FBDCCCEC4C22FD731397F3 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68A30E4A38A40F3C00132E825FFB1295 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = B7076D6BE9B38FC1611B4AF166C11FB5 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 698D396178A8C90E5E6D03AA69FE4EB1 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4682CCF683C4BAD900558FDA6C3A7A7F /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69D6B7DE938FAE6E0B771D303C40A4B9 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3E9EC6AE49276FB46E379ACFB5F75D /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ADF36D4F87995F68DAE551D7C4974E6 /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */; }; - 6B31930D61CE82588E6115C8E41479CA /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C4AC4B216D16F6CC0E852D0C116EDBF3 /* EXFileSystemLocalFileHandler.m */; }; - 6CB8A47FF17CCE72FF0EE0B5EBBBA2CA /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14932E74E710E29AFB2ABDDFFA659B8B /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 6D3913895B99C9CA1AC7B01A3FDB3E40 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F679BDFCED3A61C87F3B0D401DDD7B7 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EE78D91771E29D2D7E741FCA2F1A07B /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 315FF43D145106CD4B9220A41A039233 /* 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"; }; }; - 6F86591135242AEE9AC8189FCFB65897 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C7F5D95DD914137BF94D76493C3FEF /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 831929E581515A1F83140528906C2E4D /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4191361051666A0D9CF54E7E9F6E10B5 /* EXConstantsService.m */; }; 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 */; }; - 708B5E67847F332FFC954B77D1526F4B /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = A60B58755D7FAB812E271D993BDB0C3F /* EXAudioRecordingPermissionRequester.m */; }; + 708AF60B6E91F618D72939CE739B1B37 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E70EDE8E5C9FFEB42682E1C0370C5D02 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 709AE21BF5777B1E8A4232861440024F /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70FC943F496D3240C9137A4DE738E07E /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */; }; - 7182576D273881C060248D51100E0B44 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 6644F7FB5AC5C877BE5D7918BA93966F /* RNLocalize.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 */; }; - 739E77E2361476B8217F0421D35BBFE0 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */; }; - 741BE50BA5F881A3983CB7F192225344 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = FC8D2CBB7F3F172606AC10D2C078B8A8 /* EXDownloadDelegate.m */; }; - 74FF7CB7C93351A8D717E704F9059414 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = A222360C7D302A52715BD8912EACAC0E /* UIImage+Resize.m */; }; - 757F5F4560089A27289BFC45B8E28881 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E123B7DA0F4AC93E2691CB84EA8EB3F /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E7F0058442084B5BFB38165037D8B848 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75F990944B9DC6C6D5B1716536437CA3 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.m */; }; - 761010BA374317F8FF28DA5C6CAFF92A /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7B9468BECC20704FBD196FC4CC5073 /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 761A99105ACF81FBABD996E0599C87F1 /* FIRInstanceIDTokenOperation+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BAB0B55F0D83C13F4A93E9693F1E3CC0 /* FIRInstanceIDTokenOperation+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 764C31AFF3F81F08B6C5E4053CE2A8C5 /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EAC50A0BA303896C5DB958A11879863 /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 772126D4771EAFD51E5E12C9FDBE4E87 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75AA52977A1E1150C14665F8A45F2C38 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 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 = FF91AAEC8781F422ABD8F2E7320735F8 /* 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 = C7AB6A18322B8BF20E815C4D88D0C3F3 /* EXAudioRecordingPermissionRequester.m */; }; 78F0EDF42B5AC108BCFD1344336F1A80 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 790E7703319FCB705DD53445D4F20ECA /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C31771B83CA2DF927622094B5ECBECE /* UMReactFontManager.m */; }; - 7966A7B37EDE4A16158C6E51151957D3 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = CA9307290ECE086A92CB72734CD3A2DC /* UMSingletonModule.m */; }; 7A0993D795B2B5412F5FC95EC6D0ECCD /* GPBUnknownField.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AF09D953D7D9747C10A9C2DD38B9997 /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = ED6CC3FCE7794BBB5DDA876375C7018D /* UMViewManagerAdapterClassesRegistry.m */; }; 7AF3EBDE1C484B8530345B0872619C5C /* GULObjectSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BE5382F9577383A8D12A9449D0979AB /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BF3C30444FA62FAE5D7474ADB477551 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = E8DE43DFD7CC3A804076BF1825A63034 /* QBCheckmarkView.m */; }; + 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 */; }; - 7DC7D7C5C0B8A2A90FCB0E2DF710E02B /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = E68AFADE1BAA81DD7BE1F0E3301C7D9B /* Compression.m */; }; - 7F27DC6073A61FD6CE1D3A51E303BB1F /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B8D0C94F9B19E757130BCF491DBB132 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F7874E65AED2A890EE014C9C7D58F1D /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D17F0ED308D3AC97B4AE80395628A3C /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D281363BAC67A31CA84C0D3423EEE4B8 /* ImageCropPicker.m */; }; + 7F2D0829939B0940DDD1C8400B979C8E /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */; }; 7FC13E30F958F04ED3CD72295E97F1C3 /* GPBDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FF3C3998D7CF5C363AC1CAA696B6162 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 30128AD1F92F2F61768C2C4FE2D2BB6A /* UMLogManager.m */; }; + 7FD38A141A665260CBDBC2A484CEB790 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E7CA4B021924C03E3DD9695981FE8001 /* react-native-splash-screen-dummy.m */; }; + 80C4F646F8963D04605290ED96E3BB1A /* react-native-realm-path-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8FB2662CBAA57FEA849FBEF17542D6D /* react-native-realm-path-dummy.m */; }; 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, ); }; }; - 82B5B05123C3A6BC9375B8259AB0EEDC /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B2D72D412B419A09EEE2219636D0D5 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82C5864995854D27F45A00C26263D7AC /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FD6E1A0E841DFF8561CAB2B00C6D3768 /* YGConfig.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 */; }; + 82AB5187CB86FEA3C1FDCF99D84917AC /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = F13A1475E182AC393417BA122E41795B /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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"; }; }; - 8590DA3DB23E0F53A30DB88B37031BBE /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 23242CF9C7621145831D05D877197437 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85B1BA370D18F6377A3D700A87F52D38 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1688EE83E950851DBD776306319028FB /* utilities.cc */; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2DF0B466309B5A279FBA1DC687B6B8 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 857BE9AE3B5B0BBBA8EF4C47C677EE2A /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */; }; 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, ); }; }; - 87223E1BEAB415F791755EBF9E002C66 /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */; }; - 87CB8A9C0258B48B9436BEFBFB936653 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E61B38198D97CA86F12CD6B90CADBD /* RNLocalize-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 = 845309D152A4F00257529AA2AB7FB409 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86A8C2CC47B3F2D44AE6CB5D761C63EC /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 34DFAF2D1DED544692E495C783EF7E82 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 888A102CD6AD2792AEF9939A05FA723D /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 16DC3363E3A5DD93919EA65165E1DD2D /* FIRInstanceIDKeyPairUtilities.m */; }; - 89A91379BA936471ABD92062A42FE14C /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 803B96165F394F194ED4A3E4BF76DF0D /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 89F3CC088617A30811815DFAC3D94D0F /* Any.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DBB9B2B059385BF7CBC7C10F071CC9 /* Any.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A14297183A4EF597DBF42B4758709AA /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 711FC9F5BA0579633D01BBDB5A3A0427 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 8A6FD68E9F2F1C24520DE69BDA7A2FAE /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = B33F426AF2AB9720B4E0E13120126592 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A78F6525B0B706FB3CAF33DDA6A023A /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA6E574AEF8F6081D147F775669702E /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8DF976B1ABA03165E5872A8D69DAE3 /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */; }; - 8ABB9154AF58BEE92ACA7C4E8BB9795B /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 4881EDA209005C3F783C840139BBD1A6 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A7A457B08A6B8FE5940709A20ADA564 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CDCC731A2FBCA55937C58A6A91FE275 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 8BAE0B8DA8BF812E1ABB2ADA4C3CA091 /* GULSwizzledObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */; }; - 8BB5822FD7CF2A2291B737D33B151A92 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9766F4DFDC2277FF8DADAFC8AD817E52 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 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 = AD27E67F73D4E077F52AC2E282064C9E /* EXFileSystem.m */; }; + 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = B9D4D551CADFCBE08BCDBCEE6BF55E70 /* EXContactsRequester.m */; }; + 8CCE0C74913F36C96D7F761410CE6817 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = DA364DC8821E6F2F3525D9A1AD78D002 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 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, ); }; }; + 8E72A08495A84744B8F6B5B7E4FA2451 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */; }; + 8EA8EB6D6C9C3ED99D58F36BE69D85E1 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = F32735F3F9AEE7E85996C828D31C7B09 /* 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"; }; }; 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 */; }; - 91C88BBB4D58DE4F230D9B75482C1AF8 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 81C785106794DB64CA7A52E51AAE87CA /* UMCore-dummy.m */; }; - 9213722E8B9960FFB8C9392015DC916C /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78580B2EA769E5719AC6539110DD72A6 /* react-native-splash-screen-dummy.m */; }; + 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7959FA3C776756C79684510CE9547B3A /* 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 = 123CA8DD3E6A3BCB35A0A845F17BF863 /* 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"; }; }; - 9512EA9BB55A06CC797DFC909248FA1E /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */; }; + 9456AAC60228BC704FC87F9A339482A2 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCBB427CB227193DA6236812D3D8A754 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 9524BFAAAE6E5588F9615CEEFFAB8F74 /* Protobuf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CECDA20FE3432D2A0FD84D45349110D /* Protobuf-dummy.m */; }; 956F8C804CAD6678531E8A42D3C7BAAB /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FEB15F0E803D8293239AB02DA1B66EA /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95E8C384B4BE0633CB4B67F322B3D446 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95F0126305351DD05D7AA074E2F2AF24 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96617F911787BA297A9AD3981EC8FE9E /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F871BC8A0BBB14B35CBB31B9435A63CB /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 96693844C50716001E11A1A1B0FAB3F3 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4100B596546C8BD05B79F73B27C79A /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 970B820D4216EFF678B82E8281F53B05 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = C4B2036BCF96FCF939B416E5F67E606B /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 971A797D1573C90846EC7847F3529E49 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = BC370F6861569AC8CBE42B168DCC0469 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97693B12E1DCDCEDA3A52AE017B83882 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = CD051A6C05555AE76F912D32A1CEADC3 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99FCA10852C44775B1FC3B6004D56A1D /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EA72BAE9DCE7B0F825FD4F5284EF2415 /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96C34F4DCC151882C125476F326B30BE /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7392E40D706A1072611B4CFFF50E1D2E /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96CE3864AB8632CB9267895611BDEEE0 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD770217FE1351E2C0E91F27F6BF098 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FD686C41E663615A658BF61C0B8576 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 663D14443F7FD0802F2D812B2153AEAB /* UMExportedModule.m */; }; + 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DC96135AC6C0009BC8F36D80DF7A35B7 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97E341A41481C3979C5728D79249CBB8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F531AC7EF738B44C66AB3A306585BD7 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 98DFFF21AB4C960BBEA949E6C225EA88 /* RNRealmPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 7638DC17BC0135744115C99E36911C9A /* RNRealmPath.m */; }; 9AE90D1360625450CC828AB283D9C337 /* GPBWellKnownTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9632C230C1B82662D3DAB3FAF6426F38 /* GPBWellKnownTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B2736325EE8D42AD7C71E2015BE415E /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 76F4D8494445132FD057CF9C8E73B02E /* RNCUIWebView.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"; }; }; + 9BCC719F1610955DDC1E8AE9211F5425 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3228898EAB4614681F1A663586CE8FF3 /* RNCWKProcessPoolManager.m */; }; + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EF4BDF5F4EADF81300A71703E6CE8DC6 /* EXHapticsModule.m */; }; 9C256455B0ED145A471E33181813B7D2 /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D3100ACF474922057D60AEFC59E8DBD /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 85FE911EB001F8E28B02C19EF12D70EA /* EXPermissions.m */; }; + 9CDD2B86B2F780B03A1FEF006BA41EB8 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DB428AA527C1B3B1A608160B85AA511 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FB035AD0A1082098738AB35D89417EB /* UMViewManagerAdapter.m */; }; + 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, ); }; }; - 9F52068CBD6B264524ACC79811E24A3B /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7093BA321ABCDCB1B75EC0B164ED3A33 /* react-native-document-picker-dummy.m */; }; - 9F777CBD04816F19CF33C734C125DC1A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 599A4418AF75B9750AABACF579E38163 /* fast-dtoa.cc */; }; + 9F33DF87C2E0C16FC679196B9784809D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 4563015111A319DAA36733D21E4E32A4 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FAFB2E4473C23CE1CD770D0BFE27CF7 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */; }; + 9FE61DB5E1DAF7047C2FA52A52E22450 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */; }; + A026F0A9355450451E1558F3A87AABEC /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 291D5E4B3399B7FBF6C658E3D6B3EFF0 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; A060BA186820986AE60DFEAEB1C6AA8F /* FIRInstanceIDURLQueryItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BAC49632693E881A740E4F2693EE2EB /* FIRInstanceIDURLQueryItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0C17C0FA5F6A0061BE501E09B88BE60 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 2109BD650E42AB4E87AC3D378D671C14 /* Yoga.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"; }; }; - A3CDE5B1F040AC112D6432C8C6D56A9A /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = E1952A09E2894541F6A27C80F531DF4B /* UMNativeModulesProxy.m */; }; + A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B2AB6DCABD12BA606D58C2E2683864 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D920F18086083E959BEDE1A89508580F /* 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"; }; }; - A449452709AA455CD3EBC541C4598B71 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7136EB85F7AC91B8D3274ABB7F1255F1 /* react-native-orientation-locker-dummy.m */; }; - A5C2C9A87ABEA51968F34749801E3E19 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D01BFFEAAF5F84BECFB62B1D3A7747B /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3DA13F2F5DB418C2D8DDAC342D63120 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + A59EE24E45C9D907CD700EB242C98360 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */; }; 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, ); }; }; + A686F787786DACEB84FABB108904556B /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = C64056D32F066C90251D8F1E56AB1B12 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; A68D95130278786381DA115EA4E9B527 /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ECB7FF032D4794DA9840A5670C932BB /* NSError+FIRInstanceID.m */; }; + A6CA29B0DA323A8DF688591BCFA181EF /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6B036858181751E543BD79C7B405FF3 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A6EA2CE9DE236725BBB21F19EC00340C /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C5618AAECC011C23975CAD363216A5 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7CB4E7AFE7FA70A8C23C368BA15638E /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */; }; - A8A950AC4D68AD848DFAA86FD0CAA73D /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 49558810BBAB8699A2EE7BEEE87EBFDF /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8D5113CF95A396D35F179C25A3E27EA /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CDA4147144E021ACD13C42D1FFCB4C7 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9BEF0B50915D2B3AC8BC1A890E4ADF1 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = B38860BD9978BE583CC3D3DA830C9C52 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9DA59F953FCF4BCD610E5E70342169A /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB1D4150718C4CAFA487244471DCB74 /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA46AEB8799E314092D94CBB27673B52 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */; }; + A882E119717C37376298AAD257A6A96B /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = C9761CD65CD28E48AD431D2CADE56D77 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF59FB65959FAC943014917FBFFF90D /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8CA106C04C162B078C1AAE3F0AA5F8C /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */; }; + AA765915F7DBEE9C811DCD04B3B89255 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13410CAFB030BCA55ABD16F4561D78BD /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; + AB938B4ED33744020BF7430D7496E852 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 8738A9EE57BD71142B12D552AF59C2CF /* RNLocalize.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, ); }; }; - AC4F473510F2654C2CB7AA7D69DC7C5D /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */; }; - AD3B75C8BF214E7A0C9ABA02CA9A544C /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 058F7DB64918C28A7F943D22CF1CD899 /* RNCUIWebViewManager.m */; }; + AD3B4AED29358109EE7F17CC861D9F50 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E867CAB95A604A5DB227E6F017F04B5 /* RNDeviceInfo.m */; }; 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, ); }; }; - AFBF4BC2D81FB77F344D6382753F6A9F /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = F890309580FDDC90BA263056E3487AD3 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73445129AC7FB86EE46F20FB12E729DF /* EXHaptics-dummy.m */; }; + AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5150A9358391484C756E8161910D3C18 /* EXRemindersRequester.m */; }; B00378500E34E873F4275738E8D383F4 /* GPBRootObject_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0058808A2C8B7E7B45022E30EA79AAE /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */; }; + B01BF0DB4F2C13598BF21D8BAF63FA02 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 480C81E4CEDE746C6B881C6D572D92CE /* 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, ); }; }; - B15D078E71F9E5A59DE1F881534FAAA2 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 631C115D4AF9B7C483665463DD5BE381 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1B699973163D0FEBD6DB8324533A332 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */; }; + B1A69A478245CB266F422F9139AEACAA /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 22293BA067850112F37BE2951B912138 /* signalhandler.cc */; }; + B1D15B674E231785448AA95939AE9463 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D28C2718DE550E5EFCC4D6C2A317CD /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3445D4E4EC4058050396D3FA2BEAAD7 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 01667AE46D9B0857D288D0322E9859D5 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 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, ); }; }; - B416C7DC6B6F9701C2FB6281F6E44F7A /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D4069D88BE17E68858A65296FAF8E7E8 /* RNCWKWebViewManager.m */; }; + B3C1245860FADFEE2257C5D046A50939 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.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 = 0F5DA0C2AD93FA52A0FCA4BD5815F600 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5342DD8C99B6EAA57FAB6C09E94E38A /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */; }; - B6367A2D6515DCE4371879DC2D88A204 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = C8834CDA6331099049A78425491B96AF /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4FAAC2A1A9373B7A90BB2EB37CA1FDA /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A63FC16745F04B69799DFC4C0D7A9D5 /* RNCUIWebView.m */; }; + B69F26B8E55FCEF87C05C36F2B8BE38A /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2956C0FE9045D44B70E5AE4C42F3FC5D /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6C35154DA281099C1AADEA1956E5EBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 026462320DF0A64CDFA59DC46E5A77D8 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B6CE63A97BACE41020A26A9FBDA65E4E /* GPBDescriptor_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B740CD3D7FA44A84EA500186E1CF311D /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = D4F4EC2A8D822EE8300DB74699A252AF /* UMViewManagerAdapter.m */; }; B7D9F8D1971A3797151BCBDF74824208 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */; }; - B81C681930D090CFCEE3C434C1EEB542 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B86C14FC91833D8EA31EEC85A9483435 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C892191B4EB8D916A0C1A0B462F9EE54 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA6A227781EB55F4FB382A99E46E469B /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = B48203EA174ED2282FC881C38A2BA481 /* de.lproj */; }; + B804FC8AD528D429E085A9B52631B33D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */; }; + B805785A2E43EA6DED4169A6012303F4 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C3788D21BBB311D01466980579177A4C /* RNDocumentPicker.m */; }; + B9A2DCD11C948D6821607F5584A88486 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF6882D2CD8EB544E3926B8B901B14 /* RNImageCropPicker-dummy.m */; }; BA72121160AF58E9BB0CDDE7F3A8C286 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59580373A446659C07B9D6B12E8B769F /* FIRInstanceIDTokenInfo.m */; }; - BB733B5DFABEB7639CF560E3A2B5FD6C /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8DC71E80789579B7B82D641052AE38 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB8CE023847F33673B684E7D212EDD03 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACB85CC0E2E5117E5F45DDD1EDC438EE /* react-native-webview-dummy.m */; }; + BACC7B01572F7FD2BF250AA2DF3A4E06 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */; }; + BACF4FF0242F8A8197F61D49824B72FB /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */; }; + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1585F3DBD498E2CC26B4A4E578ED4B /* EXWebBrowser-dummy.m */; }; BCFBA8C90FCC43DF9D66551A9D371971 /* GPBCodedInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + BDDA9126BB85AE326C6FD44DF4ABF115 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A519FB84482B64E2D65FA64E361C2956 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 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 */; }; BF0CDE313B0F3BE180D52BAED9F06B1E /* GPBProtocolBuffers_RuntimeSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF9316C844399A1FE5D153EA6C1C4912 /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = D03060A6A2D988F8522CDE5873BAEA82 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFD147ED924833657BDB46E2BBA9BBCF /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FDAE339B7B4EAE8669C929838EE87D8 /* UMViewManagerAdapterClassesRegistry.m */; }; BFD2F7E2724939BBE6DA011936B8A9E1 /* Timestamp.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EE348660F8A8DDAABFA36434FE1DCE /* Timestamp.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - C01CA5C2FEA36F50AF0787C97DD0A059 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */; }; + BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C541176C1A2500C5AF3259B71245AD3C /* EXConstants.m */; }; + C02FC28F0E098264F74DF4442DEC7802 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; + C08E4C8138813525A78FDCB6B3E5CB29 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E35DF6C0874AF4CA50F6D2C650272A0 /* YGConfig.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 = A66D191B9E06EE0DF4F24805F5AEE324 /* EXFileSystem-dummy.m */; }; - C2C7D231CBBD8A092B7D2C522F8C1C5C /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */; }; + C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D15A8771D5B1C244A1F3667C1D5B108 /* 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, ); }; }; - C3F8F8EE70554E1ECD56A50A3486000E /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AECD67ABA483DBB6206FCA44CEC7F51 /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2DD92B1A0CD3C57411E1C9663446CF6 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */; }; + C3B802C60B33C82EB0022FE3E299A72B /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20630B5E48C7CB69BF91D7D7F265396B /* vlog_is_on.cc */; }; + C4024044D07F6FCB65B481E2909B8666 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */; }; C41623E483400C6D0EF9B5B180977DED /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C45CDD1534900153D1403CF4BF988397 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C56138312E4048C515B782FB8E5A3C9E /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = F1DCD33E1F1BCCC51B2DD96EA679DE62 /* UMReactNativeAdapter.m */; }; + C4676DCAC70454E941499297FC775526 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 751B6FB6DE9B5B296B0C4CF7E0F625C9 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C47137D6FE0E5C9E31C8EF10D27F24D9 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.m */; }; C5669D28F2C424FBD3C87257F1AFE0B8 /* GULLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4F9A756C618643123B7CD818A7BB8E /* GULLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C600DDE3E3F83087492AA68DCB37DDCF /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C62F5B82673DD842849F296E580F3190 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.m */; }; C639CAD215412925EED667B28F574670 /* FIRComponentType.h in Headers */ = {isa = PBXBuildFile; fileRef = C835B8E4E53C0605BC7F8BA70CCB892F /* FIRComponentType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C63ACD8218A2D9E10EE682934D0F4CFC /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = ED4F75CC2FE863829739DB722A4C1976 /* 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, ); }; }; - C7791EC8A9A197C5FCCDA9003C69155F /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2961A7EAACE11AE4FEA4B6801DB891C8 /* RNSScreenContainer.m */; }; - C78365E2347A577353B1F935C89C48E3 /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B81C6026A986ABCA75AEE570FFD353C /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C713862BFB8BD8F419D0523DD218EFF4 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72CBE19DF375F16284A08576395BBD58 /* RNScreens-dummy.m */; }; + C723D7CB5D94CC24EFBBB9ED58CAE0A3 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B0F7B8927FE9B5F5E66A0FE7925FD7F6 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C744F2212F1B5B7C1491FBC1A5B84BC3 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2562A926A6486480497E1D7816A3BBEE /* YGStyle.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, ); }; }; + C7C4A0F9D763E48C3D873DDFD24FB3E9 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.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 */; }; - C8E9ACDF5779C8F1FFDAF8F922DF1AA6 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45D9C72B4E997D71B1919CDEF7327C2E /* RNScreens-dummy.m */; }; - C921A97BE4DFFC75AA0315E19BEDD74D /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */; }; - C97C080557D1C0D7F31948D60F7A1F51 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 611DD4ECC401BC168294B09940A8F9A1 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9DBB2FDFF186442599314D1ED853E4E /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C9755B93FBE6CDE9A073BD353CDDF02 /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8E9E47E7AF7A78CADE01237BF02B053 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */; }; + C9AED5204E9C1D908636C7AB8DC0A32C /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E57DE0F9750DAFB7CADB3C4AB1E7DA3 /* UMReactNativeAdapter-dummy.m */; }; 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, ); }; }; - CA91BCDB91EF4F9CCBA4F6DB07C5B3FA /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */; }; 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 */; }; - CB6B2DB3E82ACE6F9833CDB278F542BD /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = C3389D6CFB2B4F9B84187B78361B9178 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; CB74F65C279D0D01C5E2AB702DBEFFA7 /* FirebaseInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 35078A0D30C07DC0E51293BAB4B7A48F /* FirebaseInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC1F690FF76AE0E45622809281DB2B49 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 8512B89FFB306BDD704EF9CC16EB41FA /* UMExportedModule.m */; }; + CBF7BD62C1FC8137737176A02F10E0A4 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C4062FEB153BD14C0A05654C630FEFE4 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 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 = 0A36E010B972E4EDBAEE04B984A3E34C /* EXHapticsModule.m */; }; CD7CB53B7D223BBC381160BA73F796ED /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */; }; - CDBC59077AD1D33760F3265595534A61 /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F1724CF420D8B036660ABBF26E45A70 /* EXConstantsService.m */; }; - CE7867F4A1D925B90477DAFC4159A3E5 /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = B74B893D0180C0E463704D5CC8152049 /* RNCWKWebView.m */; }; + CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D45039C4DA76049EBA7DE8211EE7C1 /* EXReactNativeUserNotificationCenterProxy.m */; }; + CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 461925FC1802935011DA256790C0BF92 /* EXAppLoaderProvider.m */; }; CEC8B820873F8BAD5C806EFF198D194F /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */; }; - CF115387312D6FA99DE9939069FF05AE /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */; }; - D0D60DE080C6E14799B2BE60EAA2D6CC /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF01A7DD41A80BF04211064007C07813 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24354A4F330C03ED81FFBBC1B72C3024 /* RNCWKWebViewManager.m */; }; + D03EA48CEBE28E2BA6124B3F50BA2ABE /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AB591CB4D6D75D827D78807CF54BCD1 /* yoga-dummy.m */; }; D2E942FFD868D20C41660AD7771AF1A5 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3F17A2332A6569967162E0CEE656426 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D140AEBF119C2B4790F452A2EB892C /* UMReactLogHandler.m */; }; - D4096560F497EB181944847636505199 /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4CD33481457050508DCFB2F1183BE8B /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C4A54363357B1A902A650261B387187 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4D6A75FC0A089D60A71FD950BB93868 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D360241DA04A5E9CE9229DBACABC8F7B /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D365350A1B2CFDAF96ADE09BD5D6CC8F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AD5147A7096B8945A3779108CCF2878 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E82EBDC8A490B30236C3D15AB2331BA1 /* 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 */; }; D60F4B966B0BCA71E7F8EFDF45B85A56 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A340F0B85A7A004E4716C810327DCCF2 /* FIRAnalyticsConfiguration.m */; }; - D64CE04FE3D59383F0C0243DD2C4443B /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 56A2B108273B063A5211EA094F4ED4C0 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6C20DCB29B6BFF5E545D724066718D0 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6932D9FB82CFAB525C43AE9001B29F9 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4640543A95B5F61A4FAD8B3565DBE649 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6D21D3FAA227E859502F142FFF7CEF7 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D76793AAE2366882DD0947572947FCA1 /* UMReactLogHandler.m */; }; + D712995844A0D90F73F6CADE63E65849 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 9957009B867CBC0D49D5BFAD7CF27811 /* UMModuleRegistry.m */; }; D746976AE8464DBFF5D281F2906E21B0 /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.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 = 880577C8C7955762EA8DE99A69E4509E /* UMModuleRegistryProvider.m */; }; - DA9405922A91004A0BF6AF5F3574BE81 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CE0884658E15E94595AE0347951FC28 /* 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, ); }; }; + DB7F6A8D4FC7B17A47154065C5600C10 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = F96AC914BC20FD8AFD2A10879BEFF079 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC4D736295104B8DE7F713B25C782C58 /* GPBCodedInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = D08A5D686D77F6A0E33952D2AD2EA06C /* GPBCodedInputStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCA64B36514C5F646F8997BB80E2D026 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE22255B85ED5C17E8432D9DD5E4591A /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 363DD865BA3FBB02C98DA6EC7F0A71E8 /* EXRemoteNotificationRequester.m */; }; - DEBDC71B78F63208A5178DBADA1E8DBA /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 53BCFBEF05418708554115DD5BCF0E19 /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC93CD87AE5234A0FFCC3DF3E75DF4D2 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEC83087353AD0FBD02A519C55BAAF7A /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DECFC95C86D393B452CD612C5232AB73 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A33F9114A7729630DA1F569E56E13B /* UMViewManager.m */; }; DF02A2098984DB92914CE657E8FEE6A4 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */; }; - DF224277E1F9E9EE830F5A92DDB280B6 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 8559A6CFC5454CD51A4671CC5F6A260C /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFBDFF433059306D0E80770512F15C74 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = EA11C18590A6237A6316164F0B9E6BD6 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; DFC5E47A627B01975364AB9CFC2A549E /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; E03E8A327381935C6AB749A319E3923E /* GPBDictionary_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3877D8495364FD75AC548B8B0F16D0A7 /* GPBDictionary_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E098598F1DF94163B7B16498CC201847 /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E23D0F82C3E76392DBCDF812FC20E0EE /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4F62785625294E1BF583BB105A4005 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E24C96A45214932F5813325CD7FAD029 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 701975F31F03CA2F495B52D2BEEBCDC3 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E2E07878F80C3CA380F84AF10840308B /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 5956F9FB9211682296BEF07D54D91AA9 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30636799D2363B05D48F859511864CB /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */; }; - E41EA8387DD032D55443223065DF058A /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E1F25D51BE521DF18295C571C993CD4 /* EXUserNotificationRequester.m */; }; - E49A7CE7BC62D1B1531953AD36C19774 /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 49387096FA2AFBB197960FD0CBD2191B /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5C78C3F9E84B81F5C85D96A0DFB1C16 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = F19798BC8DEF7CE0D713F55635AFABA7 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5F1170EDE47B6CB9995A25E4E179E1A /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D080A350E097522C94AF9596F5E9517 /* UMReactNativeEventEmitter.m */; }; - E6CCC620483B29E129E7AE248BB26224 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = BE32F5E8B3854FAADFE5CB5C144BEAFD /* UMModuleRegistryAdapter.m */; }; + E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AA48971D1167CDAFD4D0A3C655D819 /* EXDownloadDelegate.m */; }; + E1A5D28034F1E75F82E9FAD6D7FD4885 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C600FE6F8F95748E3897D028F4246E /* UMSingletonModule.m */; }; + E1E102E0E08987DCC15BBB7A2FE50E1F /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 461925347A30AE6FAE3CD7B318D4600B /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E34F577DE3C9965499AC5F9986DD356D /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */; }; + E35CE23A614A29D4FF359AB5D2D202CE /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EC99704FED67D4EE92F9886C9515F602 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3A43BC61EF23E803811938C47263A10 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD714FE59015A6D32C235D297DDE6207 /* UMViewManager.m */; }; + E45DD4E8D41C17FC08EED732951AE1BF /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EFD8BA63B9A167937E339F74455143 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5BDF37A7F8B4B60D487F3B82855A60E /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB5F6DC65441C2F195024FFCD646DC2 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5E847EA5C7686D0222C414DC33AC4CA /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DAEFCDF929038D638EBF606C51224E2 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA2FB1ED4183EC2BD2FE34C37E15B07 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; E8288CEB8339BC0E7A6C6CAF005EDED9 /* GPBWireFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D1E7E185F853FC0062B62CDD76AF164 /* GPBWireFormat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9657D26ADDCA8998C03510740D93925 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */; }; + 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"; }; }; - EA2FBAEA9DF440C9AE427449D212AC67 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1BC8645A785C361313FFBE872A01CF4 /* RNDeviceInfo-dummy.m */; }; - EBB0A14EED369E5D875F7A33E026093B /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 853F971ECC8E5CEF001627385A80F21B /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAB32AE0E6A4AAEBCE4E6DBABAD9FC74 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8C31C622D5C9E2D324202444C2EE59 /* UMViewManagerAdapterClassesRegistry.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 */; }; ED38C771CC6B89094B59C12DAA7DC7CC /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */; }; - ED6EE21B477CD958C06BB06515712F3D /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A82B5B60EFF40299021D4B946A3208AC /* EXReactNativeUserNotificationCenterProxy.m */; }; - EDBEA52F88EBC169CA6F8210950C9A7D /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */; }; - EE40B868388C40490FF1E07712CA4B3E /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */; }; + EE66861EBCF0E30FFBC50D10CDEE43F9 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27FEA6A869170AA820CB26BB8E0159D7 /* EXFileSystem-dummy.m */; }; EF0D0CA19F6AF46B42901543C77EB4C0 /* GPBCodedOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = BABA188C1E6539FAC9CE54B5C817AF80 /* GPBCodedOutputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - EF6D81B76EB3866BFE3069C11C1EFFDE /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6077EA5CD55FB91C1E4027E822787BD5 /* RNDeviceInfo.m */; }; - EF93A2F86BD6725C49F5EBC66CD115FD /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F85C5DFD030A4E980453A833E771B62E /* EXPermissions-dummy.m */; }; - EFDFE7E1BAA482B57A5362F7936B8D96 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = F9AB0E3D5CBEC3A07A6E8C898E107F34 /* EXAppLoaderProvider.m */; }; - F04888FD61AB5F283469064F8AD87763 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6779091CB3A5F1F4950CEDE345154699 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF49B1ACABCFA73186A54194F39E5191 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFEB6DAC9B9C1EA0F694A2A1760A1A94 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */; }; F06444243ED98B3E9B778F664FB46788 /* GPBExtensionInternals.m in Sources */ = {isa = PBXBuildFile; fileRef = 60FE58C23DA01DE44721A1DB79EC1B0F /* GPBExtensionInternals.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F0B76175EE9F4A616590DAAFFD8B5C6B /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 356D99420FC4263107462E2438047E08 /* RNSplashScreen.m */; }; + F07F50A9DCFCD88674698B0F8C99AD75 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = BE50045174443690244903BDE53B9ED7 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = FCD0244F066FB140E7E71129A74233F8 /* 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 = 5BF82CB903CAEFA2CA66A7762B8FE6C8 /* 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"; }; }; - F27351C5088180B6AE0411D78099299A /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C054EC061D0C86EE89D4A20BAF3C9F6 /* Orientation.m */; }; - F2A4F0169186E97D7A2DA0D1ADAF91DA /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */; }; F2DFD7896F7A6125A0AC66C8FAFC7935 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3532D8ECA09A852127FB4FAF775DF2E /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 19C738559C7A5F02105B64F39AE6B5CA /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 72509B318BC71FD668322435733BC3F0 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E985434924E8CF026DDB0415E12F07 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 53F619506865DE124BE5E05A073A03E4 /* Compression.m */; }; F41B1921B80066811103216802F90604 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */; }; + F454325F2E9D4B5FD1334D032F1BDE09 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E0C1BD080830E926F2C82F519089CE /* UMLogManager.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, ); }; }; - F624906D68F6CF2D9A5A54F21548EC1C /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7F05ACFDED4B1C47D58A51C148EC89 /* RNSScreen.m */; }; - F691D9FA47A573CADDCF5584D7D693DE /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C185F7E26C81FBBC5CC46737F5325CE6 /* EXConstants-dummy.m */; }; - F6FF8F0BD489DB9F28B169C1914043BD /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C81BC2CC57CEA9279F85270AD705088 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5DCA182C2EEA0BEAD8576F5D5DA4CDE /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = CA9D21CE6138DBD4F0BA8799DB6E6E16 /* UMUtilities.m */; }; + F5EDCD19092AD6CFA61E9A1CE93ED4A3 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B184A621FEE2C8AA51DC852246C4BFA2 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6722F4300CAABD36CE79FBC941150A3 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 651073CDC0948953C39B5608AC715876 /* react-native-webview-dummy.m */; }; + F73C4171666A62C9E0A5C4F4137849F1 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 96AC5B4DA48481B642C0A6B43FF61EA9 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; F740E0F198B1AB9831AAEFAD867AFB6E /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = FF53A904DED58A3B128E71C3BB3400C2 /* GULAppDelegateSwizzler.m */; }; - F7785755D00BD629F44E19E70242AFF1 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = A6DE6F714DECC12F2FAAA62E5D036AB1 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F832ADCA7DD100A09A841ECF40AA394C /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */; }; - F901A44BAB4BB2967096265D767469D0 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; + F7C6DD68458376DAC8E01D9C68071318 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 210B584824E97369E8F8B10D150C27F1 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81A84291B2F2DEF250FCB79C1CAD886 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = AD41223977502296C80DCD16A0A28ED3 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DB96D3D50579807B2CF5979ACCD04C /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8FB2AD0FBC228D28DB2A3819C91351B /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F91A93D3CC21280DB2FD91203A334429 /* GPBUnknownFieldSet.m in Sources */ = {isa = PBXBuildFile; fileRef = D318286797895EE8DE84CE55BFFE541F /* GPBUnknownFieldSet.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - F9A5B02F41A79DC79E3279F53783AF90 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C938C3E44C1FC6FECA651BDAC5FF134 /* EXFileSystemAssetLibraryHandler.m */; }; FA2A85685FD2F956E9AD5F88ED8646EF /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */; }; - FAF6B57EDEE412A783FD3FD64B4DBF17 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 93F58CDD8D236758FC6A6A338F22F58B /* EXWebBrowser.m */; }; + FACFEF91810308CBD49B9EA8568E582F /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = DC01493F439984AB671E13BA523D2B40 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB1881FB69A2623C6C30875C619DA9F7 /* GULSwizzledObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2F4AA1E8F90B87245842734E56023D /* GULSwizzledObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB47898131567EF31FDCB674A07EAEDF /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */; }; FBC7D3B12B44B299E9CC578C66372048 /* Any.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 12E720231196ABC7A2F315B1C9F78BBC /* Any.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - FC73CF45898655A99060A7A3CC51958A /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 40577C9BC8C9BB454FC1C20E6308332D /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD2F58177DD348FAF4BB96BB8D0B55EC /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E80985FEDA781D9E6311CA8F3A07D9B6 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - FD58F45695564409C85EA74A08F9F6E3 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 52E1F8271B715F55D9EFC4011B1C7EF1 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDB7A96FDA09C96FEC3DF9F58F44CD9B /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3F8C0D81AD007E3477C930D206FB30 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDC687E81AA6F4FD5B0BD374225B2FD6 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = D0DDE1BE48EAD5679B70F9210270241E /* EXFileSystem.m */; }; + FD4273F2F0ADDAA1C4821FC9955DDF4D /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.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"; }; }; + FDF5B1756DC69DD3A735782BB2FEBE19 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E30033587DC12B1D881646BEC45EDF9E /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE1BA6CF59B74CDB7A9CA0DA5CA101FF /* GTMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 050D2FFCB89E3CDCF40A66AC84E9D103 /* GTMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE3350C2A4C6ECEE35DA90459AC249CE /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */; }; FEDD051EB5E8D2595A2FC585AF847AD2 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 86FB658177A76D66DFF67A1F1B6430D6 /* FIRInstanceIDTokenFetchOperation.m */; }; - FF1ACB706A6B7CBDEDE5E56103C77869 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 51A895A0A971D9D4E1622D4B6DFEC5DB /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF6235825E3E9AED7ADB6D5960B51CDC /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */; }; - FFBD268FDFE09AD431CB9526E21BA6F5 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0279CF96F0E6B30B19069BE999F4A2AB /* PBXContainerItemProxy */ = { + 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DF470A1028ED32C9E70DBDAA805F8802; - remoteInfo = Folly; + remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; + remoteInfo = UMFileSystemInterface; }; - 05F2B12CCBD5077F5206A05854D1A04A /* PBXContainerItemProxy */ = { + 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; }; - 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */ = { + 0603083579062A0E484C17840DAC57D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; + remoteGlobalIDString = B93FC7FBB72DC12DA58AC12DAD1125E8; + remoteInfo = UMCameraInterface; }; - 079DD563B155F61559051A0AB3CDB5E8 /* PBXContainerItemProxy */ = { + 07C41619A6909308DFC8F3763BFC9F3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D4C80D428A6706DF21E9315400ECC2AB; - remoteInfo = yoga; + remoteGlobalIDString = 61BBB5951F8410A3F291DFCFA7FBB0ED; + remoteInfo = UMFontInterface; }; - 0EE7E307C7B55BA48D265575BB50913B /* PBXContainerItemProxy */ = { + 08D6DEDCEF085E9C17B9619744FBCD3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; + remoteGlobalIDString = 7576203C2856D63CE7ACAEB26FDDFB6B; + remoteInfo = QBImagePickerController; }; - 13A083049AFAA2BB11F76C3FA8292174 /* PBXContainerItemProxy */ = { + 0EA49245A9259C0F60FC79E036EA1329 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 809B32A1AFD7C6F0D8E7A0E42D21B56A; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = A486E5AB43C3327005F1C0B986A448C0; + remoteInfo = EXConstants; }; - 156B5AEF4A8EED57D41D3B01D9685A14 /* PBXContainerItemProxy */ = { + 0F97BFD45E71B2607F0E2D6BD5F81617 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 86D46B5F7EA763C3041CA2087A947D2E; - remoteInfo = UMBarCodeScannerInterface; + remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; + remoteInfo = GoogleAppMeasurement; }; - 16DDE719E35CFE85F743225FB10B5707 /* PBXContainerItemProxy */ = { + 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; - 19952C7025B9E7B930FDF433845C8D60 /* PBXContainerItemProxy */ = { + 167724BE8CCBFDC74CD239959356A59C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D4C80D428A6706DF21E9315400ECC2AB; - remoteInfo = yoga; + remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; + remoteInfo = glog; + }; + 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 76CC3A2D036B8B64B5F70A7078274100; + remoteInfo = UMPermissionsInterface; }; 1A3C492F71285F25490A56EC8987E437 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -768,12 +778,12 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 1BE37072EED6A7F6DC4DACE2E5874457 /* PBXContainerItemProxy */ = { + 1BB7BA8D5AB15D02C96722FAA92673E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; - remoteInfo = FirebaseABTesting; + remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; + remoteInfo = FirebasePerformance; }; 1CE3E751E533C71A2F0C6903F97BFDE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -782,47 +792,54 @@ remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; remoteInfo = FirebaseABTesting; }; - 1DE43774B6000419AD8896C09E2AF610 /* PBXContainerItemProxy */ = { + 213564F23047B277074FF21BECE2730B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E44123D8CC993126C80CB5CA0A56B610; - remoteInfo = UMCameraInterface; + remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; + remoteInfo = glog; }; - 205502DCC16A68E02B336B4F4B0DE755 /* PBXContainerItemProxy */ = { + 2216019AFB150A6C3CB9430F3ECFECE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 012EE4243226ABBB0BCDFF486045809E; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; }; - 21E2CEA9BCAFDBBA54C6E585FDF11B86 /* PBXContainerItemProxy */ = { + 2385313AF5A872CD60E1D2BFB52FAA21 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 012EE4243226ABBB0BCDFF486045809E; - remoteInfo = UMFontInterface; + remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; + remoteInfo = GoogleToolboxForMac; }; - 2565EB7D68EC6C4E0826B5CD02EBBF48 /* PBXContainerItemProxy */ = { + 275D5944D4E9DEDFF928C0833A9C22EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6653EE6BC241DCDF86799473CF05303F; - remoteInfo = RNLocalize; + remoteGlobalIDString = 0FB41CE4381552CA15BC78737D4C350D; + remoteInfo = RNScreens; }; - 266F38FE30CC51DE411C1C3155EC8FF9 /* PBXContainerItemProxy */ = { + 278BA50ACB18DDB3949BA8801EE10514 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F42432668A0F81BE898F1FEA0D6A83B7; - remoteInfo = EXAppLoaderProvider; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; }; - 284DA118236FA40DFE6F9F5B75E4F35E /* PBXContainerItemProxy */ = { + 2910073AB6C6DE35588115EB50141CDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2EF7AAC4B473FC5EE7FAF38C422E42B2; - remoteInfo = UMSensorsInterface; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; + }; + 2983B09D3E9AC3BA6506F2EE94BE176B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2D7029C53C643F4ADE254A09284C1843; + remoteInfo = RNLocalize; }; 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -831,348 +848,355 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; - 2B0023264553DA0C17A2822B690233D1 /* PBXContainerItemProxy */ = { + 2A90DD5E3B186CFBB5114C2CEE4229EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BF2913C5EC8E56B198C82312CA178BF; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 7576203C2856D63CE7ACAEB26FDDFB6B; + remoteInfo = QBImagePickerController; }; - 301FD13D2A7EC0303ED795B810BF7647 /* PBXContainerItemProxy */ = { + 2C18D1B1DD1B3119B067603602E381CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8512B7E98946D00581570BEAA92952AC; - remoteInfo = UMTaskManagerInterface; + remoteGlobalIDString = BA72812BDDB8AD27AC5EC609D0D5DAF3; + remoteInfo = UMBarCodeScannerInterface; }; - 30E4AFE91AFE993916F5FF5C06DD35DD /* PBXContainerItemProxy */ = { + 2DB08B659A2F308FFCB15ACCA0D10197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; }; - 33B78007BAC95CB937CF2DFE82E76C79 /* PBXContainerItemProxy */ = { + 2FC7AB9630737D89CC5F76C5A46464C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; - remoteInfo = nanopb; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - 33F9A9605873A5A609A49C606F05E7D4 /* PBXContainerItemProxy */ = { + 3053AE07786CE1B44726EB78A90C6D69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DF470A1028ED32C9E70DBDAA805F8802; - remoteInfo = Folly; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; }; - 341B458D9DE4CA0E8DF8B82F4B28C847 /* PBXContainerItemProxy */ = { + 30E4AFE91AFE993916F5FF5C06DD35DD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; + remoteInfo = FirebaseInstanceID; }; - 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */ = { + 33B78007BAC95CB937CF2DFE82E76C79 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; + remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; + remoteInfo = nanopb; }; - 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */ = { + 359FAC0A48EACB6ECF48EF71B274C6A7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; + remoteInfo = FirebaseAnalytics; }; - 4AF55166CD00C99D7B0FA9C57A8DBB90 /* PBXContainerItemProxy */ = { + 371A8EF26379607DD47210A5645AA680 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 031F6220C2D49E4AD5F61FAA0ECADF64; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; + remoteInfo = GoogleIDFASupport; }; - 4D868DD673E0BCD75FCE3AD3B286CA4F /* PBXContainerItemProxy */ = { + 376841D0E529BC7EE9A71885D09BEAA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 031F6220C2D49E4AD5F61FAA0ECADF64; - remoteInfo = UMFileSystemInterface; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - 545A4BC910ACF774C7D1B3898D69BE10 /* PBXContainerItemProxy */ = { + 37DC019AFABA0B108DA744E227249BAC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; - remoteInfo = nanopb; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; }; - 555A65E7837B1D026AA9456B02E5BC3B /* PBXContainerItemProxy */ = { + 39799A6DAB8568994F771B7CAB2A5AAA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; }; - 5A5C1B735366A67F195F66328EBAD183 /* PBXContainerItemProxy */ = { + 39A0F904829CB76B90D5C6B0017D742F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; + remoteInfo = FirebaseABTesting; }; - 5A9363F4FD6B77942B665046B14395CF /* PBXContainerItemProxy */ = { + 3CC2EA99A4F73187F7A2CD42265AD7C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; + remoteGlobalIDString = 645DEAED47D48A55A088EE2AD4BCABE9; + remoteInfo = DoubleConversion; }; - 5B65179DE5276B59CE042E73FDDA241B /* PBXContainerItemProxy */ = { + 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; - remoteInfo = FirebaseRemoteConfig; + remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; + remoteInfo = UMConstantsInterface; }; - 5B8C76C45A2136665C0571CC3F9AC091 /* PBXContainerItemProxy */ = { + 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; }; - 5BFBF01F776A0AB7D0159BD242AC8FAB /* PBXContainerItemProxy */ = { + 3E9FE0018CEFB861F7F5F417A133EB77 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 78C72C16EF60158FECF52B5762368F44; - remoteInfo = RNScreens; + remoteGlobalIDString = DF4DC904616B1B1E4A07E8EC5F5EC979; + remoteInfo = UMReactNativeAdapter; }; - 5C18A82DEC1E4DFCD36BD4D17F0E9ED3 /* PBXContainerItemProxy */ = { + 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; + remoteInfo = FirebaseInstanceID; }; - 5CC1BA1ACB007EE6BC3605F7D410E95B /* PBXContainerItemProxy */ = { + 4A63E1C410E51622BD0A118A052F2C91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - 5D1AD928A6543B19561055CA123DFF53 /* PBXContainerItemProxy */ = { + 4BDB52D20BEBA3EED21748D1127384AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E08017052120BCA7B6CF9CEBD72E5B81; - remoteInfo = "react-native-webview"; + remoteGlobalIDString = 5B1BA8B3E53682DD179F7BFF8F2C8B75; + remoteInfo = EXHaptics; }; - 5D4696B5DC0410EBB318096CDEA1B03B /* PBXContainerItemProxy */ = { + 4F399CF6425EFFDE5D4551F87BFCA12E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; - 62904A352E9BDD7C12A9F0F243DEDB37 /* PBXContainerItemProxy */ = { + 4F52E96A961F5AF7436A79481EB95CE0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 037B3080D17C0918F3E81F3A1BC9210D; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; - 636B2409BC85BCED8787E89990BEA431 /* PBXContainerItemProxy */ = { + 506F52052455D56219ABB63CC3B42251 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; + remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; + remoteInfo = EXPermissions; }; - 63CC343CA180805876E85849C6D40C45 /* PBXContainerItemProxy */ = { + 5744754DDDFB2AEEC56F1B7BDEC645FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; + remoteInfo = GoogleToolboxForMac; }; - 65547C980BBA94B15988413D34993B90 /* PBXContainerItemProxy */ = { + 5A9363F4FD6B77942B665046B14395CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1414ADEE4A421F3C5F9A229345CE3F61; - remoteInfo = DoubleConversion; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; }; - 6775627146E44388CC4401C295AA7F67 /* PBXContainerItemProxy */ = { + 5B65179DE5276B59CE042E73FDDA241B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; + remoteInfo = FirebaseRemoteConfig; }; - 67ED23A5BF71F7AE3FE6E11E75B1E03C /* PBXContainerItemProxy */ = { + 5D4696B5DC0410EBB318096CDEA1B03B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; - remoteInfo = GoogleIDFASupport; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; }; - 68B8E526790FE20F392E109CD0B77393 /* PBXContainerItemProxy */ = { + 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; - remoteInfo = GoogleToolboxForMac; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; - 6C89FC23A5F66D3640E38053C2A0A202 /* PBXContainerItemProxy */ = { + 60C8EBDB3239353733DC79441F742EA8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = D00660683B62A9AB32408C607FA0CC9A; + remoteInfo = UMTaskManagerInterface; }; - 6D4CEA60298C8C4012E08EFDFC17F1A9 /* PBXContainerItemProxy */ = { + 631FD77A28B1BCDF4D45F41628BECCFE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D6CDBA4F567B018F442382D2520D6D27; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = E586D237DD4BD9777F066B441FC23D4B; + remoteInfo = RNDeviceInfo; }; - 70F37C141BA487162A565A5A71134D97 /* PBXContainerItemProxy */ = { + 67B13CB7A88B64715ED2420D783FE010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 037B3080D17C0918F3E81F3A1BC9210D; - remoteInfo = UMPermissionsInterface; + remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; + remoteInfo = EXFileSystem; }; - 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */ = { + 68DE229480D96DE348D64E9E776BE932 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 645DEAED47D48A55A088EE2AD4BCABE9; + remoteInfo = DoubleConversion; }; - 775132A53E1277ABBE9E412EC173B332 /* PBXContainerItemProxy */ = { + 6CA95E815EA2282FEF08226AAADC9AE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; - remoteInfo = GoogleIDFASupport; + remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; + remoteInfo = GTMSessionFetcher; }; - 786742BF817D3A2E1B42B112F4D4D1E2 /* PBXContainerItemProxy */ = { + 6DE562E80BFFFFAC266CD3417322B8A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 45018F5317EE8A727FB05D4B61A678A6; - remoteInfo = EXHaptics; + remoteGlobalIDString = 135D3E6523830EF3D6030BF433E40372; + remoteInfo = yoga; }; - 79A8F389DFC1FC1DDB3CF105B86F52FD /* PBXContainerItemProxy */ = { + 700FF290AC594D6B978C0A991E347B6F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1B0EEC7C26C308083C4FBB35B19D550; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 81C054123AFD73E9DFE7239A455A404E; + remoteInfo = "react-native-splash-screen"; }; - 7A15FCB6A4BF13879F465F48CB8B888D /* PBXContainerItemProxy */ = { + 72DC5089D7015830BBCDBDF27FAFC96E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; }; - 7A48F73BBB5D0FF1BBD8B794129AF602 /* PBXContainerItemProxy */ = { + 7386848E6D802B7B06413C92F8B56C4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DD927FD31886A98DF6F8FCEE90BD0139; + remoteGlobalIDString = 4AF5E628EAB736BEF1F7FD9320938BD2; remoteInfo = "QBImagePickerController-QBImagePicker"; }; - 7F51F43672871374159A538ABABB9378 /* PBXContainerItemProxy */ = { + 73F3E61E6A9590DA31CC24F1945C95D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; + remoteGlobalIDString = 000000006E90; remoteInfo = React; }; - 812DFDCD9048F08F69F05534AFE885F5 /* PBXContainerItemProxy */ = { + 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; - remoteInfo = FirebaseABTesting; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; }; - 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */ = { + 762AAA2B37858242E366805E3D42698A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; + remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; + remoteInfo = glog; }; - 8315DDACCEA8C95A382D0B06171F592E /* PBXContainerItemProxy */ = { + 7FD43C07AC1799929636BE8E0B84F326 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; + remoteInfo = GTMSessionFetcher; }; - 84B3D8E7C8B06F649E467DC4E37CAC60 /* PBXContainerItemProxy */ = { + 7FD5404087F77FD99F6BC1EBC9567BAE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; - remoteInfo = FirebasePerformance; + remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; + remoteInfo = Firebase; }; - 858BDA576DD1F18DF4CB1C8811669140 /* PBXContainerItemProxy */ = { + 8034032320453D090C4663C66DAA3B29 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; }; - 87D02EAE1DD3CC8AB9B8D646D27548A4 /* PBXContainerItemProxy */ = { + 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; - 8B97FD8BB3EDC2ED5E192DAE4A5C5FA8 /* PBXContainerItemProxy */ = { + 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 803BEC492C34A471892F5E1B8EF9DFB1; - remoteInfo = "react-native-splash-screen"; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; }; - 8F8F2774BC86372D3716F69F7F804387 /* PBXContainerItemProxy */ = { + 8232CB33EE4E725E39E19514E823CDDA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6653EE6BC241DCDF86799473CF05303F; - remoteInfo = RNLocalize; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - 90DBDDCAD64E987D02521F576616BE62 /* PBXContainerItemProxy */ = { + 84BC9F8510934058A37B8E0A22D70698 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29FC2A0EC130F2F2AF7AC9AE94A583B4; - remoteInfo = glog; + remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; + remoteInfo = FirebaseInstanceID; }; - 928B7C9776B0EEA71BC214E16417BEED /* PBXContainerItemProxy */ = { + 84E8980FCCB36E7CD26DA230A574E569 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = 59C1091111E1D9F774B8BBDFD529A0CD; + remoteInfo = "react-native-webview"; }; - 9475C27C245079677A4C178FC0396FF0 /* PBXContainerItemProxy */ = { + 87D02EAE1DD3CC8AB9B8D646D27548A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F9FB30742F24E06348CA6BB7BE816B4; - remoteInfo = EXFileSystem; + remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; + remoteInfo = FirebaseAnalytics; + }; + 8C47412223509C5695149990BBEE4F52 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; + remoteInfo = UMFileSystemInterface; }; 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1188,82 +1212,82 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 9D25F24407F3DB7F8037248B4DA8103D /* PBXContainerItemProxy */ = { + 9774E0D25D90CF7D9500230ECA9096FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = E586D237DD4BD9777F066B441FC23D4B; + remoteInfo = RNDeviceInfo; }; - A07A8F019F42721442DA50F68DCECAFB /* PBXContainerItemProxy */ = { + 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; - A0CF8691920552928933F2E0C85ED9F6 /* PBXContainerItemProxy */ = { + 9C31A485C410A54AB22FF118128FEE51 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - A161FE1267D341AC56435F1D6519CCC3 /* PBXContainerItemProxy */ = { + 9D25F24407F3DB7F8037248B4DA8103D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; remoteInfo = FirebaseInstanceID; }; - A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */ = { + A07A8F019F42721442DA50F68DCECAFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; }; - A57FA5C40A1BE5F5C481358F3D88E137 /* PBXContainerItemProxy */ = { + A36D2F569C38D8B17E2534B08579C039 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D6CDBA4F567B018F442382D2520D6D27; - remoteInfo = UMConstantsInterface; + remoteGlobalIDString = 61BBB5951F8410A3F291DFCFA7FBB0ED; + remoteInfo = UMFontInterface; }; - A7BA364FA94E21CD657005A5A07C522B /* PBXContainerItemProxy */ = { + A37C2CDC87CD6A0463BCAA475D16ABE1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 23FF201B9797478F2F3250595974DE03; + remoteInfo = "react-native-document-picker"; }; - A7C477F16F437F0AFFBF067E258EB1E4 /* PBXContainerItemProxy */ = { + A437FDD3F20793A5F6C525BD1FA4B8A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; + remoteInfo = nanopb; }; - A9F8BE267C4E2014D37069D20710DA93 /* PBXContainerItemProxy */ = { + A448C7DD26F5E1EBBD5637CDDA4E386B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - AADD210D1F940E270E559A5AE73B7D04 /* PBXContainerItemProxy */ = { + A44A7A5827E52DEF38891CA928DA2769 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29FC2A0EC130F2F2AF7AC9AE94A583B4; - remoteInfo = glog; + remoteGlobalIDString = AD8E174269DB70F077106CD3E4799822; + remoteInfo = UMImageLoaderInterface; }; - AE0BA90FA1ED54B13ED8985808FB69EE /* PBXContainerItemProxy */ = { + A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; + remoteInfo = GTMSessionFetcher; }; B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1272,82 +1296,89 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - B1A8886696827E049A32FEC96C61DDA5 /* PBXContainerItemProxy */ = { + B2026A1763363BD4448E48802860DD45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - B2F216FE57BD14B4B3FAF4DF6EA38D0B /* PBXContainerItemProxy */ = { + B324CA5F3E8D31003D17C7B260AD47E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = E2BC182D60EBDE8BDC6D1715DE3A82AC; + remoteInfo = RSKImageCropper; }; - B98472E1EC3F8F0A307CC3DAC3E33C23 /* PBXContainerItemProxy */ = { + B39EE80093E29C73C5DA1DCA89839DD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; + remoteInfo = FirebaseRemoteConfig; }; - BC90676054F6FB36FB066904374641EC /* PBXContainerItemProxy */ = { + B4489FF2F4937B0B87050357EB3E65E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1414ADEE4A421F3C5F9A229345CE3F61; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 76CC3A2D036B8B64B5F70A7078274100; + remoteInfo = UMPermissionsInterface; }; - BE0D9CA338918985910CFAB12661D90F /* PBXContainerItemProxy */ = { + B76384D7C3DA6D95F986CDB18CBC2A6D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; + remoteInfo = GoogleAppMeasurement; }; - C1CE1E8C4F8EE7DBCBE8AE422071DEBF /* PBXContainerItemProxy */ = { + B7A7401145DCA3B779EBBCD909756643 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; - remoteInfo = GTMSessionFetcher; + remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; + remoteInfo = FirebaseABTesting; }; - C3F908AC2DD5C8939EE36F8EE1092DDB /* PBXContainerItemProxy */ = { + B7E1F69D63F98F7F80CBE8798BE9E5AC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = A81A76054DDFFB213887570FBA0C500B; - remoteInfo = "react-native-document-picker"; + remoteGlobalIDString = 04F2065D21456DD872C5C43AB59ADD11; + remoteInfo = UMFaceDetectorInterface; }; - C66EADD85C4434D9CE51D1DDAB7C6719 /* PBXContainerItemProxy */ = { + BAFA61E9079850A994F5762B6F154206 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; - remoteInfo = GoogleToolboxForMac; + remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; + remoteInfo = GoogleIDFASupport; }; - C6E5AD4E64AFB12E6E988DD8A4C84F45 /* PBXContainerItemProxy */ = { + C02513E6525B1C18032BC93E0A7BDFE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2028458048597D68A7298BB3C8C1E9BB; - remoteInfo = RNImageCropPicker; + remoteGlobalIDString = 458293E00EF1C1F42778F9425AD34AA4; + remoteInfo = UMConstantsInterface; }; - C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */ = { + C15A4D32BA16FEB5B67427B9D0B73E19 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; + remoteGlobalIDString = 2204E533997A82F0D6F7AD16CE4C7106; + remoteInfo = Folly; }; - C6F9E06054EE3EF7A66F9E9516F8F038 /* PBXContainerItemProxy */ = { + C434376D1D4A02741732BA8877E03D64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2F8CF410B0326B6DEB5A2CDA4E2A2D8B; - remoteInfo = EXConstants; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; + }; + C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; }; C7B780F3B34321F634A645A383811CDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1356,6 +1387,13 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; + C9F655210DCC9BBECDC3E2551CA749C9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AFC189D722BE42FA3301F2DA83928057; + remoteInfo = RNImageCropPicker; + }; CD235DDD6ED40AF6628D34E57EB6B2EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1370,12 +1408,12 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - CEE3627BDFC98BF4E34AB2269676FAFF /* PBXContainerItemProxy */ = { + CE631DD21F23D1B55E24591202F7ACFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1414ADEE4A421F3C5F9A229345CE3F61; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2D7029C53C643F4ADE254A09284C1843; + remoteInfo = RNLocalize; }; D1D3303C3AD8C1B99F2E4AF4B23DCEB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1384,13 +1422,6 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; - D435D7CC29C198156EAA2FD534ED2A4E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; - }; D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1398,1304 +1429,1305 @@ remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */ = { + D542C9898F15CAE736F218FA34F44C60 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; - remoteInfo = GoogleAppMeasurement; + remoteGlobalIDString = 135D3E6523830EF3D6030BF433E40372; + remoteInfo = yoga; }; - D5D475C90E270ED16B263A1AAF4F1EFB /* PBXContainerItemProxy */ = { + D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; + remoteInfo = GoogleAppMeasurement; }; - D68FB8ADB4C2F16933D16D1B7D3D01D2 /* PBXContainerItemProxy */ = { + D5A52B1624B1534A68F744000EA30087 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BF2913C5EC8E56B198C82312CA178BF; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; }; - D8DBA83FFFD144D24C14992C75E709A4 /* PBXContainerItemProxy */ = { + D8A10225A999F3F8C5534AA5457EDA18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; - remoteInfo = Firebase; + remoteGlobalIDString = 645DEAED47D48A55A088EE2AD4BCABE9; + remoteInfo = DoubleConversion; }; - D96509F89472049CDEE4F8807E7A16F7 /* PBXContainerItemProxy */ = { + D9CEADD0A5BF85990F08AB70288A4EF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; - remoteInfo = Firebase; + remoteGlobalIDString = 617459C51E8685DC1604FE74E1E93024; + remoteInfo = "react-native-orientation-locker"; }; - DA1EB595AA0DF1259D566CF1F792D0C2 /* PBXContainerItemProxy */ = { + DAD95BEEF63491B2F10C991A7F06C621 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; remoteInfo = FirebaseRemoteConfig; }; - DDE01DC76116A713480C66CB8C245DFA /* PBXContainerItemProxy */ = { + E436B6DC396658B681C57F3B847AF7B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; - remoteInfo = FirebaseAnalytics; - }; - E09E547C09587DE2571726618232E38A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; - remoteInfo = FirebasePerformance; + remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; + remoteInfo = nanopb; }; - E4D9F6D7F5F8FF95123D92E6BAD83C17 /* PBXContainerItemProxy */ = { + E60C05616D024BAA46966F3E6B4EDC1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; remoteInfo = nanopb; }; - E52AD35543AC0324F4DD8E89DC2259C2 /* PBXContainerItemProxy */ = { + ED5550F400E3A19DB8EEE7C7F35F7227 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E30; - remoteInfo = React; + remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; + remoteInfo = FirebaseAnalytics; }; - E59574394782182AD725C4A25B1370F3 /* PBXContainerItemProxy */ = { + EE427B1B4E78C41D489DA719CA6ED496 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; }; - E5DEA174AB46FED88A15053D852D125A /* PBXContainerItemProxy */ = { + EE5E225899838EEF1E6E32B77A70761F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 809B32A1AFD7C6F0D8E7A0E42D21B56A; - remoteInfo = RSKImageCropper; + remoteGlobalIDString = B11E238094137347E8790BFEB1BEF01F; + remoteInfo = EXWebBrowser; }; - E60C05616D024BAA46966F3E6B4EDC1B /* PBXContainerItemProxy */ = { + EEBBFE74636D6BC7E8D380B4DBDBC621 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; - remoteInfo = nanopb; + remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; + remoteInfo = GoogleToolboxForMac; }; - E64C4A5E286078F9045165712ED89E39 /* PBXContainerItemProxy */ = { + F0D231D5A9118E7A7D9418A4405ABED7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F94AAE7B66066E8A00FEBE0CEDCB9096; - remoteInfo = "react-native-orientation-locker"; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - E77BD93B8F6EA1DD7AF97E51EAEBAC1A /* PBXContainerItemProxy */ = { + F16D85BF10A150F2EB5F72DCD49C0A28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F3FBABCAF7437339A36C2DB10E815361; - remoteInfo = UMImageLoaderInterface; + remoteGlobalIDString = 2204E533997A82F0D6F7AD16CE4C7106; + remoteInfo = Folly; }; - E95BCD9CF05C5ADFD888F02BEEFEBBCB /* PBXContainerItemProxy */ = { + F1AD971338B2DF6A807B98F709BA1D52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; - remoteInfo = FirebaseInstanceID; + remoteGlobalIDString = E2BC182D60EBDE8BDC6D1715DE3A82AC; + remoteInfo = RSKImageCropper; }; - EA655D6AF0FE06BBD0F0B6642E88D5E9 /* PBXContainerItemProxy */ = { + F2F228AE683105704395ACD52FBF2DCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1B0EEC7C26C308083C4FBB35B19D550; - remoteInfo = QBImagePickerController; + remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; + remoteInfo = FirebaseInstanceID; }; - EB266CA52E321F1A5BD9E62115470A38 /* PBXContainerItemProxy */ = { + F368937BB792FB789468F75E9CF61132 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; + remoteInfo = Firebase; }; - EBCE17E29FC780E74B0DBCB32BAD93FF /* PBXContainerItemProxy */ = { + F4A7019787B2C68AB06172B2DF9C1FA5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 29FC2A0EC130F2F2AF7AC9AE94A583B4; - remoteInfo = glog; + remoteGlobalIDString = EB92566E001FC40AD291F3CA77C5C2F4; + remoteInfo = UMSensorsInterface; }; - EEBBFE74636D6BC7E8D380B4DBDBC621 /* PBXContainerItemProxy */ = { + F4AF8C90F0967533DF9D7910287AA3B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; - remoteInfo = GoogleToolboxForMac; + remoteGlobalIDString = 807FE713602CADE901BF7779C7C9A0F4; + remoteInfo = "react-native-realm-path"; }; - F3663456751D064F7E093CB672D760D5 /* PBXContainerItemProxy */ = { + F4BEE2076A9B86B580CCE1E09DACE3FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CF4FAC9A5886DAE63CE6D224BC85857E; - remoteInfo = UMReactNativeAdapter; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - F4F0A4ABB3DF78A5745825EA12C13965 /* PBXContainerItemProxy */ = { + F7E9060797EC9942911E6A31FC5978F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5ED05858D3E3C1599A062FB1C45FE359; - remoteInfo = EXPermissions; + remoteGlobalIDString = 4ECE1108F140208A729A83BC94FAA150; + remoteInfo = EXAppLoaderProvider; }; - F63BAD00A77209AE9E709CB7B69913E0 /* PBXContainerItemProxy */ = { + F90AB3538C448A960F8448CF412AB769 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; }; - F694606F8A3B5D15625E633C00EB1AC8 /* PBXContainerItemProxy */ = { + F9440B625E803766A0AF6DA1BFF0E36C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4412C5F689DD128EFB8F42F11C502D2C; - remoteInfo = UMCore; + remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; + remoteInfo = FirebasePerformance; }; - F74A952D19CA208DC7A5870F689DCE96 /* PBXContainerItemProxy */ = { + F97763298CEF81309A9AF83CF3E4BEF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; + remoteGlobalIDString = 807FE713602CADE901BF7779C7C9A0F4; + remoteInfo = "react-native-realm-path"; }; - F97DE72A3178E774FED93FB39DDDEAD1 /* PBXContainerItemProxy */ = { + FC68BCC44D8C5727004EC721EC176FB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; - remoteInfo = FirebaseRemoteConfig; + remoteGlobalIDString = 000000006E90; + remoteInfo = React; }; - FA944219433ADF06588994778EB923C1 /* PBXContainerItemProxy */ = { + FCAD554FD7482E6FCCAF9742C73155D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 240504C276270018DE05B3D0F038B1E5; - remoteInfo = EXWebBrowser; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; }; - FF02B7979C4699C72336D242A5C8BBEE /* PBXContainerItemProxy */ = { + FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E4BFA976B260562E97E7EFBDEFE87B72; - remoteInfo = UMFaceDetectorInterface; + remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; + remoteInfo = UMCore; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ 001906DF79B2E749BEE13C58E5D57CDA /* GPBArray_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray_PackagePrivate.h; path = objectivec/GPBArray_PackagePrivate.h; sourceTree = ""; }; - 00E3A268F0A7B1393A5344E0B5030763 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 004FA892142BC5EF9C7C3646A89CA8A8 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; 011AC49904E60DBE7374EF4C6C46CCC5 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; + 012DCC84D8FA7FD348A1DF06C0C4A7F2 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.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 = ""; }; - 0224BFAC559A614A3E5BDB8591BCB8CD /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 027FC199BAC70FAB4151B3A0A94AEDDB /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 02AC66D7FCBAC97407B07ADAE16AA6DC /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 01F8FA667020A7E45792DEEFC49F0A2D /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + 0232A18EAEC249F47B610ED510163A1E /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 026462320DF0A64CDFA59DC46E5A77D8 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 028687FDDB3162866BB092E57CEE3113 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; 02EE269B177F9131844B8B87D0E70230 /* GPBBootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBBootstrap.h; path = objectivec/GPBBootstrap.h; sourceTree = ""; }; - 02F81963341D0821D79BF641D3EF7351 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + 02F83E97A0FE46EC0B5F0F49EE2A3DB6 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; 031182114156D9FD17B5BA12E328E7E0 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 0318DD9026D8C98D54B39B6E33D96F7C /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + 0323E1252CEB77179CB0A8A82509226E /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedInputStream.m; path = objectivec/GPBCodedInputStream.m; sourceTree = ""; }; - 03909F2AA0C8E7BB8408C9AE797DD56F /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + 03582ABF8F2C49917A06DFB77732C395 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 038A2011AC8677988781CBA4F80BCDEA /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 03A1D5BDF26AE993D32E8CA1FEC5ECCA /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 041A12F442279794A692067621FFD1A7 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 041D321E945275712137D8AAD409F514 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; + 0488280DDC23C1BA9BDCE5B5B6A20B3A /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULObjectSwizzler.h; path = GoogleUtilities/ISASwizzler/Private/GULObjectSwizzler.h; sourceTree = ""; }; - 050BAE3B53842FDC6949860697A59FEB /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 04A2A83674DBD94DF7FC4D9AFE06C9CF /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 04F0555FCF506F5E11894DA9ED4CCF0A /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; 050D2FFCB89E3CDCF40A66AC84E9D103 /* GTMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = ""; }; + 0512A223ED5909FE37306B7788C70AF8 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; 05449E32192EDFA22803A46B68E16576 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 05825C174AEE77C9F8C1E3D0B7463BBF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 058F7DB64918C28A7F943D22CF1CD899 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; + 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + 0561F4FA9F99CA4E3EA734D0114AF789 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 05681DFC28945653595E17F4E93C9D56 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 05CC4FEAF72AF6EB2EF7ABB1897CF97C /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 05F735D71208B628185FD7C9C51A77F8 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 062E08C4CCAEBC0976B7EFCBFDFA4A83 /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 0695A3F3BB62B830B2659E8E4A8F5AD1 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 06BFEDA9CC3AFF8213E2CCD9A031B13B /* react-native-realm-path-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-realm-path-prefix.pch"; sourceTree = ""; }; + 06EC3E9E278989CB18DB212AFA60A879 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.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 = ""; }; - 080EA52506581465A65900CFDCBDDCAA /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 08279C6722BE69AD426FD48CB720E070 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; + 084AAC9E013FD43A6105F4A7AA686C40 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 08AB8E3961620365C25C31C68AC9511D /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 09503CC93B6FBD842BB816B6EBF3599D /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0961D9913096F5A69A58E87F83C5974C /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 0972404CC5746EDD33DB926C63C39B0C /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 097F561A080EF4F83C49493AF0BD71A7 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 099A1BF6920C923F08C1958E57EA30B5 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 09D6DCBCAF8ACAA816AA8835503CCBE1 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; - 0A36E010B972E4EDBAEE04B984A3E34C /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - 0A8BE2F8329E1435E42FF893A2A90DC7 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; - 0AC8AADDB173108EE276EA0EB28D012B /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + 08AF325435742A9E699C98E542107CE3 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + 097AE4854DE413C10366147CADC084F1 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 0AA3AD8840FCA5C82348C0B7469A06A0 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 0AB591CB4D6D75D827D78807CF54BCD1 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; + 0AD5147A7096B8945A3779108CCF2878 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; 0AF96CFD962855C85F574FBD2C954DE2 /* GPBRuntimeTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRuntimeTypes.h; path = objectivec/GPBRuntimeTypes.h; sourceTree = ""; }; - 0B24E69D23DD4AF0D80DA29CBD5BA30E /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 0B9B9DE36058EF832D0A3401A5AE47C0 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 0B091891802470C094603B4CE4C92B0D /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 0BAC49632693E881A740E4F2693EE2EB /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 0BBE5A26CAF56CAC91CDDE86D4EAE703 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 0BD3AC289671F101C3372A5C718278F6 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 0BE910F68838C1F02269939B6EEA2818 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 0BFE686B9EBD79EAE6A8A2E28B48CE35 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - 0C054EC061D0C86EE89D4A20BAF3C9F6 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 0C27D8DA58AD5C2BF9C61F7BF90C5184 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 0CC4F8ABA7BF7865CE34ACAC84C08312 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 0BB45AB28FE66209EECDD5939F6CFD78 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 0BEFF173864C59EF1F9D356DE406B8E8 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + 0BF063273AEE6D2CE8618E0CB76990FC /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; 0CCCEBA88468B01A169C6465CAF3FD12 /* FIRInstanceIDStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStore.h; path = Firebase/InstanceID/FIRInstanceIDStore.h; sourceTree = ""; }; - 0CE0884658E15E94595AE0347951FC28 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; 0CECDA20FE3432D2A0FD84D45349110D /* Protobuf-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Protobuf-dummy.m"; sourceTree = ""; }; - 0D01BFFEAAF5F84BECFB62B1D3A7747B /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 0D15A8771D5B1C244A1F3667C1D5B108 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; 0D1E7E185F853FC0062B62CDD76AF164 /* GPBWireFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWireFormat.h; path = objectivec/GPBWireFormat.h; sourceTree = ""; }; - 0D42D3A4251B548417CA7A6F3BD06B46 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 0D52C028F8C644B23CEB9F1C566CECEB /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + 0D379F20422F35E4A0327AB378E60E61 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; + 0DAEFCDF929038D638EBF606C51224E2 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; 0DC0A60A9467868CEA7A2146861B49B6 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; - 0DFAC29252B21394064D91B05B3C963E /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 0DFD0E923F04AB68A59E3051056881D3 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 0E1B1F60A9524A572FA1164AE4EF3BB5 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0E1F25D51BE521DF18295C571C993CD4 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; - 0E67E298AEACB8E5074B461F7DC07845 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 0DD1134109756DAD35968268519C1B15 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; + 0DECA38109375851DE9F22197028E797 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 0E4768C340A52BE6F8E5F500D3058657 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 0EB188F70D25ED4EA02965D82F9D3C6F /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; - 0EB4DFF23413897BD9364E3F9AB0C676 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + 0EB28CDB8C69EFA983BC669827685933 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 0EF37620C76E2F0CE32163DFBEA0B009 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 0F4C6F41A6E3350AD45942B5D81157AB /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + 0F531AC7EF738B44C66AB3A306585BD7 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; 0F55E0C521766F08DF73E90DF03908EE /* nanopb-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "nanopb-prefix.pch"; sourceTree = ""; }; - 0F5DA0C2AD93FA52A0FCA4BD5815F600 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; 0F679BDFCED3A61C87F3B0D401DDD7B7 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 0F6857C1E851EA0D79A81C7C0DE61524 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 0F9D32450BA4C90E1EC2C7DDCD91DEC5 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 0FBB6CE2FC46A7EEE9B58139D2F6507F /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1091C019674D2BFF76B94607EC7CD0FB /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; 10C306448DF95BDD2C33FF0845BE3EE3 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; + 10C70F490652DB309BA6145EB0AE9B83 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + 114DA39D192F75C48D0BCFDE068BB5F1 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + 11A15A252F18D6812482C6F38982085D /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 11AE43F67658221783C00F77B5A05FCC /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; 11CEFEA651D768ECDD7B19E6CC8AA9A1 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - 12014BDB3AA1F3822AC982F4B7C62C30 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 11D5F1D927DE1E7AED7DFA104A6B583F /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 11DD4667BC4267907910403D06B14E14 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 11E3D039DD6885FED8CB12CF16627CCC /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 123CA8DD3E6A3BCB35A0A845F17BF863 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + 127F912C8B415191F86EC0E2753DA599 /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.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 = ""; }; + 12E7629120786009C83B744C17E0400B /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 12EDFC33FED7F5C4559BC237114B9556 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 137CCACFE2EA67A4717A2D35BDD1F25A /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 13410CAFB030BCA55ABD16F4561D78BD /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 1380B4BF8CCD34CA33D07647571586E9 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.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 = ""; }; 13ED540E431E29B3E235F3EFA7249E95 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; - 14932E74E710E29AFB2ABDDFFA659B8B /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 149920DA8D663BC274EDDD280DD0526C /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; 14D12918B4EE1A6B8AC37D2DDC5916FE /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 1557F6150561AE28AD419B52693092AE /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 158650143D91AEEFB7F6C2EE77EA8B09 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 150097019E4858507C8959CF60FC0322 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.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 = ""; }; - 165E79EC15B2A650554BB4E6FB9F536C /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 164F926D7F59098CD017B5D0C2CE62C2 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; 1688EE83E950851DBD776306319028FB /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 1690D7B8F71BC664180EA85CB04F8DB3 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 169448B9D184FAF212440E6AEEFFCCF5 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - 16B7760A8820225A63D817C6BB3D3398 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; + 16CF19936346F53C9AADFC496A01BFFE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; 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 = ""; }; - 16F13CD9A4A583163E1093215792869D /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; - 173B1E8BDA805C8C633B709193D60718 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - 173CE0DAEBEE072BE0F75998A652E853 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - 17AC175BF97175222A6FF39520436A02 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + 170A9AA051DF6569384D3575AAE94D52 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + 1764713FC3100BAF4A60A03AADC99E3A /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + 1776896CFB2DB7D53F6870D097871B60 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 17A2F616744B6BC684017693ABE836D2 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 17D71991D0280E8C03F310F0CAABB18F /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; - 17E93F44B9FCA03306656D60A8112F2C /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 17F1E0CD0FF555CDFBC37146CF250C38 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 17FB9BC182E05A836B45311886723FF1 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 184C50745E62B39FD0170281B7CD4E78 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 18243DD4D0C8AA2DCCE5655F82047778 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; + 183C6EBF70401B1425D41AEF4161F091 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; 185920CE3F01EE5D5EFDCD7E82E2116C /* GPBUnknownFieldSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet.h; path = objectivec/GPBUnknownFieldSet.h; sourceTree = ""; }; - 185F7B6A44208D005359D8A00878E2F2 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 191E3FE0B263B68F0AB0C60F4B2939E2 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 187A9643A4FF2215A9801B19750A5136 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 18CC51F21164F07278902C05F56DC095 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 1929B7E531E232773EDA047347324E93 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 192B96F1963E264CCFEBC3534FC8A498 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - 1954559BB85761360B4335D2246E6816 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 199B4A5A6EAA07BC42A3B2AE3753F7F3 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; - 19B89CE36B3D24F1BF0499BF735EF583 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; - 19C738559C7A5F02105B64F39AE6B5CA /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; + 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; 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 = ""; }; - 19EC831241BDF795AD30A06916E78BDE /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - 19F365D90299F60D2B38B6CAF1CBBDE3 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; 1A15FBFECB164015748AEC5366BF3741 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - 1A62C3C5141921106880025FD3F7C22E /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 1ABD1C4A2F2C3C0271F1F0C1B7DDBA59 /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1ACA7C99B140EE5C9C6BDCC0C0940463 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 1A342D6CA0E0B6DBBB400AB956F8C3CE /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1A8840AD3D979C04E9B8B92AC953EF52 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.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 = ""; }; - 1BD414930957BB53AF468D1DDA25B014 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 1B718E7142F8CC53B8F1D6137C99962D /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 1C20DB8F540F0DE1E287FBDF42C511B3 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 1C9814185C288FDB35A991A7522CC8C7 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + 1C114DDAD1165D430FB0128DECA1DD6C /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + 1C4785B1DDB61C47FF2EC81C8649FAA5 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; 1CB3EF08CDD1CF865F3C42A5BB449708 /* Wrappers.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wrappers.pbobjc.h; path = objectivec/google/protobuf/Wrappers.pbobjc.h; sourceTree = ""; }; - 1CE00249C1B2AC7A5F90B2EC58F3F2CB /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; 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 = ""; }; 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 = ""; }; - 1DC29CF604E07C4121AF8449730F6480 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 1DE37CAAC69BFC524C5C8A3CF4F6945E /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 1DE4B51719C8796AC7C15A327100306E /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 1E43EB2AFBD804F643193AB4A506FDD2 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1E5177A82CD7E641E7A8F69772502085 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1E1EA1966105DB4145F63C6DE9046BE0 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 1E24E3899E9008960CF08C5FF92E9DA0 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 1E2EA95C644202201F3937FBDBD07262 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + 1E667B3C96D4F999D2410D9B2AB9CCAF /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 1EEED601F3F0ADAACF378FA3F3974B85 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 1F1E9449E2E63E058F57AC955C63F663 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 1F810D692381A33A2CEC30F4E7FDA2A0 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; 1F9DA817DD136F20858650D09F53CFAE /* GULObjectSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULObjectSwizzler.m; path = GoogleUtilities/ISASwizzler/GULObjectSwizzler.m; sourceTree = ""; }; + 1FDAE339B7B4EAE8669C929838EE87D8 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 1FE6B4110E349310CB49B144EEEBB44C /* FirebaseRemoteConfig.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseRemoteConfig.framework; path = Frameworks/FirebaseRemoteConfig.framework; sourceTree = ""; }; - 2014671FA21DB7CA8D70C01A59531CF8 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 204F9986ABC8D5FF9CEE24912256F6D4 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + 201154431839DDDE3CE20ABBC609F03F /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + 2039655505827A180E799523D0C59074 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.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 = ""; }; 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers_RuntimeSupport.h; path = objectivec/GPBProtocolBuffers_RuntimeSupport.h; sourceTree = ""; }; - 20F8E2DDAAE085262B9B0972E3FB40F9 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2109BD650E42AB4E87AC3D378D671C14 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 20CC13DF451E62D3958DD5354B20BB3D /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + 20CEAE3E21A1A598377AEF37AA77F518 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 210B584824E97369E8F8B10D150C27F1 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 21ACB0CB855CA8D0ADB6C4F5E8DBE9CD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 21DC604AEE66B5EE0E5BD031F2C959B8 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + 21EAE7CAD827EAFB28F5AE9B36F0FF4D /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; 22293BA067850112F37BE2951B912138 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 22314AB86DE9277876E30B6F0636F25E /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 22411610F0F5F2E64FDD2EC056F33C5C /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - 2278509D63EC03D3EB39AE7D2E917B4B /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 2288222AD0A54491F6BF05DC9D5C4702 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; - 22EDA30B64BE2E543DF1B0B3DAF34C19 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; - 23242CF9C7621145831D05D877197437 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; - 238849F41599ED370F2286D67EC3326B /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 23C5A22806CE71CDBCC9D7C2BAC7046D /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 243936168A9D9B27F417C64A9ED4C4DC /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 248BD15B47C748C548521943253B99BC /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 22462B515DBBEBBC284F1C23FAEC8F8F /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 22B1D6FD8E5BFE1294F9BF136FD98AE5 /* libreact-native-realm-path.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-realm-path.a"; path = "libreact-native-realm-path.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 22C42CC35973126B66C0EE13EE050413 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 23AC3E213F817BFBB129A2E6F5E724D3 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; + 23FCB7B958C238F900BDE295D6EA6A20 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 24172F1F2D1120AE004421165710D403 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 24354A4F330C03ED81FFBBC1B72C3024 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 2562A926A6486480497E1D7816A3BBEE /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 25DD481FF87F035BD9DF908A1B96A7AC /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 264195E086498FDC318ED443955050EC /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; - 27021A74E2CED0F15E858A559C9D73DC /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 2758EB1A41D3F984AABC6C651A56A2A6 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 279714E82B7622AB40021F0705546733 /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 262757B1EEFE3577ECE6B42C3C191DE4 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 269BB7C29768AE4AE43F0C37D6A48C8B /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + 270E4394E0A6B293743AD0F1251BFBAD /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 280279ABA1A335E9477ABDECC2FD23DD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 288D84180E70FD5FF4C433B8E81050E4 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 28941FC5CF0B76D777F4C836E1384EDC /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 28B25E27C1852D007CFAABB8996774C1 /* 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; }; - 293AD31A0F279816AEA595C6F41B45C3 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - 2961A7EAACE11AE4FEA4B6801DB891C8 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 29697AF1CA948D59E327D63A04FFC3F6 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 299100DCF93023EF88279144D44979D4 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; - 2997917581386E0D376C9CECDC2DA4B6 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - 29A166CB20882AB177F85A97B23EF50F /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; + 27FEA6A869170AA820CB26BB8E0159D7 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 281E951947D4190E42DE8143BF13C3B9 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 282ACFD6A455FA55A484FDD34C4528EF /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 28507E4DF8A45DB17887372FAFC2467D /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + 2874BC72566B368977EAC98634FDB1DC /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 288E5BA3E66031E7E9D26F55B4207399 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 291D5E4B3399B7FBF6C658E3D6B3EFF0 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; + 2942B5CB2BE222AEF2E0D84B8F758B4A /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 2956C0FE9045D44B70E5AE4C42F3FC5D /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 2981123EB018D4B9FC45C89CC14FD7A2 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; 29B77C1B615C9F7970503A7E8C200548 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; 29CC28732B35F69DDD786CBEBEED2149 /* GPBDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary.h; path = objectivec/GPBDictionary.h; sourceTree = ""; }; - 2A2A193A256DD42FA43F7457A699B342 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 2A48F5A061224C167FB239B2E1C612B6 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 2A54C07D3A48A04612B210D4F1D8A25A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; 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 = ""; }; - 2B995A7F6B28BDB8D7F8C34FF59F4A49 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2BFBEC6AD5A3907A6061C1710B02F6AF /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 2C25A455E6DD0CF1D341F0AF61DF00A5 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - 2C984E6D585D4B0C2A0A6E7D370D0F93 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; - 2CB8124BD173DE2A778FBCECF1034303 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 2D080A350E097522C94AF9596F5E9517 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - 2D8B2D16CCC45C0C4EE54F334BE7381F /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 2DBAE17D64C09703886656F65D96BA5D /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 2E94F449338AD8BC60E22FBA0D29737D /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 2B83F8FCB805DB9022EA00C30FB56B14 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 2C5D702F4198078197CD9FA676606EAA /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + 2CE066FCA4FE127AC639460F79B3E4B8 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 2D0691D0AB3567DD03FB1BD831456F56 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 2D2C68E3E713B25594D842E9D9B634C4 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; + 2D50D991C41C2A400FF364635DE87971 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 2D7471BCD2ECF20F29D8176DDD92B31F /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 2DD17ED321FE78AEB6B9C3E860ABDC60 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 2E3E0741DD379C5285961D2E986BA173 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Protobuf.xcconfig; sourceTree = ""; }; - 2F093F97CFD6E0B8D843F6EC332BD622 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebasePerformance.xcconfig; sourceTree = ""; }; - 30128AD1F92F2F61768C2C4FE2D2BB6A /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + 2F7BA665B98DC5E312B0A27CF309B94E /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + 2F99EE79C025EB9F2A9E303721C5092D /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 2FB035AD0A1082098738AB35D89417EB /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 30580C50B46345071F408CA2EA02F79D /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 305D748336532294A6D1F1837DB1C8F1 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 307DEA27A19126FF792E51D91EA7ADDE /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3092B739FF8B55E5918F75BCA4D731B5 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; 30D6FDCC52D608CFD7FA1FAE7409E462 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 3138C521EF7F36EE8AED50D94C5EE882 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 314B599D37DCA06E72B527C47C69E89E /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 315FF43D145106CD4B9220A41A039233 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - 31B2D72D412B419A09EEE2219636D0D5 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 3115E225B4717F08CE910FDCA31ADBB4 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 3196A703CD641D488C5EA5E5CF995DF4 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 31CE63845539D86DE8CE4A6C8B377076 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 31D92F756446ACCF493B74AC39028F5C /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; + 3228898EAB4614681F1A663586CE8FF3 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; 32461DFC0E47CD7259441A160789160E /* GPBArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray.h; path = objectivec/GPBArray.h; sourceTree = ""; }; + 32BA152A12F5CB214EFDB52F9BCDA3D9 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + 32BD306560C8AC22487DFFB84B4CD410 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 32CF95A31BEDBF962A756F6BE0DBFD42 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; 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 = ""; }; + 32FDC3D31CB29B257DC3BE2114033AF1 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 34432C47D34E65F676CAB8D56FC8047C /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 34D140AEBF119C2B4790F452A2EB892C /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + 34B9CEF05B764B94F7CFDA5EB025FC44 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 34C600FE6F8F95748E3897D028F4246E /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + 34DFAF2D1DED544692E495C783EF7E82 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 34EB4660DCD9E5AA269B837D869D4633 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + 350194664AD90B13B8325EF9C94429F6 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; 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 = ""; }; - 356D99420FC4263107462E2438047E08 /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; - 35E30A595E6909AA5F41CCED85F0C6C6 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - 363DD865BA3FBB02C98DA6EC7F0A71E8 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - 36C81AEFA620AE9A42C264C6656520E1 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 36E9D2229ACF5C9B8E86F56081C62376 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 3772F0901A9CE2E034F09E7889F7F1ED /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 35D64FD4EA6D92431EB73684DC2C82E3 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 36F1618203FA7946D46848EC7809DFDA /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 37883D95D5D7529CBE8638392C856871 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzledObject.m; path = GoogleUtilities/ISASwizzler/GULSwizzledObject.m; sourceTree = ""; }; - 38078D2BA55DD82B1AC04A5CAE128CFB /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; 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 = ""; }; - 3997FC6F3D10DE3F652E3AD4AB9A980A /* 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; }; - 3A2CA0453EB4FA3888A09328AFB0C15A /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + 38A5683A8BD41FB382059740D6082296 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 38B5379326830579CE5929312968EED4 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 39823D0CADDD07BE24C0F0AD6B419033 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 39AD2C8AD9970E5E1DE289AE559FEE74 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + 39BBFE25A926E5BCA0D4A66F3B963613 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; 3A49939A60E602BB2BA3160182C8E331 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; + 3A661AD17FFBAF7F488FF7A504646504 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.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 = ""; }; - 3A981B06E9EB8B729CB585B76106314B /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 3AD149B7F3A980771CA2BD526A41981A /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - 3AECD67ABA483DBB6206FCA44CEC7F51 /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 3B15F4E140B029FCE4C4A39A3C7F7B24 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - 3B3731A966B3B8999F102BD1C975B35C /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3BC225C69062F456E3881450915A525A /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - 3BC270C6949CA0301290C3350566DBC8 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 3B778136501A6230F2FF88C52F56DD8D /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 3C24C1DB9F2C7EE07196D2C247A09366 /* GPBUtilities_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities_PackagePrivate.h; path = objectivec/GPBUtilities_PackagePrivate.h; sourceTree = ""; }; - 3C4A54363357B1A902A650261B387187 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; - 3C81BC2CC57CEA9279F85270AD705088 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 3C36A8962D03A67E577C6B09E11EBFF7 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; - 3C938C3E44C1FC6FECA651BDAC5FF134 /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 3CDA4147144E021ACD13C42D1FFCB4C7 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - 3D45135F223366E3283A556313AD3F8A /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 3CE48E45CE5BAF8BF94C53ADDE0DE222 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; + 3D4A5ED1F22FFC6129C028A8EA210C70 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 3E1BFD391AF5C7C626832E6E549629B2 /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DEEC8163F843FED9B19708AD5E1533B /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDictionary.m; path = objectivec/GPBDictionary.m; sourceTree = ""; }; + 3E3948F850A1CB063386B3E7A8F82FC4 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 3E57DE0F9750DAFB7CADB3C4AB1E7DA3 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - 3E6EA7847936E331E86B362257DCC4D6 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 3EB24B923885AFC2315569A7A491AE71 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - 3ECA18BEEA9F8B293CF06EDA0BBB24D9 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 3F1724CF420D8B036660ABBF26E45A70 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - 3F1B13F570F57C02BADE457AB62783B3 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 3F6800369DA08462CB599FA34B9B109D /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 3FAFEC3BA6F7A549C49CE3DF0456769F /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 404BA4400EBFEDAC8B7396B95013BE5E /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - 40577C9BC8C9BB454FC1C20E6308332D /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - 41196DB3E7DD1FEA9F8F2D0D1E80351D /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 3E76908755FC2B9A8B7E43567117B5BF /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 3E8B041F27FCBABA95CC7B7847CFACA4 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + 3EE00389D5A2B0AFE67DC842DAE12C09 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 3F8A3BDAAA1AA90414AB0385713C4B28 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 4057EDA81321BC411E742EDA4FC195A7 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 40AAD9902F8CFC8829E817508F6DC261 /* 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; }; 4124992184BAF918EAD45DF0D83DA693 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; + 4133B33AD49733A3EA36BC520C173B9A /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 415ADA9861FDA22955FC4BBE92B40694 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - 417D09F52F13DD79EC13800EAFB69A50 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 419DE0EDBF8CF05904C959E23D0BFA2A /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 413521BFE065BB2AF805AEE3005FAA3B /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 414FA7C11012362AA14838182726322C /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; + 416CD06C0FF93FB37E121FE9CE0F9BE9 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + 4181168805CF7F38C4CD6DBDF973C915 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 418F84B1BC853CE1E7778D1CE01C8C39 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 4191361051666A0D9CF54E7E9F6E10B5 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + 41967FED9B51CDE9F07AE089E8659392 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 41AACC33F0CED1172B53008DBFE3F4C1 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 41C8503B94E6A30E3BEFDE038A998283 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; 4217C74187711229B5945ADEDB0A9DA0 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; + 423E31257B82A0A0E656FD66322616E8 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 42649A711DB250264423674C80322930 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; - 42A33F9114A7729630DA1F569E56E13B /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 42D1EAA2B127008A1FBD347BB1569FC5 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Source/GTMSessionUploadFetcher.h; sourceTree = ""; }; - 432DAF725631C71B41E144DC2B5684B3 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 43726AC7B25D17C12E39D6A27631A265 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; - 43C421E6714EA90B263878D98C474E94 /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 432064AEBC8B44129D819261DB9BB286 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 43D6ACD534F47AFBFF26145E0956F9D8 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; + 44CC9C6744E46E695B59227BC3EBA162 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 44DF0AE6FE0F26A22941191B212A4DCB /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 44EDF5C1322BE3BAF0972A2222A06B24 /* 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; }; 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; + 4563015111A319DAA36733D21E4E32A4 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 45678E0D230C8C88D1244A897B54EFAE /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; 4573011531F44A2BF83F4401B9AA859F /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 45AD649CA86248F9F13528F84BFE5C21 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 45D9C72B4E997D71B1919CDEF7327C2E /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 45F093FC377E912E2505F8298225239B /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - 45FFA118E790BFDC6174450D92BBE0C4 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 461925347A30AE6FAE3CD7B318D4600B /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 461925FC1802935011DA256790C0BF92 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + 4640543A95B5F61A4FAD8B3565DBE649 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + 465361999C9275A0EB0D18E87ACF63BA /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 4682CCF683C4BAD900558FDA6C3A7A7F /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; 4690E70186C445A91474BBC3A31BEAB2 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; - 46C73FC4C6E049E87531CB97A53AB8B5 /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; + 46B0BA5CC740171CCC1DBF9EE7E4BE7C /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 46DFE42EE0D6F54E9FE6E8AB5C5272DE /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 46E3CBCDE514D6A5F8963BE47AC1CF3C /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 475CDA23EE58A9149A0B188381E6E4B9 /* Struct.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Struct.pbobjc.m; path = objectivec/google/protobuf/Struct.pbobjc.m; sourceTree = ""; }; + 47A55DBB09F5BE29646497544E693C78 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - 4881EDA209005C3F783C840139BBD1A6 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; - 49162A0F4C1EFEB1FEFDB82BEE94A4D5 /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; - 49387096FA2AFBB197960FD0CBD2191B /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + 47AEF13B03A35A95FFBD0419401781BC /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 47B726840D4225B546CD9BD81E2D9A86 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; + 480C81E4CEDE746C6B881C6D572D92CE /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 48332F5C5CC746B2E69E6468BDDFEC98 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 485D50D7BFC9687A7C29756467E5E9C7 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 48648007DB5D889DCB4B583D1115E291 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 48E433A0F3B7D0107DECD2C91E923DB8 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 48EE6575C1CFEA2AEDE0D19DF8D79F0E /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 48FF6D55B4E5998A341BDF28BC20DD9D /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + 49159153A4FDE38C500578FA94C253BE /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; + 49325372FA42CFCB032570E0EE5D956D /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Source/GTMSessionFetcher.h; sourceTree = ""; }; - 49558810BBAB8699A2EE7BEEE87EBFDF /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - 4A2466F90EC76607419C4398B568236E /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 4A2AEDA154988ACD36491CDB432768BE /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 49CA5986950067CEA5A6219E63D41349 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; 4A392B2042022C20AA6278A6488F3450 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; - 4A5832B4F89CD47C76A02BD8150F0387 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Public/FIRAnalyticsConfiguration.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 = ""; }; + 4B8BBCBB070351DFF65575D861D357A3 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; + 4BD4B8AFBAFC43A30659BE157117345A /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 4BE6672CD697BAD7F49EDFC706756FFC /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; + 4C2E17571810B87B9073CBD85639CAF4 /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 4C5F47A618BFB61C3AAEB520EF104221 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; 4C8B860B45EC3D0A6958A4F91C0490A3 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; + 4C9888A3379C92194BD14FCA592E7445 /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; + 4CAC3B2203776ADA84BCAE41FBE0379F /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 4CDCC731A2FBCA55937C58A6A91FE275 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 4CE6808B101A8216C4CA753D560B5BCD /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + 4CEA4213CE111A3FFBA957B4ADFF9691 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 4D1585F3DBD498E2CC26B4A4E578ED4B /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; 4D1B92FF422855E7F24CBC59BA2A31C4 /* GPBCodedOutputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream_PackagePrivate.h; path = objectivec/GPBCodedOutputStream_PackagePrivate.h; sourceTree = ""; }; - 4D2DA5811BC85AF3E1B3107B9EB5F285 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4DB1D4150718C4CAFA487244471DCB74 /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.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 = ""; }; - 4E123B7DA0F4AC93E2691CB84EA8EB3F /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField.h; path = objectivec/GPBUnknownField.h; sourceTree = ""; }; - 4E31591A949C9A353D92ACF2D34F7D86 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - 4E70CBA0873EDB5B5ACD5D3EEAC94C57 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 4E9D4707798DAF1F5421CA0767AD2D13 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 4F03A71B1A7A836713EA99C0895B5175 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 4F20D7BC6AB73EF8EF68D083EFEB0B53 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - 4F5B2B61643B7E9F83E3079EA2B2E2D1 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 4E35DF6C0874AF4CA50F6D2C650272A0 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 4E562CAB1F4E2736432E19B7B6E87F87 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 4E8B52E9B563C153A19B4C1DC383D066 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 4F0CEEE398FCB4324B7D7501713141C8 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 4F93B070B93F0B36E69C2FDFC7E91FDF /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 4FC96F0730C911C2CEE9C369BAA1957C /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 4FEFC3824E885097B5EFA39D8520E9AC /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; + 4F6F20E40599421E57D12627A5538ED4 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor_PackagePrivate.h; path = objectivec/GPBDescriptor_PackagePrivate.h; sourceTree = ""; }; - 50931769527BAD09EACEBAE3CBDBDDC7 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUtilities.m; path = objectivec/GPBUtilities.m; sourceTree = ""; }; - 50EBBDFA59A434C9A62FB602CBA3B1E6 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + 5150A9358391484C756E8161910D3C18 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; 515A1F6C79F560E37E999D318248B68B /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; - 51A895A0A971D9D4E1622D4B6DFEC5DB /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + 5172631FDCE8C9C59C45966058DE6F48 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 51DB1D488B9CD90333D4917C16942248 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; + 51E708DA0A9C14F35DD05A9DCCC21217 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; 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 = ""; }; - 5274787BB9193393C5824E6F9B8E9BAD /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; - 527DF256BC386FD438DAA5A629668677 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - 528FD7D8D0683E152C34D14023037CC3 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 52DA011A6498E4ED329FDA6D3280D6C9 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 52E1F8271B715F55D9EFC4011B1C7EF1 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 531D85B2F7BF494A0CE2FFD93F0CFAD8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 533D6BFB91D7A458BC726FE1222BE85D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 53BCFBEF05418708554115DD5BCF0E19 /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; - 5438366E2EE31FC03C47D38F45877FDD /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + 535FFD5DA2DE0A19D6DA6A93C9FB9046 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 53A029829CB0C1059313046ABCF15D59 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 53F619506865DE124BE5E05A073A03E4 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + 5419204EE00E59FC874A55C46F153D6D /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 54627613061D55A797A2AFCFB0A864D7 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 5546DF6BCFF5A704D8926DB6A63F14C9 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - 558AD0D4B08ADCC47995EE4500B65D87 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 55A0E6C10311E44F2310CC18F81AFE38 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 55A4F44BEF0004ADC20ECEA8E73A5435 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - 55E34EA0E5068899706C55903C799F7B /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 54B57C0ADF05903074C65E624C0E439F /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 54B82F8D20049A45DA627A7CB9FBA8E2 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 54BE76A522C9DABBC35493B27C458A39 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 55084514ED99B37BF77EE63C2CAE3806 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; 565D524286473269CBBCCFB3B6EDD6AC /* GPBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities.h; path = objectivec/GPBUtilities.h; sourceTree = ""; }; - 56A2B108273B063A5211EA094F4ED4C0 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 57222B5759241C74A270E60C1E7D8A52 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - 574386FF2083A0B4FE47D6E9A953A9C2 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 5793932406A356EA097D1934027877FD /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 56CC963AEEF20D3D02D0A547B7C8275E /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 5750F3E6A2AA50C6FF6AA2DD3170DB67 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.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 = ""; }; + 579F75F6FEAB263868830687AF8BCC81 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 5800AED6AC59723F6BB5DE3ADA24D86A /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 5806880501A07C1ACB9A7138A81669B0 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; - 58706CC7A8E0E0F55DD79B0A97259068 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; 58EFA2443DE01F9B740204B2BDDAE0DE /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - 5956F9FB9211682296BEF07D54D91AA9 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; 59580373A446659C07B9D6B12E8B769F /* FIRInstanceIDTokenInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenInfo.m; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.m; sourceTree = ""; }; - 5989744E048D625A4E09120B6536948A /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 598F4C9DE4B0BEB552B2B52903AF9FB4 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; 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 = ""; }; + 59ED33093AE35BF1B618556219072CB8 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; 59EDFF0DAF963120B38FF8CB03EFD21D /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 5A0FFFD4ADE7F817295DDA4CECEAD0FD /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 59FB9F33868CAB17638055C7934E4EE2 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 5A0D73F18FB51763AE9C6751ACE6E9CB /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; 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 = ""; }; - 5A964F6CF330313BFE4BAA45800B4261 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 5AA19343AAC80303C5A5B8F29E49BB8C /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 5ACA587B793D7FC4BC535A8B27C1CEA2 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 5ACE61F08BAECB8D855C73D8A8CE5A64 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; + 5A98F58275B7CEF021261333C77FCE29 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-realm-path.xcconfig"; sourceTree = ""; }; + 5ACCCE0F667432DE30108EFC5FEA0F34 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 5B069C131AFA870F406AEEA75A8AEEC4 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 5B3327C8B6A38BF190B2AA888DD7E075 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 5BE41C9DFDC4FD7C408776028F523ED8 /* FirebaseABTesting.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseABTesting.framework; path = Frameworks/FirebaseABTesting.framework; sourceTree = ""; }; - 5BF82CB903CAEFA2CA66A7762B8FE6C8 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; 5C091A0338C15E8B88682282FA526CA6 /* FIRInstanceIDStringEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDStringEncoding.h; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.h; sourceTree = ""; }; - 5C31771B83CA2DF927622094B5ECBECE /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - 5C353E80F9B563C9F63C040A3F248A8A /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; - 5C475BFC3B887DDC14B0FBBB399E513C /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 5CFB7C6A8B244851D1CE2579D38DF058 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 5D0E5D23D1E2458E95A1E6E31786EB4F /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; - 5DCECA80F7D53D276805666BD165645C /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 5DD693CACE25529F4F53940C82F8DE03 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 5C8C31C622D5C9E2D324202444C2EE59 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + 5CD210D74B0444D19FD5459685DD774C /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; + 5CE3172E3F8B84D856023FF63BC204B7 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 5CF5D732BAB724EF51C5903942CC6B51 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 5D2032E9F4019B31D00610FD21267D5D /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 5D232D2C7844F7A78426B79BF4A4E345 /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; + 5DB1AB07BBF2DBAF40ABD80E52F55D31 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; 5E12617144A23133BF6F8F4556C822FE /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; 5E185919BB79C8C7935702959B1F792F /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; - 5E256E66581FA5E025A0799C4735EF61 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 5E27655892D05466617A8A07FDBD8687 /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; - 5E40CAE250D12558A438C99703D4DE29 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; 5E4F9A756C618643123B7CD818A7BB8E /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 5EB824662B96430D9F3985A44463BBB5 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 5ED162C6C56D002AE0D7E5F1C0458B6C /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 5EEA56166E7C07EEC7370B8725649E6C /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 5EF04BCCFDCDFF5ADA0332DB0BB7D116 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - 5F11E59D67421469713D624C045DE7CC /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 5F2897BE7F6FD75D116BAD4A13ED3B4F /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - 5F83929F84751E54C2AD0013142488C7 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 5FA27A84A40558A0364A661B5B09A1D2 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 601710D16C5235B02C8EB37999D65CB5 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 5E5C57C3F09EA49FB14D2E70C1AB3C41 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 5E7EF2A91C8C320D932C4F7C42E6CC7E /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + 5F0C35B11D1E749588F69C61F1587E8F /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 5F33CBB2C282BAC4429A8808AB9AA208 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 600A53DDA7B71049FA55035529E60C61 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 6077EA5CD55FB91C1E4027E822787BD5 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; - 60C7FD7037029C43CD140989F5A29CAD /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + 60584D3AA8192A7EB3622726C89CAB29 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 609CD3EE7641A665610E5B86E7AE5824 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; + 60A1AB1480F36294F6AA3B69AF8473E7 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.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 = ""; }; - 611DD4ECC401BC168294B09940A8F9A1 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; - 614454A48C354D9D71C00AF5ACA6EDBF /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 61C49D4B31D55252E0D8F7450606E4D0 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 6113A5F1DC0B84656CD70D7A8E335A92 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + 612E527E6C2BC5806B7E9FA73C73858B /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 612E87842C8211908C4495C9188EE21D /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 614DD65B6873751CF524AB61C31DC521 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; 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 = ""; }; 622A888BCCAB419A51B31C52E811CF12 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; - 62C0E0D06B1FBD4CDD835AE4E33CE57A /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; - 62F12B6E030D7694A9B111AC8B39775C /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 626A07274D4EB6A940A6B2AF98F40A12 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; + 626BFA717D2D14B01FA5E1C99B9403F8 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 629D90420A2F20F43A29C88552E97659 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 62B8E9E1E88EB990E7AC76F3B6B38A71 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; 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 = ""; }; - 631C115D4AF9B7C483665463DD5BE381 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 633A59BED92F90132D8F5CF8A112532E /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - 635D08C3DB3DDA537133A7DA3A41F4D9 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 63BC27C9013C5194886F9806DD136E6B /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + 63A2C7F825019C2F37A3D5B672CCC93A /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6415DBDE7710F559C63ADE08CDD27AD9 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 642AF918983609F8A2E09DF67928CF55 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; + 647A2D104D639DD94A4305CABAF06022 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 64830F597669F4220C883FD8271F733B /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; 6499163217FEC226F460D5D8529782C6 /* Empty.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Empty.pbobjc.h; path = objectivec/google/protobuf/Empty.pbobjc.h; sourceTree = ""; }; 64EE348660F8A8DDAABFA36434FE1DCE /* Timestamp.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Timestamp.pbobjc.m; path = objectivec/google/protobuf/Timestamp.pbobjc.m; sourceTree = ""; }; + 650C9B79996B2911D7727E15751018CA /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 650F1F89B44BDADA600F9DD8034D21E5 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 651073CDC0948953C39B5608AC715876 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 65132A743ADEE9456C90C121015ACA6A /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; 6513B153A69122DA4C3567D902EF3824 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; - 6644F7FB5AC5C877BE5D7918BA93966F /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 65593785A256392F171E73214D13D3AA /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 6575EBF726D4641F29236047BFC4B500 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; + 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + 663D14443F7FD0802F2D812B2153AEAB /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 668AE27C04386475A4F88728253D308A /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 66EEC93AE6A6BC4AF291EEBF435B41E6 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 66D0F358A416D7411CBE30E3A6E5571F /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 66F256A6104111E853B12B823537153B /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; 6734DE64ED0684F4ED7E862F0B473C09 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSData+zlib.h"; path = "Foundation/GTMNSData+zlib.h"; sourceTree = ""; }; - 674F28B26B9DF101486D5F666050E3F7 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 6779091CB3A5F1F4950CEDE345154699 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + 6770DB80DA2AD6203EE6306E2E63A14F /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; 677CA4BB009608055FD2DE2322188AD1 /* GPBArray.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBArray.m; path = objectivec/GPBArray.m; sourceTree = ""; }; + 678CA992E44B00AAC55BFD1EBEF71CE4 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; 679D1D88CD0BDF8F95100BFABEEEB36C /* FirebasePerformance.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebasePerformance.framework; path = Frameworks/FirebasePerformance.framework; sourceTree = ""; }; - 679D70109CAFC796BA3B3332701D3898 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 67B2B489E06B41EC9E5F2917C2355E9A /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; - 67DFE3C6D8C3CA832A5A9DE83A740C69 /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - 67F9FFB21F61BADAEC011B91C6AC6F40 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 683B8DF13FF50A85558EDED661C1ECD8 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 6842129DEE9BB42323033ABD94A828E1 /* 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; }; + 688FCEAA10FD16A660802F663039A8B6 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 68A1E84C5B4C1FA0364534DF5FA9CA2B /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - 69089CC3E936539BE132560E11A43A13 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 691EF9B1D06BA19043426138C3BC30A5 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 6932A6007E15B7DD1307D9723BEF9CD6 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 68D28C2718DE550E5EFCC4D6C2A317CD /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 68F770181F1569A7865F7A5FC782E840 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.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 = ""; }; - 69CFBA8D3DF8166EB9683C810F437182 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 69D9DE89267DD3C5E5651CDA56232E31 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 696D040A55B087A2BE9DA4BE748E7F67 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; + 699F679A626C7359CCCBD0B1CA71871B /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; 69E9189795301B078917D0DCC1A8CA75 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - 69FACA81757661BC273C0B8866EB8A3B /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 6ABA78C8B38CA6B1881EB691BF93978E /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 6AEDEA44575054AF11CC2DF2BFCC63A9 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - 6B349EBF09EAD9269AD69C43FE02F590 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 6B4A4721B5CAF7955954A6E3ADFBACD3 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - 6B8D0C94F9B19E757130BCF491DBB132 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; + 6A110EC136EFD924DC27529D5AA5BBEF /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 6A21E7816440B010D5C26FCE956D83FD /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 6A76D27782425AD5DAD5BA0BED7F79C0 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 6BB2A262F38170E8E7DCFD64388D952C /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; + 6BD770217FE1351E2C0E91F27F6BF098 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; 6C0A208B50BC7DD0CB91ED9CAC3066BE /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; - 6C39F1753DA29E5A6D9606FEEE72D98F /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 6CEEED1B3C1D4D55294DF073F65F93AF /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 6CA3557D2BF1F9B7BE7F1861AE5133F3 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; 6D1AC57504505A93DD8D0EA687056CBB /* FieldMask.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FieldMask.pbobjc.m; path = objectivec/google/protobuf/FieldMask.pbobjc.m; sourceTree = ""; }; - 6D4CA1ACC838745B51F8A5752971E375 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; + 6D5C418B5EEC894AA078554767CE3DDC /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6D82F565EC3AB854EB6657E0657222C2 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - 6D833940F8920FEFC2F9755D26B57431 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 6DB842E29EB9934D5B365DE7714ED23B /* FirebaseAnalytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseAnalytics.framework; path = Frameworks/FirebaseAnalytics.framework; sourceTree = ""; }; - 6DBCFE241D50787D88C02583958BE5CA /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; 6DC579C09B3BA22DD3F694833A665382 /* Crashlytics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Crashlytics.framework; path = iOS/Crashlytics.framework; sourceTree = ""; }; + 6DCC7DE2986DBBEA049611130B984DB8 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.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 = ""; }; - 6E16EE4C9961CA3083C4F81E5FC9E601 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; - 6E516B77930E058AFB80698F795EA6B3 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; - 6F5BDF1967164F406936BE6B6960EC62 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 6F5E56B8A4FA4ECD1C271132B8EFA3D3 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; - 6F9D22BEACE602E1C70D2122704EF784 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6FB1ADB2CCF5F21EF72E6D25B9F80B6D /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; - 700D53107E0FB5F943E1DA347DE1C975 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 701975F31F03CA2F495B52D2BEEBCDC3 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 6E39E7D7708C363FA17DE810515F8A00 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 6E5E0610745F4E4308299B84727BCC34 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 6E6EDEBAB005F945C63F59DBDF1D0563 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 6EE4B15CE3F0C04296F28031DD3EFCAB /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; + 6F1C772A621F52EF8AC0C72A67330354 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6F82F325D530BDDAF3B5EEFCFB0411D9 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 6F9D2C2C8648E85CB2D32F25F6BB0195 /* 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; }; + 6F9FA40FA2690D8853B98D5C27140E51 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; 706A49ED0395C47363714A6B97AE0F47 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - 7093BA321ABCDCB1B75EC0B164ED3A33 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - 71150703C438DDFB2AC1E24FB55644B0 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; + 70930EE1A8493B1B9F936E66702CB83A /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor.h; path = objectivec/GPBDescriptor.h; sourceTree = ""; }; - 711FC9F5BA0579633D01BBDB5A3A0427 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 7136EB85F7AC91B8D3274ABB7F1255F1 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - 7139D7D01C9615FB45B1C6B4F672C12C /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 718248C8BBBB282FA10ADBB2655DB985 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 720498850107B645922F11A5B0E2CFA1 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; - 721D456B3E4013B1BB21C920B4B8B665 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + 71BD25DC2A473B72A2B6D5B498555F86 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 7206EE91F9B245492AF4DF0122ADB92E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7228F1A5DD1E7449CFFAA650E17D8BF7 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - 7230649D892A619044E02EC65262E76B /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 72D37308895834ACFB240C944C5529E4 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 7343094DFB01B902591385FD327C2AF1 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - 7390ED5FA4633A08C3A3626D0C0FFDBB /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 73CDE3A149000C4FFAE8FB3211227596 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; - 747393603D7AEA89114E7A5E2375A908 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 72509B318BC71FD668322435733BC3F0 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; + 72CBE19DF375F16284A08576395BBD58 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + 72D7296DCA2ADBEF058949326873E89E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 733E223CFDD262EF43FBBD8807E803EB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 73445129AC7FB86EE46F20FB12E729DF /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 7392E40D706A1072611B4CFFF50E1D2E /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 739A7736657BD48D2E30CEF963896A54 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; + 73EFD8BA63B9A167937E339F74455143 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 7419615BE9C77060447B9498E8C5BC09 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 743FA771575F96193CB1D17C45BB8147 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7440D1263C8C236D9E80386E59139187 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 74A3D7002BB70B85072A55666993838E /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - 74FDDE699F10FFBCD13225E59BBCBCEE /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; - 751FA6A2DDEF00EED6F2D6EA974D5F2B /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - 75AA52977A1E1150C14665F8A45F2C38 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 751B6FB6DE9B5B296B0C4CF7E0F625C9 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 754584A37D6E703EFC54974BFEB329AB /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 755EBB24F0F2AF4ABC96112910076E99 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + 75717BEF0A669997409833CF33E496CA /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; 75E5F2FAE3615F969E1B0DA9DD23A307 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 75F4782203BE073C5446F4EAF6B76DC7 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 769B813EB142B15699A2D538E9103E94 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - 76BC3A5A5F36FE17E04E6722EF998001 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - 76E763C0DBDE2C6F426B5929C911DEEF /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 75EFAE6EC8D3C3E7B409AB2CA58A9748 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 7638DC17BC0135744115C99E36911C9A /* RNRealmPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRealmPath.m; path = ios/RNRealmPath.m; sourceTree = ""; }; + 76433928D4430C19868E79A86734E323 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 765BB06E332F1DDB985D0A2A9BD0E253 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; + 76C577F39BDA1D3D359845B58D76A5C9 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 76EBFD3CD23982CD8310269BCF2453CF /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = ""; }; - 76F4D8494445132FD057CF9C8E73B02E /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; - 76FA88DB0BF908363FDA0141F8D8C77A /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 77014D59ACDC0DA0644566364E0FDEA2 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; - 770C624527C08FEEFE631E1E1C1D7456 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 770FFF06630E6F7BC9B1F820B245202C /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 772B65C493822FF9E351BABB7F38CA83 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 77ACC020FF8B898688AF7C6AE4B6F72A /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - 78580B2EA769E5719AC6539110DD72A6 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; - 789B69C1A0EB8EDBE5975FBE095A1454 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 78B94A6F6A5136FD15BB423507DA9025 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; - 7A0060E306A97776B1474ABA2B5961E9 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 7747133CB90512689C8EA90EE1341B77 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 7808E35EEBDC3E4D79E96FC46AAC4DE8 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 783582406C0AAEC09C992FD4E848F92A /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 78BD0E89211B12181B53EA31FBC8EBEB /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + 78E5691D1FB00DDBB44E372B7794C0E5 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 7959FA3C776756C79684510CE9547B3A /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; + 796605920141ACEF9364E34651E8DFB2 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 79C0E7B6B62D12F73DCA5492EDF02096 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 79DE7B6B154816E6DCBE487BB67ED173 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; 7A29F957A43035734255D442CB7511BF /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 7AC03356C1DE8C215C87A79FEA9B211E /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 7A4C2A63A87EB9D60417017F86685D95 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 7AF620008478D4265C85C5E1B7BE9354 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 7B08E6A94A4A0FD50688F4902280F237 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - 7B4D8363B4538E5C1E0312815D2E0D7A /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7B81C6026A986ABCA75AEE570FFD353C /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + 7AD15F6451DE91C26A0FBA916918F698 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; - 7BF0F330A89DEBA38B6F8D0E7FB02C36 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; 7BF13B1EC347270A141AF1842CDAF405 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; - 7C24624E84BA77EA7194D9E0A211E313 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; - 7C26801B2EF1F03CCB4E9AE91ACC4346 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 7C2E814399C509F6046B91DD6C7410FB /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 7C9755B93FBE6CDE9A073BD353CDDF02 /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 7C757C0E204EBF0CB4DA737B5DA400AA /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 7C9619DE9593734D5AC0F94D7FDF851F /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; 7C9F66BD2F5994688215F7C214C82892 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 7CE016666AC050C85942B86100015D33 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 7CE38D1FB16DAD234E1C5A0E15A511CA /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 7D0EBDB6E699709233FA133EA7E18B4C /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; - 7D381644CED791563034E62BB3EAB5BA /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 7D73244E7FBBBB868E5027CC1F135827 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 7DE6EFDCE22A04176A1F60DC016D73A8 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 7CA7AA353495310B184835E788C1BDEA /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 7D1572D0A81CB920AC0A5BEBE601742B /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7DAD5E4B525E5A44ED572B37F5F1C820 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 7E58DC49A2D4D26720415F4EF77EAD0F /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 7EA2FB1ED4183EC2BD2FE34C37E15B07 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; + 7EBB09FA3648B85F3F0BC62F81786778 /* 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; }; + 7EC62407C213D641C084B8982037FD72 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; 7ECB7FF032D4794DA9840A5670C932BB /* NSError+FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+FIRInstanceID.m"; path = "Firebase/InstanceID/NSError+FIRInstanceID.m"; sourceTree = ""; }; 7ECE1CF94802F266870C32A042C6A6AE /* FirebaseCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseCore-dummy.m"; sourceTree = ""; }; - 7EFB65EB9FC5E2B1F2BDB585D852E58B /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; 7EFD7D606C5FCF2524B1CA130FFB8982 /* GPBUnknownField_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField_PackagePrivate.h; path = objectivec/GPBUnknownField_PackagePrivate.h; sourceTree = ""; }; - 7F0E932D0FA96BEF1B73F2CF932F6B7A /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 7F2DF0B466309B5A279FBA1DC687B6B8 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; 7F60A815345257201EB2DD6A85AE4AE3 /* GTMLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMLogger.m; path = Foundation/GTMLogger.m; sourceTree = ""; }; + 7F78FB9CC8979A1A1AE3B1411E72676C /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 7FB6FEF6E9C65093F21494725704EF43 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 7FE734CD6E27A147E8CD7BF2385CAB68 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 7FEB15F0E803D8293239AB02DA1B66EA /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 7FF36E094B3206FD9E1929A1CEFD8CE9 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 803B96165F394F194ED4A3E4BF76DF0D /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 8050186A7A19A3AF6AC03C3D457EB16D /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; + 80697C5F9E2712674F529C4476DF023A /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 8084D3241A42B62A15B74F8C533C2B59 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.xcconfig; sourceTree = ""; }; - 80EB1576F23DD23C8D061B78F428A845 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 80C0AF5D6909C059B1C4DEC7BB74C83C /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; 80F583A588A7BFDA1F7CB40F133E0521 /* GTMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMLogger.h; path = Foundation/GTMLogger.h; sourceTree = ""; }; - 810E7C3931779CC0C65318B4AB4B2E91 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - 8117FC6BE8162F0A7EAEA5B3F013B8CE /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - 81C3ED587F3B76B9BEDE35D5AEEBA127 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - 81C785106794DB64CA7A52E51AAE87CA /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 81229E7BA982B90815E3B704711C1683 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 8126B6469CB961532063EC12B48E0E40 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; + 81679495E33F981696E19ED18C1B485A /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 81A4A2D931A40792CAEFDD49740B6183 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; 822E127F41D73E1A442BAE48920F7F3E /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; - 82430EC7AE53BC00EED3F4C128826589 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.xcconfig; sourceTree = ""; }; - 828F786006E9475A8F48D9903907BF7D /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 82A674770293735DCCF21931B8F94DF9 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 829EFF3386559FD009EE63FF426BA7C7 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; 82EBFF5DB156A96271B0169DA4006590 /* libAdIdAccessLibrary.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libAdIdAccessLibrary.a; path = Libraries/libAdIdAccessLibrary.a; sourceTree = ""; }; + 831929E581515A1F83140528906C2E4D /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; 833461056D9A489B4099E8A0F59BBFE7 /* GTMSessionFetcher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-prefix.pch"; sourceTree = ""; }; + 8356753F26FEF1EE58E015A2B46FF942 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 838CE0A524A9BFE592B14C1114CEBC4A /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; 83A553FB3363877DF058636D631A348A /* GPBUnknownField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownField.m; path = objectivec/GPBUnknownField.m; sourceTree = ""; }; + 84472B441282C35F5CF14DE357588B5A /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; 845132CA9CF8FF398F41CE4EF0B6E878 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; + 845309D152A4F00257529AA2AB7FB409 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; 845C431A9E25DE99DB18E6F00FBDCBF8 /* GPBUnknownFieldSet_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet_PackagePrivate.h; path = objectivec/GPBUnknownFieldSet_PackagePrivate.h; sourceTree = ""; }; - 847909C31AA7BA9BC2482692A6C17876 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - 84ACD5044B0AE6C7902F4463754F1435 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 8512B89FFB306BDD704EF9CC16EB41FA /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 854387C25E29B288FDA7D634B6115390 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 8559A6CFC5454CD51A4671CC5F6A260C /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 853F971ECC8E5CEF001627385A80F21B /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; 8562482F04AF663EA3F27B4C0C5EAFB1 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/FIRInstanceID+Private.h"; sourceTree = ""; }; + 859631F60010BD1A4A0D69FBF576E22D /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 859C4F23EA9F010854D5711CE603E006 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; 85CB4225592A21E0AD70BE53C1742166 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 85CF6912090E16A13ED64D1321CECBE3 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 85ECBDA0D5A54747860558630B334966 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 85DFCC7B268D27AB2EB0ACB8EC6CE74A /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; 85F0D2659222CC95642879C71B79F283 /* GULAppEnvironmentUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppEnvironmentUtil.h; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.h; sourceTree = ""; }; - 85FE911EB001F8E28B02C19EF12D70EA /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - 862BE059FBA2420B43E3FDA164484F62 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 86EFE06820FB134DCDDF6963B5BD7B4D /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 8653D710F71F2EE6EC65A3CC532DDE9B /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 865DE2323FC3A3421462A2A91301343B /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 866696B215C8B61B1AA034E3DFE066D0 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; 86FB658177A76D66DFF67A1F1B6430D6 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - 87792DF843702030DB1321212D0917D6 /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - 880577C8C7955762EA8DE99A69E4509E /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 8738A9EE57BD71142B12D552AF59C2CF /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + 87DD7DBCC0E780DBAA7C30E8726B428C /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 87E9725B7C81C851ABD18E37872EDCA6 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; 88173FEAE6AA0334663679ABEB47A34D /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 885A5143A2E8D15B26B1ADCC1411E341 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; - 88B6BC85463371AE37E2466F947FE93E /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; - 88E55F23E75BE70319158852ED65D130 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 881F03CBCC958AC8B719DC865A9D5B12 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 8832B7683A7BCE3E7412EBDE088EE906 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 884FE6F7BDE05D9A77E2BB9B5F5B55B7 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 8861A2E4A89ADE152A17D576BFDD7658 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 88825D9BB2C364E8A225EBF57B64AC16 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 888BFA19D1199419B777E38714CACD08 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 88F453818BB1844235CE2A13AC131340 /* react-native-realm-path.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-realm-path.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8981A3DCA2B5E70074AD0F0F1AF4F345 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 89E05876F5441C88AA71DE839D0DA604 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 89F4B2BC31DD12CB078AE0B309E89C66 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - 8A0BC2473E7F25478CB5C6C84EE5C76A /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 8A2AA6F5371A7C5F1BC5593172F8957B /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 8A6CA2F27AA1CACFB66A890FAA45F7AE /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 8A83072FB2845958C01431C8E0EAFE69 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 8AD981E81D92FB1B44C2323435A00D30 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + 8A2E40F452FB8A303D42644FC71F2FE2 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 8A3E9EC6AE49276FB46E379ACFB5F75D /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 8A63FC16745F04B69799DFC4C0D7A9D5 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; + 8AC1ECCEBE98EC21E41B286C7D87BFE5 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 8AC20F93FB89F173A1218882C6857514 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; + 8AD54F5D93130676A1EBDEC6F1D91059 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; 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 = ""; }; - 8B020FE134CBFD0FC8C43F7EAE5A662D /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8B313B64B4512DE9DC178F27D1423BF2 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 8B3C7D3B1BE1479AAEE455CF7FCFB931 /* 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; }; 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 = ""; }; - 8BBFB413A335025D44687456F8223446 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.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 = ""; }; - 8C2CE8F7ED8E0336A7E64638122BF88B /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - 8C44AFB5809B6A54B1BC18AFD46C8D70 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - 8C6387A4B18B49FF9C74F0822CC2DE41 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 8D71ADC1943366768CAF060B81B0B0A8 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 8E3F194230E6880DAE5F6E8685DA41B3 /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8C20E67D7573E2DE9D81AD21224F0D17 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + 8C2E147BC317303C418A8924BF2D93AB /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 8C3DEED89DFCC68C97F4E5B0318BB31E /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 8C4838D77CAFA6A9F6153336C544453F /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 8CABF880BB0E034539A1BAFE9E9093BB /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 8CAC5BFA8B1009021DC5A88FDD6419DC /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 8CBF6882D2CD8EB544E3926B8B901B14 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 8CDE1B9363F5B5A52414B3D7EED53400 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8CEA057C37BDF210879789C260FC1446 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 8DA63778E26593951ACF860325A76F2E /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 8DB980F641C363494126F4A26051E81A /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + 8DCC4ED073425430ACB88B74EEB15C9A /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 8DCF7F24E3C0D706CDD65EEA2A64A531 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 8E26A342169EB482773E67D7D32F9788 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; 8E64579CEF306EFF1F501D02D17A75B8 /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; 8E840F68F5A28B3739B3B51B8661A51C /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream.h; path = objectivec/GPBCodedOutputStream.h; sourceTree = ""; }; + 8E867CAB95A604A5DB227E6F017F04B5 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 8EAABB04C2CF955ECC9E123EE5FB00E5 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 8EAC50A0BA303896C5DB958A11879863 /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; - 8F6C7AA84B6FE3F824F481CEAAF9162D /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 9032CD125DB2A76C1673E807BFC4330B /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - 90AFB4C0A5A07720C95E049B54BBE4E1 /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; - 91B29A035D1983BEC980F4E3B2A01FA3 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 91CFA1FE6CD4AF820B1DCF809EC664EF /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 8EB5F6DC65441C2F195024FFCD646DC2 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; + 8F2E9FD2978F0A487CA5EB098EAA947C /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 8F8443BF9243EF19D3F65759F6816464 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; + 8FC09F8F473E743C692CF37481AD28EE /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8FF59FB65959FAC943014917FBFFF90D /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; + 904AF1C4870C8009B28B1AC932F01339 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 90DB96D3D50579807B2CF5979ACCD04C /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; + 911689A99D32EBC2D7F00943ABD80B7A /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 912753E2D0875DC4EE06B774F7703BD5 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 9194651291BD92C94897911196845215 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; + 91A00B0D8CE236601318F4CA2FA44005 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + 91A9F04829BCC6F42AF429262D314BB0 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; 91E6F0DDEECEA71B48EC90595495405D /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 91FDABE3488315384812627C640AA501 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 91EB5D8288F63FFC089EAF2ED863590A /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Source/GTMSessionFetcherLogging.h; sourceTree = ""; }; - 92149D25FF688D6F2730652B54F788FA /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 9242F98B3232A9C1F29F0C766644AA6F /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 9297CE04E46CA8F70354BD6493466975 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + 92BDF4644970336BDD2726D6CEE92A87 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 92EDC970716B3C90FA68ABE5EA5BF251 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 92F98AB7A03F19964457332E08AF3429 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 92EFFC5DCEABAA1F19A0EA043792A75A /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - 9379920E557C34F5428A22260CA77634 /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 93B0DF280628A39BA2607CDBF0F0D6BC /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; - 93F58CDD8D236758FC6A6A338F22F58B /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; - 9430701CE58B271FAE3DFA22C7E837CF /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 945CFD2602A0DAA2964815C8D4D40968 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 95241965EBFF9DCBC60990E0B37A7A49 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 9320F2831D03A239E1DE1943255F75C9 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; + 936F3813673F74017A7D3974D70CFFEC /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 937C951DA1C9667808565CF6BDF68D53 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 937E1CF55B4A88FB57F205E5A26EE1E4 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + 939C463B19D94781AF90514C5875182F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 93FEB25F87DEAA393B579B56A163DED6 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.xcconfig; sourceTree = ""; }; - 95CAA4B7A252E4C463547F77C5D59AF7 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + 9605093DCDE576A19361A5CA0D9820C0 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 960A6A17CFD5E7644DDE9B444F1FB88A /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; 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 = ""; }; - 9687ECEBBA3F7BC82844FD8D620E1290 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 96B4568AABB0A0DCCDCB27BD9357BD0D /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 96AC5B4DA48481B642C0A6B43FF61EA9 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; + 96CBF7B1D6A377DE0ADE741A58B3E116 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 96F839F9257121D1CC5C72635DB0ABEC /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 970C19976279473D3339CEF84E4F1976 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 97117171D9D65E650FCB6E4EA37E2016 /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; 974368B8E9D0826E48E7F274531DCB6B /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; + 974BE557BF05C01EA45A5AC245DE0BCA /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; 975D4AA90560D485466B4A51B23DE27F /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 9766F4DFDC2277FF8DADAFC8AD817E52 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 978390022A2F83D331C13A99E2423439 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 9800EA0034171BF204FE2D4E0F5F32B2 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 979097B7DB27D7F475B7C0D8B2A4293B /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; + 97B2E5BC9888896528CF9FBC3B917D22 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 97CD684EF2CE8DF8291020F2DE149B00 /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 98CA4940CC04A947FA288123D2D84E64 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; - 99CA8CD51DD44873AD50DAEAB6D48398 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - 9A035B7338F976352AC53889764F18A7 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - 9A3E729EED6E8F3264F54901D0C15D20 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 9A505FEE16C4CA075A3CA8CF51C59E00 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9957009B867CBC0D49D5BFAD7CF27811 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 997F9254809558E4F99886F52DC16625 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; 9AB317F0CFE633918FE469302716CA49 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - 9B066F604AE03ED040A476A9EB44C9E5 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - 9B4512B42C6948CBF0F16435F219BCE3 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.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 = ""; }; - 9BEF5249A93D7B45781556D1E82B486A /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 9C69131A88EAA9E00535742EC39AE853 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - 9CC41E2F70D5E57207BAE0650CF02D94 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9D02C8071061094DBE1C439DE8EF2D42 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 9C5AA37519C8C90BEE2FA16240662171 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9CBF37D783FBCF065C627E76B1962256 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9D9623D4DB3EC29B6AD964E55373B73D /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; + 9DDAE6A5A841F6A1CBCAC6B0A54AC509 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9DDBA0C893A828F996D54E54B9E0B132 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Source/GTMSessionFetcher.m; sourceTree = ""; }; - 9E39C01FE4EA6D0654D61384DF8D77D2 /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9E8DBE5F9A20BE2D3FD830A7EE2DE66E /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 9E93B22E06F3F818C0549A563FA597AC /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; + 9E9CE2A4AD466F1197CBA06C676C10A0 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 9EC25853E75C57E1523E78AB5BCE00A2 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 9F0180F80AC3BFA899CBC8E90FD686D3 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; + 9EDC90945743756D56B7EDEF76F71020 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; 9F2B2C4D4A5F2B2E0F49A001AFFFA329 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 9F9538D983C239EF5989C620884A3BB3 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + 9F43317AE294E292CACE855324E32017 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 9F5DA0F6A85A390976F740A64014E21A /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; + 9F6DC552674B01CD37E7D8140BA9E7FD /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + 9F7A85ED957E267679CE03E652C8B5AE /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 9FCE48EE4B07419B0A690C46027AD58E /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 9FF348D038C506F03350D63BE6E68CD2 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; + A01E1A07EB6A8204F2104597E9A77FF7 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; - A046A40FCC947D7E61CC888BAAFCD5AA /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionRegistry.m; path = objectivec/GPBExtensionRegistry.m; sourceTree = ""; }; - A08D682490D8E6EF9EAF2712A70D5B0D /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - A0B7A296CD3B4230585949135B29EF24 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - A0D0CD1AD2DCB1A2D5FA1074163610D0 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - A0F4BB766E014EA0B25EEC095669992B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + A079A52E9EFE84C17A200F946A6CBFBA /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A0AB297E98B6C8A6C65F0DF2D636893E /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + A0CE6682711F2AF5F09BC2D0D13CCEA8 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; A0FC4A4263889C7BB58FCA1914D25763 /* GPBMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBMessage.m; path = objectivec/GPBMessage.m; sourceTree = ""; }; - A16E1DE4BC1E32430BA199493DE6EB8C /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - A187B2344C4B7E82C0B6930EE519BDD2 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - A1907356219DADF412EC02A7D00E72F9 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + A1628DC0F6677F7DB622A59617EC21B3 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; A1C878EFBC94ECAB6800F32C740907CE /* Empty.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Empty.pbobjc.m; path = objectivec/google/protobuf/Empty.pbobjc.m; sourceTree = ""; }; - A1FDCDF2B744BAA875D23E1346BEFDB5 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; A1FF690A9214A1760165C26D7E1E7966 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; - A2078856EC1231FFAC51D084206E8E45 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; - A222360C7D302A52715BD8912EACAC0E /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; + A24F0D17F9FBDCCCEC4C22FD731397F3 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - A2D9E867D792EE1F43898A8879F110CD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - A324AC81B36A47873253C51355B17425 /* 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; }; + A33F32B7C513C82889B80F3ABE64053E /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; A340F0B85A7A004E4716C810327DCCF2 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - A396CA4C90D739B66B77C2175D4A5FF6 /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; - A39CC4822E1942E0052A57F3188BCAB8 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + A3A54BF0C1F02B22417B0FF9E6CB5402 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; A41B7BFEABEB2A6449351B5C578A54D3 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - A44E9728C8336B589B6557FFE9BEF50A /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + A43C48DF187C61578AD91D65C4C18669 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + A47498A3A8FBBE473C7531574A7CEEDB /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + A4779711C3A43BD673887C1240FFF225 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + A4AA342D485B0A2C2ECEE714AA427DC8 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + A4AF0E10141B984E71359A7404BF5486 /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; A4BCF5D07E7A22F1BEF3C8E72DA4E002 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; A4D300827816D1923359DA1557AB9D0D /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; - A4DDCAA2CDCFDADF713026471040B9DE /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - A4E61B38198D97CA86F12CD6B90CADBD /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; - A5315945D753CCEAB378068869DA3C4D /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - A5464F33B76D78F15BE81D94FFE8BEBB /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + A519FB84482B64E2D65FA64E361C2956 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + A51B04FCA414B4C97A67491705EB9543 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - A5727A6BF365F7E4CBA8096AFA935679 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; - A58C41E34037AC6BE5AD00AFF89E09C7 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - A60B58755D7FAB812E271D993BDB0C3F /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + A5FAEDFB4A250C3244763B36AA489C90 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.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 = ""; }; - A66D191B9E06EE0DF4F24805F5AEE324 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + A64F83D84FBE9EC4A8E8556A498CF948 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + A65C6F30E9DA32FEE00E5BBD535754F2 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; A67A93040C93F21781D539C991CCEE83 /* pb_encode.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_encode.c; sourceTree = ""; }; - A6920FA9A386056FC61E93CEF347C42C /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; A6AF7CBCB46B2ECD4D4D365D894F5455 /* FIRInstanceIDBackupExcludedPlist.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDBackupExcludedPlist.h; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.h; sourceTree = ""; }; - A6DE6F714DECC12F2FAAA62E5D036AB1 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.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 = ""; }; - A6F307FEA3E02654D646ED267ADEF411 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - A7A536CFCBF8421A7277C280F871B237 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + A6F52032E24B113CC7408E54490FD8B1 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; A7FB755B6494E4CBB67B357467B03FBB /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; - A82B5B60EFF40299021D4B946A3208AC /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; - A84ABCF81827C11478853B3910F5194E /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - A8578D6E811A4CCC84EA536230BBCBB5 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; + A81349EA8C993B86CB44D28972236524 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; A89317E6AEB35292207359B477B968AD /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - A8D4EF66AC3EDF64500C880A83965D6B /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - A988DC6BAB41B994615D340C5792BC65 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + A9D45039C4DA76049EBA7DE8211EE7C1 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; AA015B42B94D08FF3C4C36EA989F13DE /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - AA4F62785625294E1BF583BB105A4005 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - AA9EE1BFD241C384EDE66A639DFB16A0 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - AAB6BAB836E4B29E4E19B4F75C143431 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - AB1A698F1F907582A61B5BB2DA65FA5F /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - AB46F929F7AC48263EA275D15C6848D3 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; + AA78F887998852EABAED8775C5279A49 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + AA949BD556386D8F86C066563832B363 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + AB05BB3ED8087F85BB25E0E8312C646D /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; AB5E8E6109691A6353CB4DD1B46E0BA2 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; - ABCA027E88773CA23B549EDDB2ACBBE1 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; ABD254E522C84D25A9CACB00D98DED09 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; + ABFF59E51B52F0510F338891BF4F34DF /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + AC24AF82F582FD7B3EB82A723EE2308F /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + AC4EE92D0E6B236B9F7EBA7159334C44 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + AC6AD7DDF2713E52608C1F3F5ABACCBC /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.xcconfig; sourceTree = ""; }; - AC7DA52B8283A3B3FE7B47F1373A2F40 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; + AC77E414040E9372625BC656B3DDECBD /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - ACA73ABA78FA4021F487ADFB803E8F32 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - ACB85CC0E2E5117E5F45DDD1EDC438EE /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - ACF00BBB8C1D576323011AB3CB76E037 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - AD27E67F73D4E077F52AC2E282064C9E /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; - AD666BC9C0B36DBEF9D2AEEB3E7636C3 /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; - ADC7A95508C1CAB312ECA1B9A5E00CF2 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ACAA46AA6761EC3485F4A4A3B0B4272D /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + ACFDB25A700626BC243BB7F090C7D05E /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + AD41223977502296C80DCD16A0A28ED3 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; - AE7CEA0551C62CA64D926B6356BED0D9 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - AEA021FA18AEE8BD89AEED4626D3E25E /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - AF1DFFC090D2057B52EFC9B01266B1CE /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - B006566C7333FFC8439F89B678262E22 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - B0225C26CB369A4380DDA906A552F203 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - B0722637AF18C73AC676306255001156 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + AE64DF9A4548F8784492704BAB97A910 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + AF42DB2D5BEE3E0B8711364EEE0884B7 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + AFE53E856D2D3453D69F88987D9B4290 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + B02DF5B8A78FACB9F05C5AD4E33CF9A4 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.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 = ""; }; - B148D96844207800368341EFCC6C8CCF /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - B1531C8B373FD43A2AB63ADB0C848BC4 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + B0F7B8927FE9B5F5E66A0FE7925FD7F6 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + B145628F76E71EBC32DE310DF90FEA08 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B184A621FEE2C8AA51DC852246C4BFA2 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.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 = ""; }; - B1E1F16C41CEECD906C10C53E0B3B982 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - B1E87CED16B0C0F946984DCC680BE70A /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B1EFF76120AAB1004F51873408FEAE9C /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + B19A832152408DFE546CC2785BC7C0E9 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + B1BB4F779DE264BB7D5C4D952CA67323 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; + B1C1A6678EFAC8129B79CE2AA56E1E76 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; B20021D31A6BFA31F1E5630A69EA4CA4 /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = ""; }; - B25341C06A84A762576AD6158FDFD502 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - B255B62845F95CEB6B65720585C04A60 /* 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; }; - B29E1A9550FCD5D06067133EE433CDB6 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + B2793434C02A64D8F791AD35E946D251 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + B2809DCFA8DECB1CFFE618915EDA5519 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - B33F426AF2AB9720B4E0E13120126592 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - B38860BD9978BE583CC3D3DA830C9C52 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; - B3D98B53033022B911330E242DE56074 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; - B3E037C57F3F35255E226DAFB250B594 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + B35C75E66CAE756935001764673693A0 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + B3A371FC7AA74A93B445B8B856086B1B /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + B3ADED8F8DEFA1278C85FB3E95276401 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; B3FAFB7BCCD5C53538A4E9ED0729FF9D /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Source/GTMSessionUploadFetcher.m; sourceTree = ""; }; - B40A5060BA1446A5F7473E4745CEB8EB /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + B438A1B35BDB2C17AED2E57973661B0B /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; 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 = ""; }; - B4DDB3F0DAA64CD84794A631F4D65572 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - B4E36D4B61E559A33E94A83389D0C24A /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - B50341D043E231FCCC00D97549F1218D /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - B524166A15E31047C633873F400233A6 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - B54A0ED7D35D2D68CE0CCFA2E8FD0F04 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + B51A1C84A136169FA8964A1B7DD5FA95 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + B51F5B876AEBAF3A595B278DA5E436AF /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + B521D5919FC19FAF174C6CA9AD9EEA5E /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; - B556AED1FCFADE5C0A7E6B4CA858BB8D /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - B56B3A44C510186F5BF7755DCE663518 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - B59BD4644703A84BEA0A9674A4D0509B /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B5A69C0AFC178E2118E81C242B22FC24 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B5C7F5D95DD914137BF94D76493C3FEF /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - B5DC5EF75E88325DB46D21FB70A9FBB1 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + B56AB4E4CC67B0F39DC3DD6891DC936A /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + B61C97003ED9A3DB99C2880A1A608BEE /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + B61D4F72E458CF990458F2F57148257E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; B6B6FD9F05867E267A730BD9C007D221 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSData+zlib.m"; path = "Foundation/GTMNSData+zlib.m"; sourceTree = ""; }; - B6B8CD52B030C2154E76262528A31E91 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + B6BB0B5F58B86884A5F6163AEA399119 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; B6BD6BC1B1EA23C048BA0ED9D296238E /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; - B6C094B61FDF45CB276B23BAB60B77B3 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - B6C4E79A93E2D4046255A322DC424F49 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - B6E647A5931DDEB467A423C8DC392A89 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + B6E5B0E6C559A02790CEDF635455BAC6 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; B7076D6BE9B38FC1611B4AF166C11FB5 /* GULNetwork.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetwork.h; path = GoogleUtilities/Network/Private/GULNetwork.h; sourceTree = ""; }; B70DF0D054083CCB1DE9AC9B8D3926B0 /* FIRErrors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRErrors.m; path = Firebase/Core/FIRErrors.m; sourceTree = ""; }; - B72F9F3DBB9E81D5287C9AC02D55CA49 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - B74B893D0180C0E463704D5CC8152049 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; - B7BF936ADE2918FFE5A06A3A0FCD4730 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - B7D4FA08BA17EB3DD1108F7A2C867DBB /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - B7D5ABD7134F6CFB450A8E556130E0FD /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; - B81A83ED22FAEEF671721F5539526E1D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + B75EA0185E2AF3117759FBC14CB029A4 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + B806EE9A192E52046E51562CFC93A337 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; B843F05D718A4E6A823BF7A3D02FB40D /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - B8BA7D5C6A38953342B03643F030C661 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + B858D65B72F9ECCC2FDA4E4117D0F6B0 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + B8CC93F6B13EC4F6A6B5FE0D56939147 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - B8D792577DA45FFBCAE02D73D7553C9D /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; + B8FB2662CBAA57FEA849FBEF17542D6D /* react-native-realm-path-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-realm-path-dummy.m"; sourceTree = ""; }; + B920ADF161F0FEEFF91CC378F4C19347 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; B96E6BF56CDF4F193C79676B3893C26C /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - B9D42D2A89470246CD5654751BAE2BA1 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - B9E5000096DF1740476D82173901B1B1 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - BA339536319BC25522EF73397E6C1A2C /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + B97D6B3E6BE99827CE1C25FCB858E83C /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + B9D4D551CADFCBE08BCDBCEE6BF55E70 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + BA47D24FCD6B487BD75C30DC007D3C67 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; + BA4F6AA699A11800E2DCCCCD501F455B /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; BA73B2715BDBED36501431ADECCB9C33 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; - BA903C720831EC99CD5CD5B9986ADA89 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + BAA18BAF646B573A7E457656A169C4D0 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; BAB0B55F0D83C13F4A93E9693F1E3CC0 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; BABA188C1E6539FAC9CE54B5C817AF80 /* GPBCodedOutputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedOutputStream.m; path = objectivec/GPBCodedOutputStream.m; sourceTree = ""; }; - BB0FFA8C156FB7FA3BE165E37BDE50DE /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - BB10E3EB284652878179BF26DBE91CD6 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + BAE447C41D111839BA0F623B729945BD /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BB0569EBB8856E2228CF4A097F777707 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; BB1BBCD3F64FF8BA9250E80D83F2FCB0 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - BB7F05ACFDED4B1C47D58A51C148EC89 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - BBB0B8DA3821E1A9750ABE038A452CC8 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + BBB0D5C2A7C79CC28B6DE54FDDD2AED9 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; BBDDC56455CE2A8EEB6FD459EDBD9EC5 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - BC209029EE937B8ACCAE930B29EE7D26 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - BC2633FBE1395277C7E3437B63805532 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - BC370F6861569AC8CBE42B168DCC0469 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + BC2BC32A70E8C58B0118B80ECEC6814E /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + BC645D7FEAFBDDB3CC182386E1F7C1DD /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + BC87A07FA8F48763D1B39023D4A090A2 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; BC93B4AE1BC99FC3489FB009672CEBC9 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - BC9B322E46595C6286FC6C7A6E86144F /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - BD29E7D4439BB20132BDF354C6AB4F9B /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + BCFA168B7A3D1BAB291F58C67DD31281 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + BCFB483958DAE4EDD2E7B41B8DEA8156 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; BD302C365DF1C82AA1668E93CD114EE4 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; + BD4CD5A896E6109E00F737BD56115439 /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; + BDA95A6B351A0F0EBE2D89BC3D4645F9 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + BDCA46324A975C7FC1D9310BFB70F8FA /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; BDE529E1EF6279CDF6CAD08BB2113F69 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; - BDEE10DFD9E888913374365135D85559 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - BE32F5E8B3854FAADFE5CB5C144BEAFD /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; - BE3F8C0D81AD007E3477C930D206FB30 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.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 = ""; }; - BE5ED1FA7A6DF84E2C13C5D2786FC55E /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - BEC4999764D54C73F9A6058B1C7DF5A5 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BF62B3A6BFC54A8AD37C7035DF1535D0 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - BF7B9468BECC20704FBD196FC4CC5073 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; - BF7E86B83DE84AAA8764104AD480C694 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BFBBC9D7AF7B6A0429FD1E43DEA80FE0 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - BFCEF5699231FABFC31871B5A83324EC /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - C01423BEC8585B017F81D74C6A0C669E /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + BE66EBB9341C756D85769740C62D4745 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; + BEE3C73D929820699DFBA89E76AC29C3 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + BF0D6215F452EBB171927DB6516893D0 /* RNRealmPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRealmPath.h; path = ios/RNRealmPath.h; sourceTree = ""; }; + BF22632E02A2510E93437480FB39165C /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + BF961443ACA833C7A8B4F74EE8EF6D18 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - C05E390E94DD79E7AB641AC2CDFAD61F /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - C0EB6ED3CB1A76E38C2C144F9CB82D45 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; - C15601651593526846A79C9446FF7E13 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - C15FA976382AFC718F378B10CCB27861 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - C185F7E26C81FBBC5CC46737F5325CE6 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - C1BC8645A785C361313FFBE872A01CF4 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - C1E1EB7DE1D043ABEC1CC9795C226B6A /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + C083E7788F15C4F76DADA48426983C65 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + C0DE0022AD1DC91E870FCC61A28189BE /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + C12999E244F2494C774841F5478FB2CE /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + C184B9272F88416466ECBFA3455F21A5 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + C1F2B38EAD7C5B9C5D033EBF142E50F9 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + C242F16BEB2FD8D92838B66BC4FA2A15 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + C248E9ADAAB7CDD4E129BF7D744F1490 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - C326D10CC8BB4652156F9BBC9818D5A0 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - C3389D6CFB2B4F9B84187B78361B9178 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - C34888712C959DB924439E1DB40DF930 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + C29DE0FD20E597194F63023366237A97 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + C2E6BCF8D456455BD75D2FD735C2B056 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; + C3788D21BBB311D01466980579177A4C /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + C38D77A4BC32DAC643556E89EC139AD6 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + C3A7B516D537AF85124336CF8F9DA990 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + C3AD7BA5C163241E1E65364D26072824 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; C3D903C6F31578BB1496E10CC7660C28 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - C4139E58AEF8C6EF66566D998457C959 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - C430D6EEE35DFC1338F41478D200AC38 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - C4AC4B216D16F6CC0E852D0C116EDBF3 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - C4B2036BCF96FCF939B416E5F67E606B /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; - C4D32FC7C50BDE68EA71A2490A288F9E /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; - C6C4C455D9669E33FE36291DB8C465C3 /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + C3E201D7D0C0BAAFE35C46A6AEBC2873 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + C4062FEB153BD14C0A05654C630FEFE4 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; + C45AAF02E1EA7B247872B2079B47B969 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + C4CC8AB97350E59F67EB7DA517E8C908 /* 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; }; + C4CFC4C94B4768CD357C6D07640A6DD4 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + C4D3D2C6049772A96AA81EDCFF2EA170 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C541176C1A2500C5AF3259B71245AD3C /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; + C634F322B5B1194698FD4B9E675776D2 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + C64056D32F066C90251D8F1E56AB1B12 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + C67383D0AF70F2E2A7BB47E5A88BE66C /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + C69AD05A88E25AB493B5776520545AEE /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + C6D6727FB427F2F11F0E655687F52C70 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + C7000BCE93F98265875ECD1F406342B7 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; - C75CFB8C53569F6F250A620965F0D3C8 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C7731BE335C88C1B2DAECAA61F7047F0 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - C79F69EEAE07960B3C02B287A9483CEB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C7DD2655403BB71CEE66D8285AFA3E4D /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + C7A9707CAFF01395793578FF8342D703 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + C7AB6A18322B8BF20E815C4D88D0C3F3 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + C7BA9EA63C543F7EEE456E0535D2E0BE /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; C835B8E4E53C0605BC7F8BA70CCB892F /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - C8834CDA6331099049A78425491B96AF /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - C884CE467972C5FCB2265112AF45C521 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - C892191B4EB8D916A0C1A0B462F9EE54 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - C94C33640551DD7413CC81126420CC13 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C85CB6ADE38F01EC5F5DB0556BD13636 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; + C9761CD65CD28E48AD431D2CADE56D77 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; + C9967B2B3C2D49FEFE3D7B209540C2C5 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + C9CB7D304DD04F14ADDCF1FA7818AE48 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleIDFASupport.xcconfig; sourceTree = ""; }; - CA823272C554D0B4B52B60CBBF37AB8C /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; - CA9307290ECE086A92CB72734CD3A2DC /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - CAD7A86F2B46CCE853F4F4841A0E3BDB /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - CB176B00EB94FD9ADED4923DFB38D238 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - CB47B2E4CD4F69C14088C3C8261F8D2A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - CB5E9B7A2B85905275411C9BDCF4151E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + CA93B2399BF1EC6C34D29DF06D6D07B0 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; + CA9D21CE6138DBD4F0BA8799DB6E6E16 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + CB1AFF08E59CD65DD957CFED13476C3D /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + CB2F572C6E5E8BE17CBF38A2A93AAC07 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + CB40424474E4450C43F1D567643247BF /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + CB74A35FB5355FB96FE7ABD109EB592C /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; - CB9511B477BF224ED55533290775B989 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - CBA7F9DC966BB938A6347E1E3EFEB50B /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - CBF342C21D1191233475D0CDEB4D4FFB /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; CC02B9C0F1CEDC2E11D97AAFA570B60F /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; - CC9D4EA1AE24E955EEB6502CC78A8EE4 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; CC9DFE33B02231AD63A6E8D6916F6E68 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - CD051A6C05555AE76F912D32A1CEADC3 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - CD751402E7549EB8B598F4735F8252D6 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + CCBFB9C2A9B0A4DE9787C48CBE5BD58B /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + CCDA0AF1FF28783170CE15AD9DE1BC48 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + CCEE4F7E63FB943730904F4833447B5D /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + CD43BC845F3312E0B19B9A512B7C1D8A /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; + CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + CD723597BC7E878A613B6CBC61CDB542 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; 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 = ""; }; - CE041C035115C3D3122148A188752ECD /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; CE8C6D11CF7E5AF31E2AE0306111F7F1 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; - CEA9EF980ECA16582FB2DE0EF6FC0CE8 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; CEC87000B140231CF19A20D1E01F05BE /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; + CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; + CEF911BCB17DBFF64FEB78BD39119AEE /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; CF2AE1EC0D98FF4B93D51D644A2C7ABF /* Timestamp.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Timestamp.pbobjc.h; path = objectivec/google/protobuf/Timestamp.pbobjc.h; sourceTree = ""; }; - CF34FCCC15F6255645D39563543E4CBD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CF61A8AF93D3A2374C87515F8890F4C7 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - CF891208ED78494C886778C58D9DC6C6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CFC674F98E78B381D00C36DFC6485B31 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - D000B2DC53664807BDEA125143A58E6D /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - D029CC7ACA329E97B1238A0B99C17F46 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - D03060A6A2D988F8522CDE5873BAEA82 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - D082C0F20D0A95DC453DC8FEAE62DD1F /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + CF95CFB5C3C1133DF4665A8F42EC1A28 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + CFC198466623951BAB94A47122750183 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; D08A5D686D77F6A0E33952D2AD2EA06C /* GPBCodedInputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream.h; path = objectivec/GPBCodedInputStream.h; sourceTree = ""; }; - D0A66BE25CB87A9D928A08357A99AB77 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - D151B83252EE13207BB64977A1F09F2E /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + D0DDE1BE48EAD5679B70F9210270241E /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.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 = ""; }; D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; D1D409B472D80F2EB4C71563990FC72D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - D219A6FE7FDCE452F423179AFACA02FA /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - D21A418DDB434B8860E77EB8D16F8BCE /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - D2C78BA1420B3F9F817AAF29DB5778B8 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + D269DEE52BE9BD492980057C5570F31D /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + D281363BAC67A31CA84C0D3423EEE4B8 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + D2AA48971D1167CDAFD4D0A3C655D819 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + D3049A18CD3AC667DC38BCFEBD4E3A6C /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; 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 = ""; }; 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 = ""; }; + D3A5C088BDC11C4DB7646EBEA842AAFF /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; D3D856CFC6310D66AC7461C87AFE11D4 /* GPBDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDescriptor.m; path = objectivec/GPBDescriptor.m; sourceTree = ""; }; D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - D4069D88BE17E68858A65296FAF8E7E8 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; - D40F9334342EB374DF4A96A76B8849D1 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - D432BF4E7A31C977E7F69909E19A35A6 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; D4640D3CB0EE847C77BD022CCBE88A4D /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - D46BC06BE54C54094B8DF2EC654125D6 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + D4C9853A162E110003E63A2C77CDF6DA /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; D4D269F2C9249EB3191A02DBF3D4391C /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; - D4D5E2E939FBA0DAC26221204262124E /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - D4F4EC2A8D822EE8300DB74699A252AF /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + D5038BF877B1D4E908BB74DF9EEBA1EE /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + D5369D829EF70F3E2D3D170BC19D0E33 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D5405FEBAC392B770AD99B5AC7687E55 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - D567CF138054BC718B9745FE8FDDABED /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + D554CD6CF79A41EF70F277E7D543A6DC /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + D5A7DAC61F948F8F9DC50843B518E87C /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + D5BA6F8CDE5B0E880EAB4A3D0521D6CC /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; + D5C5618AAECC011C23975CAD363216A5 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + D5CC35B6F1D11EFB6ED5235C649EED0B /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + D5CF3F1EF50886879A3A88AFF4009484 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; D5E3DCD7AD1C184DF5044B42DDE421E4 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; + D5FB42623D8F6D266D15D896AF6F1D1F /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + D616628FAB61D0DF8B176C02C7EADA32 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + D62FDC62FCC67CE4C4C92219AD9A31DB /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; D64988EA80D874BD49F788383ACA30DC /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; - D68D654F93DE95EF2FA694916FE8860E /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; D69DDA1B5884AD21A1C167DA920F1D88 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; + D6B036858181751E543BD79C7B405FF3 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleUtilities.xcconfig; sourceTree = ""; }; - D6E9CE5D7D2D11DC4C433FB70E7B8FD0 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - D7510AFF0DF4CDDCC0CBF123C84BC498 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - D7C65B7023506828FCA0D6AB455DB5A2 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + D76793AAE2366882DD0947572947FCA1 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; D7D23CD108787BFAAD18B7070B91E9C1 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; - D7FB9CAFB88544A1A5BA37E1E111A459 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; - D90B3725332A50C1EBE04B5035344BEC /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + D8926E17B143BD65BE649ABE4A94AE24 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + D8A487015C737A75C4327A9FD8795843 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + D8C2F9C4A7E6A4EDFF1C29A3F7EE27BD /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + D8DA9110313A76B2AC5618810D021D45 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; - D9A94A18BF86E42031DE9AB8CD92F56E /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + D920F18086083E959BEDE1A89508580F /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + D944AF06DC39B934D33D00CA4330AA9B /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + D9C1466DA1D6A511BC82DF6DBC8A90C5 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; DA25CB04EA64550643955E87AD36DBB1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; - DA82AB0FFC03D89563D5874D4D1FC6C2 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - DA90D03582396366D4029AC853D66F87 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - DAFEFE0586D49CDEAD27CBA4421A3EFD /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - DBA6E574AEF8F6081D147F775669702E /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; - DBB15DAD0D2CCF1BE82322832B0D375D /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + DA354997F8B268C34524FA4EBE1EE915 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + DA364DC8821E6F2F3525D9A1AD78D002 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; + DA50D6E0F3C463849AF3CD3B8CC5A56F /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + DAA030E3F4936AA5994DE4196D91D233 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + DB50905479B83DD824B725CC00A8EE3B /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; + DBE108DDDBE372FA6EE8746B16DD0713 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; + DC01493F439984AB671E13BA523D2B40 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + DC21D94EE3031E2045C0C0890B2F1506 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; + DC96135AC6C0009BC8F36D80DF7A35B7 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + DCBB427CB227193DA6236812D3D8A754 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; DCC7600BC172CA9427C27FD82BF17552 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - DCC8BB9A6F76EAD923DEB5A928B25C58 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - DD473071A9887609014D13E28B403DEF /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - DD49326BABF411F554748CC15F0C6ECD /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - DD8101394AF8C7F3C6A6F826E26E32AB /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - DDBADE9756A6156A2B840CAB0D34FBD4 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; - DE9052CE8CB2AFA586546E1957615639 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - DE9234B41C0E1066D31A40BF9DB8A10A /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - DF35460B13304683494990FEB561DC9B /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - DF3C9C9544DFDCFA2B877FB6FE1C701C /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - DF47FFC9C4534140083F64B57A90AB0C /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - DF6DA85A79597724B60726D4AC495E69 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + DCF71DE19AC2D44EDF9D409B80BF4E8D /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; + DD54DDEA8CBF5403C7237C3E351EAAFB /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + DEB63BB149F828635F4B61AB9C206E4B /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + DEC93D0837A9EACE50D36AB42ABA00EE /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + DF278BF9B2BD2A98B410B6211E2C0AB2 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + DF3CB5219994521549C3C9F959AC67E0 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + DF47297C4313E3953C87E3E78635D49E /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - E1171DD1432FD0F299EB5059562989EF /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - E1952A09E2894541F6A27C80F531DF4B /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - E20624B9B9DEE620AFDCF75931CA1E68 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; - E24541B9D8B38248CCD79FD5EA770235 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - E28F798E1880FEE8914722ED5DF671E4 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + E10B34D1A2E61BEC228AE0A659F3CABB /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + E17B6543B311CAFA8804134B127F61B4 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + E2130431BC79C2529F9B7D997EA45C78 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + E24FCCDAE287E29E82358408CA3C2D37 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + E279D903900E6598EFE62B1DE65A8AF0 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; + E30033587DC12B1D881646BEC45EDF9E /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.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 = ""; }; - E43C4CE29FBC067740F839D6DAE8B3BC /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; - E442859B890D450069F6B81FBAF4827D /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - E444405F8A453E1C5179F25D2D6F5BEA /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - E44B2A080118798FA1B533EA1FBB9F58 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - E479A0E7A79C4DE6A6D79DAF3EF13420 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + E39027A4C027F40F932C0B3B372FF435 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + E4796E70EB1654C669BDB192982CACE2 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; E4C48284CABF83F748FB75471EE6008D /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - E4F3B48D12ED3C384C0B5209F7FE1369 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - E52B45BCB7BADE11FD10AB481E916EC4 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + E523F08DDF628983B8080538442746D3 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + E5432881AEBE5FB0661DAC3DDEF45791 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; E587B3F2F5ACE664165F9212BAC58A0B /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - E590F29096C47E4DF88373D5FB964AAC /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - E684DA86FF55E4A24A6E869D7D55BBCA /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - E68AFADE1BAA81DD7BE1F0E3301C7D9B /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - E69BC69E148082A305EE45C3678571D6 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; - E7215EE1EA3893A6D751E761A1AEF679 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; - E78C08BE222E1F6F060C713014937EA0 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + E680598082C2589742298F53D35A3B38 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + E686419BE49164D82939A97379EBCB93 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + E6C88B62D410B42E3450055C1E5F3A23 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; + E6D1D60641E2AA793C28DF28387CB301 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + E6E593B2F2AEE6DFE4D0610A1738DB8D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + E70EDE8E5C9FFEB42682E1C0370C5D02 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + E71BE6475BF9C92E753E8D5D991332C7 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + E786A6183AA3E8AD0FA61A82EAF88AD4 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + E7CA4B021924C03E3DD9695981FE8001 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; E7D881ED2B5743223827914D984E15E1 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Source/GTMSessionFetcherLogging.m; sourceTree = ""; }; - E7DE5D1E222D7170CBDB239411C67320 /* 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; }; E7EBE525A09050866014CB02AF5B19BB /* GPBRootObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject.h; path = objectivec/GPBRootObject.h; sourceTree = ""; }; - E7F0C3B5282F1855478FA852A1AA3CD4 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + E7F0058442084B5BFB38165037D8B848 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; E80614B9501CBE2DC0DFD0CB76C51905 /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage_PackagePrivate.h; path = objectivec/GPBMessage_PackagePrivate.h; sourceTree = ""; }; - E80985FEDA781D9E6311CA8F3A07D9B6 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - E89D007AB3CBDFDA7F750526E510553A /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + E81397F2569E875C452758A4E7315E13 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + E82EBDC8A490B30236C3D15AB2331BA1 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + E8911EE6854F117C3D9F61D562E6E66B /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.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 = ""; }; - E93CFF752DC4E4F67103B8D8F6BFF4B1 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - E93E2B618DCF7F281DA751F7C78DBF4E /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - E969EB55276ECC1C1D740C6D0D65D8BF /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - E9776010FFB120B335C0E4367B6469E0 /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; + E928C14C9CA406B961ECB44E8B747C57 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + E98EAEC6C9E8BE7CEAA1A7C5AC870A81 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; E99B0D64B717D3685A2D48961E286C54 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - E9C69FBC4A672E339B9A2FEC0FC1874F /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - E9D48577A3CF7AE21A4CDB2012BD0E88 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - E9DA8859CE7B90662E0CDDA5F86A7B99 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EA11C18590A6237A6316164F0B9E6BD6 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + EA2854C43CBDF62983B30CB07AFFDA65 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; EA452AF7C2948DFAEDF5BF8E102BDAA3 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - EA6F84ECE50E6CB44A36D6EB6505D192 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - EA72B3AB767DB5E52E88C1B5615C7698 /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - EA72BAE9DCE7B0F825FD4F5284EF2415 /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - EA8DFFC633583A4D4BEB2C27C04EC1FF /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - EAA6F4883A6AA37EBD09BFCA2D4A1675 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - EAFC6D9406D8C0A4E110816512C968BB /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; + EA87488CE220919948AC09172D36AE5A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + EAEAD074F444D3A0470FD94B5DECA4BA /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + EAEB8B7D74C586229A49D42A0E320D19 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; + EB42551B3B22F5EBE62EBA642F5D8121 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; EB42AB4A769B8206971D52BD7228724B /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; EB42C933792B47AC97EF02831256A945 /* Api.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Api.pbobjc.h; path = objectivec/google/protobuf/Api.pbobjc.h; sourceTree = ""; }; EB463BA7EB74852828A7F95F2E718754 /* Protobuf-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Protobuf-prefix.pch"; sourceTree = ""; }; EB6981EF8981D724C17B40BCE18F4DF1 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; - EB94AC8E1902F67FCD9EE7D9CD27B473 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EBD1CF84C71E23808DF7D71001809E5C /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - EC792BDC341C1F09D58B496A9CC46634 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - EC795F6020E10C5BB3DF2BFD35C1AB6D /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + EC2269E126D621AB1E66CF1DB22D6E7A /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + EC71B3E59CBBE31FCF280ADCA8C78635 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + EC7A2943F3A4FE81ABCE3C9BA79596DB /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + EC99704FED67D4EE92F9886C9515F602 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; ECAA1BE70470727702FE925831A02A0D /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; + ECBDF16A20F05203CC4DE3B15C23AF93 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; ECDE53F648C58F537F5674A4108DEB3E /* GPBWireFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWireFormat.m; path = objectivec/GPBWireFormat.m; sourceTree = ""; }; - ED0FCD69F9262182893FEC3E00B60171 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + ECEC42AABDB60647DFC254D0D36C4840 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; ED3F83DE07B36FFE21FC3707F2802DDF /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - ED4F75CC2FE863829739DB722A4C1976 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + ED42783DB5DA2933B2315DBF1FC4562C /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + ED546660CBC80ADC35EC448936703263 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; - ED6CC3FCE7794BBB5DDA876375C7018D /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; - EDC0EB7A0397286B233059D213BDA771 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - EDDA59EFE420F19EB57185B0E573DB44 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; - EDEB5B9C8E9AE70B2B6EA2E2FEFC822E /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - EE083A8A29656FFAEE5CBA715756E218 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; EE0E0D2257A57CE5396CC60C20291BA9 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - EE5D60B51D672F13ADC9F7CDE7127A29 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; - EE9C4EBC9A59FF6B05161BE9B1A4D074 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; - EED9E33CAD265A8572DDFDE61F946357 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - EF287B1DF0BFE77BB74DE7822A382754 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - EF5752C6043B9C242A235113CB6A6555 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - EFBB213CC8CC8403FF058D580BA97F8F /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; + EEAE6C9E3B10AAC75054F3CDFAFCEEB0 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + EECB4F3A81F1FB4F694A03F1EDE10895 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + EF10AB902332DFA0E488803B92804A4E /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + EF1C56D47C620750CB08FBB28D7188B0 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + EF4BDF5F4EADF81300A71703E6CE8DC6 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; + EF9E1BB641DD0FAA0F6A6BA00FEA5346 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + EFF9593F541CBE9541A7DA5E2123D221 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EFFF9FF9CECA6A3664C1E116308C8E47 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - F07BA4FF938CC7645B39FFDEDCBBED08 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - F0AA5CD93EFFB4B02045212FA9359F5A /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + F0F2FAE6500D04ED6F1312A01D565447 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + F101F26D6BABEF2FA1A0AB350F225A68 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + F1322D928C8D0BAF91B3BD4E388F637F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F13A1475E182AC393417BA122E41795B /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; F13C9827FFA6E7331D6E301FE4773240 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; - F19798BC8DEF7CE0D713F55635AFABA7 /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - F1DCD33E1F1BCCC51B2DD96EA679DE62 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; F253D6BB700AA13956A26AA399F054C7 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - F2712E4BEFFE0E3B550C67A8128BCDFE /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - F2ABDADF27871B80DDAE3197C66390ED /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + F2C876D08005460E640E6D01B6D36D7F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; F2D27DF69275FBA4A8A9B94D0AE1274C /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - F2EBD9734DF2589EA00AD74D40AF8768 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - F2FEB3C94FB011CDD44E1EE957EB5BB5 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F304DD3F91DCE73A53690CCAD2D80467 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - F331C2ABA1A0071B3E11294641BFB5E3 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; - F3377F9B521A1F252B4D09F2CEF8C5BA /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - F37CCA4AE98AC65E34645E6DD81B01B9 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + F2FB2F97B1B6324FC7F47C781F5301F2 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + F32735F3F9AEE7E85996C828D31C7B09 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; + F370DDB86CC7FA6C7F679D146C8175AD /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - F3E334BFDD099216BB584990FB612997 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; 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 = ""; }; + F4896AA3946A7938DBBB7FE360514320 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - F4D6C3DF3EB3B8A88B99649711C133B9 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - F4EC22BFC49E285B185B9816D8C3A74E /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - F500DBEBDFA837C0A08BC532CB3A5DBA /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + F4AA899FDC53A68D4D167D763E3098FE /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + F4C480E1EF4112F2B28FCBE872E65262 /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F4CC5D457DF57726C2D0A610CE2458E1 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + F4ED9DFA4844C96F7BC6E6BD607C3C16 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + F5089D3701C2B26D1C38E9B2946A958B /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; F5242D0FBCBD7A1D99CEB88585EA682A /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; - F581BDE6C0059D242D308EB7E7765D75 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; F5C9D78CFBB7872339127A65C944A51D /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - F5FE6C53C2CD521EE36D83BC66B3E4AD /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; - F6A39AE08576EFD9D77C9AB92D989292 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - F72F26273A708E334D5FAFC6CDFF79FB /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - F7D4B4E61D2550E89B37DD5CAEF42EAF /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - F85C5DFD030A4E980453A833E771B62E /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + F615CC887D9EAF7CAA992A33E04C75A3 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + F6334B5F131CDD267C933341A87CF382 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + F638FE4C03C9A3EE084643A992859882 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + F6AA524138805DA430C724041E4742E8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F6E0C1BD080830E926F2C82F519089CE /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + F78898A13A5EB6B8F912D6AFE173D928 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + F7B2AB6DCABD12BA606D58C2E2683864 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; + F7F6EC030F63CDFB6FACCF29A7D9AFBC /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; F861D6FCD688186A198304576ADBC85F /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; - F871BC8A0BBB14B35CBB31B9435A63CB /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - F88E72E5390365A2FEDAC9517ACCF79F /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; - F890309580FDDC90BA263056E3487AD3 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - F89B0F9050EDACD0D09D26FCFC6E751F /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; F89E875D985FE68C85B60F895874D56F /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - F8ADA7B31E5030193614B07CF75F7FC6 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - F8FEA76A89DAF2C67C1F2466D86079B7 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - F903434DE20EEF75B8DF230D0FB8F5C9 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - F9137451169C7FD8BEF521224C07D2CE /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + F8AD3679AA01C28391BB0E4EEFC99E0C /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; F92900861A1536FC2C06F634018F7F6A /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; + F96AC914BC20FD8AFD2A10879BEFF079 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; F96F86515F70B8C017E7FC355A2B7CDB /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Frameworks/FirebaseCoreDiagnostics.framework; sourceTree = ""; }; - F9AB0E3D5CBEC3A07A6E8C898E107F34 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; - F9E600AA6C09BA6929B6D372D7C26520 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - FA47E6B4299F4D1FDB5BC4E876B50B60 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - FA6CF7D3CE1368348C63F925126D30D2 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - FAAC84A24A9DEBA25FCCD07626D74695 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - FB125C79DE19812A9295C37C5F548FCA /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - FB5EA872A42504C31B46497C4A1F95ED /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - FB7B093624CAF527E69467636ABD689D /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - FB8DC71E80789579B7B82D641052AE38 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + F9C214A40C36EAAD0F5701D8022693FA /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + FA46778D7C9968FAD1789A65BCE856C3 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject_PackagePrivate.h; path = objectivec/GPBRootObject_PackagePrivate.h; sourceTree = ""; }; - FBFFED404EBB6D354D8E7CCAC09ED2E9 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - FC15D4362FB045AFC79C5704AE41F708 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + FB956F4A9C08F6F93A75AE1ABC309ABB /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; + FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + FC1C996686A1F90C85CD90B283C45718 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + FC4CB5AD065A832D25A342A4F4A29D36 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.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 = ""; }; - FC574B18DDB04F0449F0E979A165B698 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - FC59088517590C7B81E973C0FAB28B6B /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - FC8D2CBB7F3F172606AC10D2C078B8A8 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - FCE9BCF3DB4D92DFFBC5D12440AB2726 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - FD08E7202AE94673FC4554C68C8E4243 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - FD0B58A9BFEC88315CFCFB43DD666E1C /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; + FCBE4D1BC80B2F6BEB45098E409D8860 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + FCD0244F066FB140E7E71129A74233F8 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + FD08E8618ED304A352AB5216DECCAE0D /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; FD1FC6E5021013DE598D3FECD7E43103 /* GPBWellKnownTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWellKnownTypes.m; path = objectivec/GPBWellKnownTypes.m; sourceTree = ""; }; - FD2944DBFE71767FA03B65AFF3C4AFDE /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - FD6E1A0E841DFF8561CAB2B00C6D3768 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - FD999C520E363B82202B379A4A56FCB1 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + FD4F67FD4DC2D7E5C9CDD5A175081EFC /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; + FD714FE59015A6D32C235D297DDE6207 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; FE0AD6A2B458F3446F9F710454023AD2 /* GPBRootObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBRootObject.m; path = objectivec/GPBRootObject.m; sourceTree = ""; }; - FE4100B596546C8BD05B79F73B27C79A /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; + FE183C24C287338F5BAF7AD026D94B60 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - FE5506A7A9C9BAF4D7D96C7AF6BAA8B5 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; FE56DCBF8D844549273B298E9EF13AC6 /* GPBProtocolBuffers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers.h; path = objectivec/GPBProtocolBuffers.h; sourceTree = ""; }; - FE6FB884AB86130B3FA235D6596916D9 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; - FF4A414E57743259164B8E097752D062 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + FE9149882F1AA0961340D16718BBD529 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + FE92E48E5B04DEFDBF3F9D1DE2D69469 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; + FE9808B896A721E209136FB2F00D6A7E /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; FF53A904DED58A3B128E71C3BB3400C2 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - FF91AAEC8781F422ABD8F2E7320735F8 /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; - FFA97571FC551CF180C13F1C2589FA74 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FFD5E0B9F06F5A7D856541145756B5C6 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - FFEE5088E980FBFA770B1A9B2E7FC449 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - FFF54C2E11B2CAF3A46837E520C4A650 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + FF65769C4516554E9EAFE1DE4843AB65 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; + FF989EAE5950A3B7029120BF819FC3D0 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + FFC4FF72B18B537D921C182B9AE258C8 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; /* End PBXFileReference section */ @@ -2707,119 +2739,119 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 02782D275524BCADDC5000A96D780FAF /* Frameworks */ = { + 03E04BE339D7014A9B11F8DD9200C161 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0478C04204243CF327D6DBED3E726CEF /* Frameworks */ = { + 07AF97B0D58D7980D45A642B7B1B7C69 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 07AF97B0D58D7980D45A642B7B1B7C69 /* Frameworks */ = { + 22D7AA6FEB69A8DE43D0C20D5CBDF124 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0DBB9BFADB586D178E668C6FF46634C6 /* Frameworks */ = { + 24525DF5C7502834824EDCE4EAFBEFAD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 235CA429352C1209F4E79AF27A53A43A /* Frameworks */ = { + 24B3152E63BED4DA7289563A67E96534 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 24525DF5C7502834824EDCE4EAFBEFAD /* Frameworks */ = { + 29D2CD0D5FAD26CF8EEE5C7B411DCFB0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2460DD4A0DDE5BC6371C669E94E6DE5F /* Frameworks */ = { + 29DDCCCAF9B1EDCC9998ECDADEFF7D8A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 473A8110860C0093E3A3B485287B1D20 /* Frameworks */ = { + 3A98B18BFA5EB2FE5C28511CAD147EDA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 61756F3B6B9110FB5A6EF1095BF8F721 /* Frameworks */ = { + 51165801A7AF675E12E317A5B86C75F9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 70DCC08B264C6FCAAF9029986DC4F583 /* Frameworks */ = { + 5F1B77A5C07FE0E10C95C80ADB62F375 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 72E1F873F1C79F0826A44EE5F959756B /* Frameworks */ = { + 68E4DC721715B13364B7CFA56B002488 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 86975FA8969769E1025A58E3FEA10506 /* Frameworks */ = { + 770A3B329A0672EA9F52078201701847 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8E3FDB4C72F9224D4F0FC9064C69A9EF /* Frameworks */ = { + 7E45C3FC79B9029C8BDA87BBEF9B76A0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 933DA3B844AA36790E1184CF33F53746 /* Frameworks */ = { + 82AF551B92E3C5B5B4D03A85CCD7AD7C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 977B34A80819F5A745CF5B52D9236AFD /* Frameworks */ = { + 8E3FDB4C72F9224D4F0FC9064C69A9EF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9C1143E77695FB4B58AA5D992DD06087 /* Frameworks */ = { + 9A22F16A5E9D7F5EA2A5F36905D8D1DD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9CDC5E2E04D39CD0D05B3F091AF6EEDC /* Frameworks */ = { + 9CAAEBC5F620E83BD5CB56084AC45E09 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2833,91 +2865,98 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C09BF11F1881278EB1AC1B19C7436806 /* Frameworks */ = { + A533EFD394BF22B2529C3B7CEBEEEAD3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A6103F82654B30871489E20D356DD648 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C3319CD601ADB1B7DF3895DFAEE76DDB /* Frameworks */ = { + B8165C55B9049D277EC22BB093B9FBD5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C9485CC9CB23AB40A5D61E18EAE9B6D6 /* Frameworks */ = { + B8E263271A672B5588806F2987A6EFCF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CEED69BFDF6A885185DB264BF3D59019 /* Frameworks */ = { + BC0A997A230B11D755F02ED4C1609F39 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D100155194F71BF5B9E52467DB055F5D /* Frameworks */ = { + D6B0F2FA3B7EF33B7F8F60D4673FF30F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D1CA28E63679FBDBC0A16BCB697FCE6A /* Frameworks */ = { + E4D6B45A3EE55BAE914203B76C79D247 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D64D13615B17402931D05489E18A4E4A /* Frameworks */ = { + E60740D3DEC2E6DD066A74059B2B775E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E4D6B45A3EE55BAE914203B76C79D247 /* Frameworks */ = { + E9F22D6501C6AEB59FD7D4E41CAF3D58 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E9D1E527EF36358AE5E04CDA9A6C8FE5 /* Frameworks */ = { + EB657344CB82D47E9B579FE9A9546903 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EB469E21EBE88EFD146AF9598B548FFE /* Frameworks */ = { + ED444851A24CF3192623CF7327003467 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EB657344CB82D47E9B579FE9A9546903 /* Frameworks */ = { + F37773B5A9A89E53F1DE137421232104 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EC3F1E53CF0CD26EF63ACE35EEDCDC87 /* Frameworks */ = { + F72325E5CCDFB27EEF112687770B1088 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F61E36D0F06C5DA300A84CAEF30C6428 /* Frameworks */ = { + FA91271D5E28DFE1FE11DA33F273027C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2927,29 +2966,12 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 01007C58FB4BD39492318ADB2E110135 /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - F581BDE6C0059D242D308EB7E7765D75 /* RCTReconnectingWebSocket.h */, - 4E9D4707798DAF1F5421CA0767AD2D13 /* RCTReconnectingWebSocket.m */, - 4A2466F90EC76607419C4398B568236E /* RCTSRWebSocket.h */, - A1FDCDF2B744BAA875D23E1346BEFDB5 /* RCTSRWebSocket.m */, - A2078856EC1231FFAC51D084206E8E45 /* RCTWebSocketExecutor.h */, - FB5EA872A42504C31B46497C4A1F95ED /* RCTWebSocketExecutor.m */, - B9D42D2A89470246CD5654751BAE2BA1 /* RCTWebSocketModule.h */, - A5315945D753CCEAB378068869DA3C4D /* RCTWebSocketModule.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - 02BDD47EB29F1787028A352C89648AF9 /* UMModuleRegistryProvider */ = { + 0056AB3FABE2E0650C6BCE190DE87F72 /* Pod */ = { isa = PBXGroup; children = ( - 3BC270C6949CA0301290C3350566DBC8 /* UMModuleRegistryProvider.h */, - 880577C8C7955762EA8DE99A69E4509E /* UMModuleRegistryProvider.m */, + 6F1C772A621F52EF8AC0C72A67330354 /* UMTaskManagerInterface.podspec */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = Pod; sourceTree = ""; }; 0382A503BA90CA7904830F3A958469BC /* decode */ = { @@ -2959,29 +2981,6 @@ name = decode; sourceTree = ""; }; - 043ACB1B44A11106A0B6BB064272CD02 /* Support Files */ = { - isa = PBXGroup; - children = ( - 95CAA4B7A252E4C463547F77C5D59AF7 /* EXAppLoaderProvider.xcconfig */, - 8B313B64B4512DE9DC178F27D1423BF2 /* EXAppLoaderProvider-dummy.m */, - 7D0EBDB6E699709233FA133EA7E18B4C /* EXAppLoaderProvider-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; - sourceTree = ""; - }; - 05949E9ABF3C56B95EC2EC65715D5FA1 /* UMModuleRegistryAdapter */ = { - isa = PBXGroup; - children = ( - 0D52C028F8C644B23CEB9F1C566CECEB /* UMModuleRegistryAdapter.h */, - BE32F5E8B3854FAADFE5CB5C144BEAFD /* UMModuleRegistryAdapter.m */, - CD051A6C05555AE76F912D32A1CEADC3 /* UMViewManagerAdapterClassesRegistry.h */, - ED6CC3FCE7794BBB5DDA876375C7018D /* UMViewManagerAdapterClassesRegistry.m */, - ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; - sourceTree = ""; - }; 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */ = { isa = PBXGroup; children = ( @@ -2991,48 +2990,42 @@ path = "../Target Support Files/GoogleIDFASupport"; sourceTree = ""; }; - 0751D23446CC0E76C590D236CB41016A /* Pod */ = { + 060FB9DA233C5414528BFD668CC6D21B /* Pod */ = { isa = PBXGroup; children = ( - 6F9D22BEACE602E1C70D2122704EF784 /* UMPermissionsInterface.podspec */, + 1A342D6CA0E0B6DBBB400AB956F8C3CE /* UMConstantsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 08BB1022FA5F84B5BC1136C9300E9144 /* Services */ = { + 0633161BA9AB788A778C7E05B87193DB /* Pod */ = { isa = PBXGroup; children = ( - 56A2B108273B063A5211EA094F4ED4C0 /* UMReactFontManager.h */, - 5C31771B83CA2DF927622094B5ECBECE /* UMReactFontManager.m */, - 19C738559C7A5F02105B64F39AE6B5CA /* UMReactLogHandler.h */, - 34D140AEBF119C2B4790F452A2EB892C /* UMReactLogHandler.m */, - 49387096FA2AFBB197960FD0CBD2191B /* UMReactNativeAdapter.h */, - F1DCD33E1F1BCCC51B2DD96EA679DE62 /* UMReactNativeAdapter.m */, - 4F20D7BC6AB73EF8EF68D083EFEB0B53 /* UMReactNativeEventEmitter.h */, - 2D080A350E097522C94AF9596F5E9517 /* UMReactNativeEventEmitter.m */, + 5800AED6AC59723F6BB5DE3ADA24D86A /* EXPermissions.podspec */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = Pod; sourceTree = ""; }; - 0A77232C0CA97A176DAB6F849135F9A9 /* EXFileSystem */ = { + 098178F3362E7B21FA308EED1FDD441F /* React */ = { isa = PBXGroup; children = ( - 53BCFBEF05418708554115DD5BCF0E19 /* EXDownloadDelegate.h */, - FC8D2CBB7F3F172606AC10D2C078B8A8 /* EXDownloadDelegate.m */, - FE4100B596546C8BD05B79F73B27C79A /* EXFilePermissionModule.h */, - ED4F75CC2FE863829739DB722A4C1976 /* EXFilePermissionModule.m */, - 173CE0DAEBEE072BE0F75998A652E853 /* EXFileSystem.h */, - AD27E67F73D4E077F52AC2E282064C9E /* EXFileSystem.m */, - A16E1DE4BC1E32430BA199493DE6EB8C /* EXFileSystemAssetLibraryHandler.h */, - 3C938C3E44C1FC6FECA651BDAC5FF134 /* EXFileSystemAssetLibraryHandler.m */, - 0F5DA0C2AD93FA52A0FCA4BD5815F600 /* EXFileSystemLocalFileHandler.h */, - C4AC4B216D16F6CC0E852D0C116EDBF3 /* EXFileSystemLocalFileHandler.m */, - 1C0A7BC2E0513DC86AA4866E07F327F9 /* Pod */, - 14FDE71DBFB3C2183FA934D7CBB27D5D /* Support Files */, + 493D0D47E7DBC9AECCEF30AA3D7B3DB3 /* Core */, + 65F7A9589DDF3FF7AAA46696E23E681D /* fishhook */, + 84D1EC32AFF6CB750055338C60D16E61 /* Pod */, + E8E8565407739129590521B1A421C4F6 /* RCTActionSheet */, + D0EBC53065BCC20D5A814EAE43158E76 /* RCTAnimation */, + 78A9C31FF448E481192D15CB2D1EA49C /* RCTBlob */, + 85995E69A09E200E81FA2640DBA3D49F /* RCTImage */, + 412FEC52042E2F378DF20BB8E7C200F2 /* RCTLinkingIOS */, + 42F9DCAA038063C06E31A102C90EDA16 /* RCTNetwork */, + CA8287CD74F1DA185E01D170FD6D4975 /* RCTSettings */, + B66FE2D9D5D56986EF5EED0979CFF82D /* RCTText */, + 25EAC9DF18E27438982011DDC5A883CA /* RCTVibration */, + 416345419E7863560CE8D7FB0786291C /* RCTWebSocket */, + BDDCC3D73E8F01DE84567069080D11FB /* Support Files */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; 0A7E0F530CEEA581B16197A5A636FC13 /* NSData+zlib */ = { @@ -3044,74 +3037,33 @@ name = "NSData+zlib"; sourceTree = ""; }; - 0DFDA18E3B59B2B158CD057D79830762 /* encode */ = { + 0B18FD8FF99FDC490F20C6C5F91113E2 /* UMConstantsInterface */ = { isa = PBXGroup; children = ( + B19A832152408DFE546CC2785BC7C0E9 /* UMConstantsInterface.h */, + 060FB9DA233C5414528BFD668CC6D21B /* Pod */, + 8C9BDB38E9BB836D32C340A4C1023E9E /* Support Files */, ); - name = encode; + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; sourceTree = ""; }; - 0F51C2FC4C5A65E2E07D30D38245916E /* Support Files */ = { + 0BBD05D4AF2024F9B2FFDEDEA7C816B1 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - 4A5832B4F89CD47C76A02BD8150F0387 /* UMCore.xcconfig */, - 81C785106794DB64CA7A52E51AAE87CA /* UMCore-dummy.m */, - B4DDB3F0DAA64CD84794A631F4D65572 /* UMCore-prefix.pch */, + 1764713FC3100BAF4A60A03AADC99E3A /* UMImageLoaderInterface.h */, + 61732052366C01AE2AD7D0405C4D9820 /* Pod */, + 62702C2AD6D5481E806F4CCCE5BE1DE1 /* Support Files */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - 112ECD25C50440BE55584D116C6F963E /* Modules */ = { - isa = PBXGroup; - children = ( - 1EEED601F3F0ADAACF378FA3F3974B85 /* RCTAccessibilityManager.h */, - 772B65C493822FF9E351BABB7F38CA83 /* RCTAccessibilityManager.m */, - FF4A414E57743259164B8E097752D062 /* RCTAlertManager.h */, - 35E30A595E6909AA5F41CCED85F0C6C6 /* RCTAlertManager.m */, - BC9B322E46595C6286FC6C7A6E86144F /* RCTAppState.h */, - F7D4B4E61D2550E89B37DD5CAEF42EAF /* RCTAppState.m */, - D46BC06BE54C54094B8DF2EC654125D6 /* RCTAsyncLocalStorage.h */, - 8A2AA6F5371A7C5F1BC5593172F8957B /* RCTAsyncLocalStorage.m */, - 36C81AEFA620AE9A42C264C6656520E1 /* RCTClipboard.h */, - 3F6800369DA08462CB599FA34B9B109D /* RCTClipboard.m */, - F2ABDADF27871B80DDAE3197C66390ED /* RCTDeviceInfo.h */, - BC209029EE937B8ACCAE930B29EE7D26 /* RCTDeviceInfo.m */, - F903434DE20EEF75B8DF230D0FB8F5C9 /* RCTDevSettings.h */, - 38078D2BA55DD82B1AC04A5CAE128CFB /* RCTDevSettings.mm */, - 66EEC93AE6A6BC4AF291EEBF435B41E6 /* RCTEventEmitter.h */, - 9687ECEBBA3F7BC82844FD8D620E1290 /* RCTEventEmitter.m */, - 43726AC7B25D17C12E39D6A27631A265 /* RCTExceptionsManager.h */, - 16F13CD9A4A583163E1093215792869D /* RCTExceptionsManager.m */, - 8117FC6BE8162F0A7EAEA5B3F013B8CE /* RCTI18nManager.h */, - 36E9D2229ACF5C9B8E86F56081C62376 /* RCTI18nManager.m */, - 700D53107E0FB5F943E1DA347DE1C975 /* RCTI18nUtil.h */, - 601710D16C5235B02C8EB37999D65CB5 /* RCTI18nUtil.m */, - 9A3E729EED6E8F3264F54901D0C15D20 /* RCTKeyboardObserver.h */, - BFCEF5699231FABFC31871B5A83324EC /* RCTKeyboardObserver.m */, - AA9EE1BFD241C384EDE66A639DFB16A0 /* RCTLayoutAnimation.h */, - 1CE00249C1B2AC7A5F90B2EC58F3F2CB /* RCTLayoutAnimation.m */, - DBB15DAD0D2CCF1BE82322832B0D375D /* RCTLayoutAnimationGroup.h */, - F8ADA7B31E5030193614B07CF75F7FC6 /* RCTLayoutAnimationGroup.m */, - 2C25A455E6DD0CF1D341F0AF61DF00A5 /* RCTRedBox.h */, - D000B2DC53664807BDEA125143A58E6D /* RCTRedBox.m */, - 0BFE686B9EBD79EAE6A8A2E28B48CE35 /* RCTRedBoxExtraDataViewController.h */, - F6A39AE08576EFD9D77C9AB92D989292 /* RCTRedBoxExtraDataViewController.m */, - 191E3FE0B263B68F0AB0C60F4B2939E2 /* RCTSourceCode.h */, - DAFEFE0586D49CDEAD27CBA4421A3EFD /* RCTSourceCode.m */, - 3E6EA7847936E331E86B362257DCC4D6 /* RCTStatusBarManager.h */, - 0DFD0E923F04AB68A59E3051056881D3 /* RCTStatusBarManager.m */, - 7343094DFB01B902591385FD327C2AF1 /* RCTTiming.h */, - 34432C47D34E65F676CAB8D56FC8047C /* RCTTiming.m */, - 6B349EBF09EAD9269AD69C43FE02F590 /* RCTUIManager.h */, - B9E5000096DF1740476D82173901B1B1 /* RCTUIManager.m */, - 674F28B26B9DF101486D5F666050E3F7 /* RCTUIManagerObserverCoordinator.h */, - DF47FFC9C4534140083F64B57A90AB0C /* RCTUIManagerObserverCoordinator.mm */, - FC15D4362FB045AFC79C5704AE41F708 /* RCTUIManagerUtils.h */, - 5793932406A356EA097D1934027877FD /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; + 0DFDA18E3B59B2B158CD057D79830762 /* encode */ = { + isa = PBXGroup; + children = ( + ); + name = encode; sourceTree = ""; }; 1236BC3FA18CAE87BFF0ED4ED0934871 /* FirebaseAnalytics */ = { @@ -3124,175 +3076,153 @@ path = FirebaseAnalytics; sourceTree = ""; }; - 143D862B7701BE7DC146D0E01C4B700B /* EXPermissions */ = { - isa = PBXGroup; - children = ( - DD473071A9887609014D13E28B403DEF /* EXAudioRecordingPermissionRequester.h */, - A60B58755D7FAB812E271D993BDB0C3F /* EXAudioRecordingPermissionRequester.m */, - D7FB9CAFB88544A1A5BA37E1E111A459 /* EXCalendarRequester.h */, - 6F5E56B8A4FA4ECD1C271132B8EFA3D3 /* EXCalendarRequester.m */, - 123CA8DD3E6A3BCB35A0A845F17BF863 /* EXCameraPermissionRequester.h */, - EA72B3AB767DB5E52E88C1B5615C7698 /* EXCameraPermissionRequester.m */, - FF91AAEC8781F422ABD8F2E7320735F8 /* EXCameraRollRequester.h */, - FE6FB884AB86130B3FA235D6596916D9 /* EXCameraRollRequester.m */, - 40577C9BC8C9BB454FC1C20E6308332D /* EXContactsRequester.h */, - EFBB213CC8CC8403FF058D580BA97F8F /* EXContactsRequester.m */, - EDDA59EFE420F19EB57185B0E573DB44 /* EXLocationRequester.h */, - E4F3B48D12ED3C384C0B5209F7FE1369 /* EXLocationRequester.m */, - 5BF82CB903CAEFA2CA66A7762B8FE6C8 /* EXPermissions.h */, - 85FE911EB001F8E28B02C19EF12D70EA /* EXPermissions.m */, - 7B81C6026A986ABCA75AEE570FFD353C /* EXReactNativeUserNotificationCenterProxy.h */, - A82B5B60EFF40299021D4B946A3208AC /* EXReactNativeUserNotificationCenterProxy.m */, - BF7B9468BECC20704FBD196FC4CC5073 /* EXRemindersRequester.h */, - 86EFE06820FB134DCDDF6963B5BD7B4D /* EXRemindersRequester.m */, - 3A2CA0453EB4FA3888A09328AFB0C15A /* EXRemoteNotificationRequester.h */, - 363DD865BA3FBB02C98DA6EC7F0A71E8 /* EXRemoteNotificationRequester.m */, - 5956F9FB9211682296BEF07D54D91AA9 /* EXSystemBrightnessRequester.h */, - 5438366E2EE31FC03C47D38F45877FDD /* EXSystemBrightnessRequester.m */, - 4881EDA209005C3F783C840139BBD1A6 /* EXUserNotificationRequester.h */, - 0E1F25D51BE521DF18295C571C993CD4 /* EXUserNotificationRequester.m */, - 8F426DF3863F8FF8774F70F2E95224EC /* Pod */, - 50CF126DE70B20C7EAF7A2E979BAB349 /* Support Files */, + 12A0356DED4D13A8ACB9C13E686B8463 /* Pod */ = { + isa = PBXGroup; + children = ( + 614DD65B6873751CF524AB61C31DC521 /* LICENSE */, + 939C463B19D94781AF90514C5875182F /* README.md */, + 79C0E7B6B62D12F73DCA5492EDF02096 /* RNImageCropPicker.podspec */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = Pod; sourceTree = ""; }; - 14FDE71DBFB3C2183FA934D7CBB27D5D /* Support Files */ = { + 13F1A34C7197750A5941061AD6B2EB70 /* UMCameraInterface */ = { isa = PBXGroup; children = ( - CB9511B477BF224ED55533290775B989 /* EXFileSystem.xcconfig */, - A66D191B9E06EE0DF4F24805F5AEE324 /* EXFileSystem-dummy.m */, - EE5D60B51D672F13ADC9F7CDE7127A29 /* EXFileSystem-prefix.pch */, + 7FB6FEF6E9C65093F21494725704EF43 /* UMCameraInterface.h */, + F5AC219D2FCD1EA501A0F8A3803E0636 /* Pod */, + 53781992D22A710EA24D8DAB88AFD578 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; - 1ABDC0FAE3BBF85CF0DAACCB8AC673AA /* Core */ = { - isa = PBXGroup; - children = ( - 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */, - 9DDBA0C893A828F996D54E54B9E0B132 /* GTMSessionFetcher.m */, - 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */, - E7D881ED2B5743223827914D984E15E1 /* GTMSessionFetcherLogging.m */, - 20957E6E06A9F00102F60719D037C558 /* GTMSessionFetcherService.h */, - 961E5CFB6EF6E98C98144578CDA78057 /* GTMSessionFetcherService.m */, - 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */, - B3FAFB7BCCD5C53538A4E9ED0729FF9D /* GTMSessionUploadFetcher.m */, + 156F2031BD682F1D8516960ED6F43C86 /* EXPermissions */ = { + isa = PBXGroup; + children = ( + F7B2AB6DCABD12BA606D58C2E2683864 /* EXAudioRecordingPermissionRequester.h */, + C7AB6A18322B8BF20E815C4D88D0C3F3 /* EXAudioRecordingPermissionRequester.m */, + 831929E581515A1F83140528906C2E4D /* EXCalendarRequester.h */, + 626A07274D4EB6A940A6B2AF98F40A12 /* EXCalendarRequester.m */, + 7F2DF0B466309B5A279FBA1DC687B6B8 /* EXCameraPermissionRequester.h */, + 28507E4DF8A45DB17887372FAFC2467D /* EXCameraPermissionRequester.m */, + CB74A35FB5355FB96FE7ABD109EB592C /* EXCameraRollRequester.h */, + C4CFC4C94B4768CD357C6D07640A6DD4 /* EXCameraRollRequester.m */, + 8126B6469CB961532063EC12B48E0E40 /* EXContactsRequester.h */, + B9D4D551CADFCBE08BCDBCEE6BF55E70 /* EXContactsRequester.m */, + FD4F67FD4DC2D7E5C9CDD5A175081EFC /* EXLocationRequester.h */, + 2F7BA665B98DC5E312B0A27CF309B94E /* EXLocationRequester.m */, + DF3CB5219994521549C3C9F959AC67E0 /* EXPermissions.h */, + B438A1B35BDB2C17AED2E57973661B0B /* EXPermissions.m */, + B3ADED8F8DEFA1278C85FB3E95276401 /* EXReactNativeUserNotificationCenterProxy.h */, + A9D45039C4DA76049EBA7DE8211EE7C1 /* EXReactNativeUserNotificationCenterProxy.m */, + D920F18086083E959BEDE1A89508580F /* EXRemindersRequester.h */, + 5150A9358391484C756E8161910D3C18 /* EXRemindersRequester.m */, + 90DB96D3D50579807B2CF5979ACCD04C /* EXRemoteNotificationRequester.h */, + 4CAC3B2203776ADA84BCAE41FBE0379F /* EXRemoteNotificationRequester.m */, + FCD0244F066FB140E7E71129A74233F8 /* EXSystemBrightnessRequester.h */, + 8084D3241A42B62A15B74F8C533C2B59 /* EXSystemBrightnessRequester.m */, + 845309D152A4F00257529AA2AB7FB409 /* EXUserNotificationRequester.h */, + E82EBDC8A490B30236C3D15AB2331BA1 /* EXUserNotificationRequester.m */, + 0633161BA9AB788A778C7E05B87193DB /* Pod */, + CEB949F417EDD257837365D0995D69E7 /* Support Files */, ); - name = Core; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; - 1B0906BCE523B50CD91F3CF1777A50E6 /* yoga */ = { - isa = PBXGroup; - children = ( - F19798BC8DEF7CE0D713F55635AFABA7 /* CompactValue.h */, - 23242CF9C7621145831D05D877197437 /* instrumentation.h */, - 701975F31F03CA2F495B52D2BEEBCDC3 /* Utils.cpp */, - 747393603D7AEA89114E7A5E2375A908 /* Utils.h */, - 9766F4DFDC2277FF8DADAFC8AD817E52 /* YGConfig.cpp */, - FD6E1A0E841DFF8561CAB2B00C6D3768 /* YGConfig.h */, - F871BC8A0BBB14B35CBB31B9435A63CB /* YGEnums.cpp */, - 31B2D72D412B419A09EEE2219636D0D5 /* YGEnums.h */, - B5C7F5D95DD914137BF94D76493C3FEF /* YGFloatOptional.h */, - 75AA52977A1E1150C14665F8A45F2C38 /* YGLayout.cpp */, - F890309580FDDC90BA263056E3487AD3 /* YGLayout.h */, - DCC8BB9A6F76EAD923DEB5A928B25C58 /* YGMacros.h */, - 8EAC50A0BA303896C5DB958A11879863 /* YGMarker.cpp */, - 90AFB4C0A5A07720C95E049B54BBE4E1 /* YGMarker.h */, - 711FC9F5BA0579633D01BBDB5A3A0427 /* YGNode.cpp */, - 243936168A9D9B27F417C64A9ED4C4DC /* YGNode.h */, - 14932E74E710E29AFB2ABDDFFA659B8B /* YGNodePrint.cpp */, - AA4F62785625294E1BF583BB105A4005 /* YGNodePrint.h */, - 769B813EB142B15699A2D538E9103E94 /* YGStyle.cpp */, - BE3F8C0D81AD007E3477C930D206FB30 /* YGStyle.h */, - E80985FEDA781D9E6311CA8F3A07D9B6 /* YGValue.cpp */, - 52E1F8271B715F55D9EFC4011B1C7EF1 /* YGValue.h */, - B72F9F3DBB9E81D5287C9AC02D55CA49 /* Yoga.cpp */, - 2109BD650E42AB4E87AC3D378D671C14 /* Yoga.h */, - C892191B4EB8D916A0C1A0B462F9EE54 /* Yoga-internal.h */, - C0DDC810ECA45175A926D430E20BB7DC /* Pod */, - 90A84BD57B49F42B87E623EA4F6837D2 /* Support Files */, + 162034FB2417C91365D01E931B0F1931 /* UMPermissionsInterface */ = { + isa = PBXGroup; + children = ( + 6BB2A262F38170E8E7DCFD64388D952C /* UMPermissionsInterface.h */, + AE64DF9A4548F8784492704BAB97A910 /* UMUserNotificationCenterProxyInterface.h */, + A4DDA38DB29B95D5F4F6F8BF5171AF91 /* Pod */, + B7CB9BD5D292E1470CE452C1215D2996 /* Support Files */, ); - name = yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; - 1C0A7BC2E0513DC86AA4866E07F327F9 /* Pod */ = { + 1749EA678928E5272262EC889C6C4A5D /* EXWebBrowser */ = { isa = PBXGroup; children = ( - BEC4999764D54C73F9A6058B1C7DF5A5 /* EXFileSystem.podspec */, + C85CB6ADE38F01EC5F5DB0556BD13636 /* EXWebBrowser.h */, + A6F52032E24B113CC7408E54490FD8B1 /* EXWebBrowser.m */, + 907B1AA9C9A23B16A07F690E51D4B145 /* Pod */, + AE361E9A4AED25932BFC2C3A0897C497 /* Support Files */, ); - name = Pod; + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; sourceTree = ""; }; - 1CB0BA005486EB97B1EAA6F9B40812E1 /* Support Files */ = { + 1931CBCD0012949C6489C3390BE2C7CD /* Services */ = { isa = PBXGroup; children = ( - D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */, - D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */, + 461925347A30AE6FAE3CD7B318D4600B /* UMReactFontManager.h */, + 8F8443BF9243EF19D3F65759F6816464 /* UMReactFontManager.m */, + 6BD770217FE1351E2C0E91F27F6BF098 /* UMReactLogHandler.h */, + D76793AAE2366882DD0947572947FCA1 /* UMReactLogHandler.m */, + EC99704FED67D4EE92F9886C9515F602 /* UMReactNativeAdapter.h */, + 1776896CFB2DB7D53F6870D097871B60 /* UMReactNativeAdapter.m */, + 8EB5F6DC65441C2F195024FFCD646DC2 /* UMReactNativeEventEmitter.h */, + E786A6183AA3E8AD0FA61A82EAF88AD4 /* UMReactNativeEventEmitter.m */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseInstanceID"; + name = Services; + path = UMReactNativeAdapter/Services; sourceTree = ""; }; - 1CC339D3890D0622EF9F2A291BFD2703 /* UMViewManagerAdapter */ = { + 19CF214DE4DB403160C9256DE211A746 /* Services */ = { isa = PBXGroup; children = ( - B1EFF76120AAB1004F51873408FEAE9C /* UMViewManagerAdapter.h */, - D4F4EC2A8D822EE8300DB74699A252AF /* UMViewManagerAdapter.m */, + 480C81E4CEDE746C6B881C6D572D92CE /* UMLogManager.h */, + F6E0C1BD080830E926F2C82F519089CE /* UMLogManager.m */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = Services; + path = UMCore/Services; sourceTree = ""; }; - 1E49913644AAD602982BAD865F406891 /* FirebaseABTesting */ = { + 1A434263C054BEB5669E4D1ACB5EE187 /* Support Files */ = { isa = PBXGroup; children = ( - 7FBFCDD5C01E400A2DA947FFD3D9C153 /* Frameworks */, - B0B14F0A7B74B461C5E79F8A35BA225B /* Support Files */, + 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */, ); - name = FirebaseABTesting; - path = FirebaseABTesting; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; - 1EB3F2BF1CDBCE8651805C961AFB0C0D /* BaseText */ = { + 1ABDC0FAE3BBF85CF0DAACCB8AC673AA /* Core */ = { isa = PBXGroup; children = ( - 635D08C3DB3DDA537133A7DA3A41F4D9 /* RCTBaseTextShadowView.h */, - FFD5E0B9F06F5A7D856541145756B5C6 /* RCTBaseTextShadowView.m */, - 5E256E66581FA5E025A0799C4735EF61 /* RCTBaseTextViewManager.h */, - 2BFBEC6AD5A3907A6061C1710B02F6AF /* RCTBaseTextViewManager.m */, + 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */, + 9DDBA0C893A828F996D54E54B9E0B132 /* GTMSessionFetcher.m */, + 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */, + E7D881ED2B5743223827914D984E15E1 /* GTMSessionFetcherLogging.m */, + 20957E6E06A9F00102F60719D037C558 /* GTMSessionFetcherService.h */, + 961E5CFB6EF6E98C98144578CDA78057 /* GTMSessionFetcherService.m */, + 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */, + B3FAFB7BCCD5C53538A4E9ED0729FF9D /* GTMSessionUploadFetcher.m */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = Core; sourceTree = ""; }; - 1EC762718622055422F3533670A75A91 /* RNDeviceInfo */ = { + 1CB0BA005486EB97B1EAA6F9B40812E1 /* Support Files */ = { isa = PBXGroup; children = ( - C8834CDA6331099049A78425491B96AF /* DeviceUID.h */, - 5F83929F84751E54C2AD0013142488C7 /* DeviceUID.m */, - D082C0F20D0A95DC453DC8FEAE62DD1F /* RNDeviceInfo.h */, - 6077EA5CD55FB91C1E4027E822787BD5 /* RNDeviceInfo.m */, - 2A665253968E2984B30054B0711803B0 /* Pod */, - 3F989F721198C801F5CFE79B53B59A93 /* Support Files */, + D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */, + D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = "Support Files"; + path = "../Target Support Files/FirebaseInstanceID"; sourceTree = ""; }; - 213CDB0C124045F412569B6E1DFB2FE4 /* UMFaceDetectorInterface */ = { + 1E49913644AAD602982BAD865F406891 /* FirebaseABTesting */ = { isa = PBXGroup; children = ( - A08D682490D8E6EF9EAF2712A70D5B0D /* UMFaceDetectorManager.h */, - EE083A8A29656FFAEE5CBA715756E218 /* UMFaceDetectorManagerProvider.h */, - EFF0FA5B39551C4C99A96964D9C691A6 /* Pod */, - 3BC64A144FA36E3F1E665AE8510AAD21 /* Support Files */, + 7FBFCDD5C01E400A2DA947FFD3D9C153 /* Frameworks */, + B0B14F0A7B74B461C5E79F8A35BA225B /* Support Files */, ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; + name = FirebaseABTesting; + path = FirebaseABTesting; sourceTree = ""; }; 2141029150C2FA187180BCCCB97AC3C0 /* Folly */ = { @@ -3327,100 +3257,139 @@ name = Frameworks; sourceTree = ""; }; - 255E83F51312A2902B88D53958FF7574 /* Support Files */ = { + 25A95FAE53C8AF8650D41F45973F39F7 /* Pod */ = { isa = PBXGroup; children = ( - 67DFE3C6D8C3CA832A5A9DE83A740C69 /* UMFontInterface.xcconfig */, + 46DFE42EE0D6F54E9FE6E8AB5C5272DE /* EXConstants.podspec */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + name = Pod; sourceTree = ""; }; - 27B207A65DD76E2B2C53BF9685AA682F /* Nodes */ = { - isa = PBXGroup; - children = ( - F4D6C3DF3EB3B8A88B99649711C133B9 /* RCTAdditionAnimatedNode.h */, - 165E79EC15B2A650554BB4E6FB9F536C /* RCTAdditionAnimatedNode.m */, - F72F26273A708E334D5FAFC6CDFF79FB /* RCTAnimatedNode.h */, - 45FFA118E790BFDC6174450D92BBE0C4 /* RCTAnimatedNode.m */, - 6DBCFE241D50787D88C02583958BE5CA /* RCTDiffClampAnimatedNode.h */, - 69089CC3E936539BE132560E11A43A13 /* RCTDiffClampAnimatedNode.m */, - CD751402E7549EB8B598F4735F8252D6 /* RCTDivisionAnimatedNode.h */, - 6ABA78C8B38CA6B1881EB691BF93978E /* RCTDivisionAnimatedNode.m */, - F37CCA4AE98AC65E34645E6DD81B01B9 /* RCTInterpolationAnimatedNode.h */, - 8A6CA2F27AA1CACFB66A890FAA45F7AE /* RCTInterpolationAnimatedNode.m */, - 27021A74E2CED0F15E858A559C9D73DC /* RCTModuloAnimatedNode.h */, - 1C9814185C288FDB35A991A7522CC8C7 /* RCTModuloAnimatedNode.m */, - 751FA6A2DDEF00EED6F2D6EA974D5F2B /* RCTMultiplicationAnimatedNode.h */, - 7139D7D01C9615FB45B1C6B4F672C12C /* RCTMultiplicationAnimatedNode.m */, - E9C69FBC4A672E339B9A2FEC0FC1874F /* RCTPropsAnimatedNode.h */, - B81A83ED22FAEEF671721F5539526E1D /* RCTPropsAnimatedNode.m */, - D7C65B7023506828FCA0D6AB455DB5A2 /* RCTStyleAnimatedNode.h */, - BA339536319BC25522EF73397E6C1A2C /* RCTStyleAnimatedNode.m */, - 50EBBDFA59A434C9A62FB602CBA3B1E6 /* RCTSubtractionAnimatedNode.h */, - 248BD15B47C748C548521943253B99BC /* RCTSubtractionAnimatedNode.m */, - 0972404CC5746EDD33DB926C63C39B0C /* RCTTrackingAnimatedNode.h */, - 55E34EA0E5068899706C55903C799F7B /* RCTTrackingAnimatedNode.m */, - 2014671FA21DB7CA8D70C01A59531CF8 /* RCTTransformAnimatedNode.h */, - 5989744E048D625A4E09120B6536948A /* RCTTransformAnimatedNode.m */, - 63BC27C9013C5194886F9806DD136E6B /* RCTValueAnimatedNode.h */, - A988DC6BAB41B994615D340C5792BC65 /* RCTValueAnimatedNode.m */, + 25EAC9DF18E27438982011DDC5A883CA /* RCTVibration */ = { + isa = PBXGroup; + children = ( + 9F6DC552674B01CD37E7D8140BA9E7FD /* RCTVibration.h */, + 5CD210D74B0444D19FD5459685DD774C /* RCTVibration.m */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = RCTVibration; sourceTree = ""; }; - 27CACCAFE57C9E2DD2A20636A9578268 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 7EF3F1AA3419F86390FDD7E7AAE7C9A9 /* EXAppLoaderProvider */, - 73592DB75DAD4520CF78F1EF0EC70056 /* EXConstants */, - 0A77232C0CA97A176DAB6F849135F9A9 /* EXFileSystem */, - 9B7D44B2A23E32E40556E6DC66611D1F /* EXHaptics */, - 143D862B7701BE7DC146D0E01C4B700B /* EXPermissions */, - B574C04C964C5653A5CC1992ADC30FE4 /* EXWebBrowser */, - 8A73BFF2F8818CF28F0A630C16F22F65 /* React */, - 8E4192F07F2BD9F9EE949432E67C031F /* react-native-document-picker */, - 95FFC141859438306160F0DFD98DA281 /* react-native-orientation-locker */, - 315FF617E586112163A50465ADADEAD5 /* react-native-splash-screen */, - 8973BB59F4D71D65D834C7DCD70B33D6 /* react-native-webview */, - 1EC762718622055422F3533670A75A91 /* RNDeviceInfo */, - 9D6E752AB738836883DF9F163D6D2CE6 /* RNImageCropPicker */, - 4E1D59A88637222D71B528A185EA6F39 /* RNLocalize */, - E01C52FF9E3DD57492E35F8AA1F7174F /* RNScreens */, - 4F2E84B99777E6ECB798ACFF2BB1E9EE /* UMBarCodeScannerInterface */, - E94F0859125FAEB2A9D6E749BA7732E2 /* UMCameraInterface */, - 46234EA28C6D5DA159787A15A5E549D0 /* UMConstantsInterface */, - 2C7D84C0D4B862DFD7D44DD77360CA46 /* UMCore */, - 213CDB0C124045F412569B6E1DFB2FE4 /* UMFaceDetectorInterface */, - C7B7AE6D3CFD172829603C58A6FB4F90 /* UMFileSystemInterface */, - 4A7FCE6B5E27EEBFF671362ACCF0354A /* UMFontInterface */, - 807C18784FD47D36F76174B201F746C6 /* UMImageLoaderInterface */, - B9AE254BBC6CB8D8F29C594C8022479D /* UMPermissionsInterface */, - B9D180699F777B3DD32174EC4AE8BE51 /* UMReactNativeAdapter */, - 4F602C3174CE853A637FEA1C4EFA91EE /* UMSensorsInterface */, - B62841CEDCAE7DBA277F621D528F129A /* UMTaskManagerInterface */, - 1B0906BCE523B50CD91F3CF1777A50E6 /* yoga */, + 26422DCDA3E9A5F0135AEC10C5CCA190 /* Views */ = { + isa = PBXGroup; + children = ( + EF10AB902332DFA0E488803B92804A4E /* RCTActivityIndicatorView.h */, + 18CC51F21164F07278902C05F56DC095 /* RCTActivityIndicatorView.m */, + 097AE4854DE413C10366147CADC084F1 /* RCTActivityIndicatorViewManager.h */, + 937E1CF55B4A88FB57F205E5A26EE1E4 /* RCTActivityIndicatorViewManager.m */, + BEE3C73D929820699DFBA89E76AC29C3 /* RCTAnimationType.h */, + C45AAF02E1EA7B247872B2079B47B969 /* RCTAutoInsetsProtocol.h */, + 91A9F04829BCC6F42AF429262D314BB0 /* RCTBorderDrawing.h */, + 350194664AD90B13B8325EF9C94429F6 /* RCTBorderDrawing.m */, + 2D50D991C41C2A400FF364635DE87971 /* RCTBorderStyle.h */, + 81679495E33F981696E19ED18C1B485A /* RCTComponent.h */, + 937C951DA1C9667808565CF6BDF68D53 /* RCTComponentData.h */, + 281E951947D4190E42DE8143BF13C3B9 /* RCTComponentData.m */, + 17F1E0CD0FF555CDFBC37146CF250C38 /* RCTConvert+CoreLocation.h */, + 201154431839DDDE3CE20ABBC609F03F /* RCTConvert+CoreLocation.m */, + 7E58DC49A2D4D26720415F4EF77EAD0F /* RCTConvert+Transform.h */, + C7000BCE93F98265875ECD1F406342B7 /* RCTConvert+Transform.m */, + EFFF9FF9CECA6A3664C1E116308C8E47 /* RCTDatePicker.h */, + C29DE0FD20E597194F63023366237A97 /* RCTDatePicker.m */, + 884FE6F7BDE05D9A77E2BB9B5F5B55B7 /* RCTDatePickerManager.h */, + 0232A18EAEC249F47B610ED510163A1E /* RCTDatePickerManager.m */, + B61D4F72E458CF990458F2F57148257E /* RCTFont.h */, + ED42783DB5DA2933B2315DBF1FC4562C /* RCTFont.mm */, + 0512A223ED5909FE37306B7788C70AF8 /* RCTLayout.h */, + 164F926D7F59098CD017B5D0C2CE62C2 /* RCTLayout.m */, + 38A5683A8BD41FB382059740D6082296 /* RCTMaskedView.h */, + 32CF95A31BEDBF962A756F6BE0DBFD42 /* RCTMaskedView.m */, + 88825D9BB2C364E8A225EBF57B64AC16 /* RCTMaskedViewManager.h */, + D3A5C088BDC11C4DB7646EBEA842AAFF /* RCTMaskedViewManager.m */, + 8DA63778E26593951ACF860325A76F2E /* RCTModalHostView.h */, + 859C4F23EA9F010854D5711CE603E006 /* RCTModalHostView.m */, + 678CA992E44B00AAC55BFD1EBEF71CE4 /* RCTModalHostViewController.h */, + 904AF1C4870C8009B28B1AC932F01339 /* RCTModalHostViewController.m */, + E10B34D1A2E61BEC228AE0A659F3CABB /* RCTModalHostViewManager.h */, + A65C6F30E9DA32FEE00E5BBD535754F2 /* RCTModalHostViewManager.m */, + 2CE066FCA4FE127AC639460F79B3E4B8 /* RCTModalManager.h */, + ACFDB25A700626BC243BB7F090C7D05E /* RCTModalManager.m */, + 9E9CE2A4AD466F1197CBA06C676C10A0 /* RCTPicker.h */, + 81A4A2D931A40792CAEFDD49740B6183 /* RCTPicker.m */, + 418F84B1BC853CE1E7778D1CE01C8C39 /* RCTPickerManager.h */, + D8A487015C737A75C4327A9FD8795843 /* RCTPickerManager.m */, + F638FE4C03C9A3EE084643A992859882 /* RCTPointerEvents.h */, + B2793434C02A64D8F791AD35E946D251 /* RCTProgressViewManager.h */, + 65593785A256392F171E73214D13D3AA /* RCTProgressViewManager.m */, + C3E201D7D0C0BAAFE35C46A6AEBC2873 /* RCTRefreshControl.h */, + AB05BB3ED8087F85BB25E0E8312C646D /* RCTRefreshControl.m */, + 0B091891802470C094603B4CE4C92B0D /* RCTRefreshControlManager.h */, + C12999E244F2494C774841F5478FB2CE /* RCTRefreshControlManager.m */, + 46E3CBCDE514D6A5F8963BE47AC1CF3C /* RCTRootShadowView.h */, + 1B718E7142F8CC53B8F1D6137C99962D /* RCTRootShadowView.m */, + 7CA7AA353495310B184835E788C1BDEA /* RCTSegmentedControl.h */, + 85DFCC7B268D27AB2EB0ACB8EC6CE74A /* RCTSegmentedControl.m */, + 87E9725B7C81C851ABD18E37872EDCA6 /* RCTSegmentedControlManager.h */, + 20CEAE3E21A1A598377AEF37AA77F518 /* RCTSegmentedControlManager.m */, + 93FEB25F87DEAA393B579B56A163DED6 /* RCTShadowView.h */, + C7BA9EA63C543F7EEE456E0535D2E0BE /* RCTShadowView.m */, + 4057EDA81321BC411E742EDA4FC195A7 /* RCTShadowView+Internal.h */, + 6E6EDEBAB005F945C63F59DBDF1D0563 /* RCTShadowView+Internal.m */, + A47498A3A8FBBE473C7531574A7CEEDB /* RCTShadowView+Layout.h */, + 41AACC33F0CED1172B53008DBFE3F4C1 /* RCTShadowView+Layout.m */, + BDA95A6B351A0F0EBE2D89BC3D4645F9 /* RCTSlider.h */, + 413521BFE065BB2AF805AEE3005FAA3B /* RCTSlider.m */, + 55084514ED99B37BF77EE63C2CAE3806 /* RCTSliderManager.h */, + EEAE6C9E3B10AAC75054F3CDFAFCEEB0 /* RCTSliderManager.m */, + C3A7B516D537AF85124336CF8F9DA990 /* RCTSwitch.h */, + DA354997F8B268C34524FA4EBE1EE915 /* RCTSwitch.m */, + A0CE6682711F2AF5F09BC2D0D13CCEA8 /* RCTSwitchManager.h */, + 8CEA057C37BDF210879789C260FC1446 /* RCTSwitchManager.m */, + CF95CFB5C3C1133DF4665A8F42EC1A28 /* RCTTextDecorationLineType.h */, + 8CABF880BB0E034539A1BAFE9E9093BB /* RCTView.h */, + 72D7296DCA2ADBEF058949326873E89E /* RCTView.m */, + DF47297C4313E3953C87E3E78635D49E /* RCTViewManager.h */, + 44DF0AE6FE0F26A22941191B212A4DCB /* RCTViewManager.m */, + 8DB980F641C363494126F4A26051E81A /* RCTWebView.h */, + 0BF063273AEE6D2CE8618E0CB76990FC /* RCTWebView.m */, + A4AF0E10141B984E71359A7404BF5486 /* RCTWebViewManager.h */, + 7440D1263C8C236D9E80386E59139187 /* RCTWebViewManager.m */, + E6C88B62D410B42E3450055C1E5F3A23 /* RCTWKWebView.h */, + 9194651291BD92C94897911196845215 /* RCTWKWebView.m */, + 7A4C2A63A87EB9D60417017F86685D95 /* RCTWKWebViewManager.h */, + 5D232D2C7844F7A78426B79BF4A4E345 /* RCTWKWebViewManager.m */, + 305D748336532294A6D1F1837DB1C8F1 /* RCTWrapperViewController.h */, + 96F839F9257121D1CC5C72635DB0ABEC /* RCTWrapperViewController.m */, + 012DCC84D8FA7FD348A1DF06C0C4A7F2 /* UIView+Private.h */, + 783582406C0AAEC09C992FD4E848F92A /* UIView+React.h */, + F370DDB86CC7FA6C7F679D146C8175AD /* UIView+React.m */, + 46B97B7A9E6F10400C1F2E6D456F2FF8 /* SafeAreaView */, + 3E8CB0A79E266439BC6D31230CC26620 /* ScrollView */, ); - name = "Development Pods"; + name = Views; + path = React/Views; sourceTree = ""; }; - 280999D25D07B5904F12B0D0BF00C6B1 /* Pod */ = { + 2AACB9432CC9053280D2FE63874A054F /* RNLocalize */ = { isa = PBXGroup; children = ( - 2F093F97CFD6E0B8D843F6EC332BD622 /* EXHaptics.podspec */, + 8738A9EE57BD71142B12D552AF59C2CF /* RNLocalize.h */, + 979097B7DB27D7F475B7C0D8B2A4293B /* RNLocalize.m */, + 2F45D66C2D302B1CDB11E58B6BB4B2CC /* Pod */, + 463861864FFBB759261E1BCE385D6935 /* Support Files */, ); - name = Pod; + name = RNLocalize; + path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 2A665253968E2984B30054B0711803B0 /* Pod */ = { + 2B12C0FA6975DE073FC7649DA834B90D /* Support Files */ = { isa = PBXGroup; children = ( - 0BE910F68838C1F02269939B6EEA2818 /* LICENSE */, - B5A69C0AFC178E2118E81C242B22FC24 /* README.md */, - 5DD693CACE25529F4F53940C82F8DE03 /* RNDeviceInfo.podspec */, + 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */, + 05681DFC28945653595E17F4E93C9D56 /* RNDeviceInfo-dummy.m */, + 80697C5F9E2712674F529C4476DF023A /* RNDeviceInfo-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; 2BD9E0D96E3A87D9AF2D1911D3C55E10 /* Support Files */ = { @@ -3434,70 +3403,57 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 2C6E3790519D530D97556B3EDA8E034D /* Pod */ = { + 2F45D66C2D302B1CDB11E58B6BB4B2CC /* Pod */ = { isa = PBXGroup; children = ( - 9800EA0034171BF204FE2D4E0F5F32B2 /* EXAppLoaderProvider.podspec */, + 743FA771575F96193CB1D17C45BB8147 /* README.md */, + A079A52E9EFE84C17A200F946A6CBFBA /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - 2C7D84C0D4B862DFD7D44DD77360CA46 /* UMCore */ = { + 2F8944B9C1E58526E98BFB86452FCEE6 /* Pod */ = { isa = PBXGroup; children = ( - A6DE6F714DECC12F2FAAA62E5D036AB1 /* UMAppDelegateWrapper.h */, - 6AEDEA44575054AF11CC2DF2BFCC63A9 /* UMAppDelegateWrapper.m */, - 51A895A0A971D9D4E1622D4B6DFEC5DB /* UMDefines.h */, - AE7CEA0551C62CA64D926B6356BED0D9 /* UMExportedModule.h */, - 8512B89FFB306BDD704EF9CC16EB41FA /* UMExportedModule.m */, - 3C81BC2CC57CEA9279F85270AD705088 /* UMSingletonModule.h */, - CA9307290ECE086A92CB72734CD3A2DC /* UMSingletonModule.m */, - FB7B093624CAF527E69467636ABD689D /* UMUtilities.h */, - 315FF43D145106CD4B9220A41A039233 /* UMUtilities.m */, - 0D01BFFEAAF5F84BECFB62B1D3A7747B /* UMViewManager.h */, - 42A33F9114A7729630DA1F569E56E13B /* UMViewManager.m */, - 8669CC8948B7D89A4C57350BB1D72033 /* Pod */, - 7B4D0CC8F0AA812D4ADDD7396EA6E8B6 /* Protocols */, - B0E3059430D7C1F6A99AB92404255C55 /* Services */, - 0F51C2FC4C5A65E2E07D30D38245916E /* Support Files */, - FB4EE8368259BCF07972D02EEBB8C53E /* UMModuleRegistry */, - 02BDD47EB29F1787028A352C89648AF9 /* UMModuleRegistryProvider */, + F8AD3679AA01C28391BB0E4EEFC99E0C /* UMFaceDetectorInterface.podspec */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = Pod; sourceTree = ""; }; - 2E35F9FF6A503EE8F7A9930EDDE57501 /* Pod */ = { + 2FC70A117921446789CF74F482DDCF0B /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - CF34FCCC15F6255645D39563543E4CBD /* LICENSE */, - A324AC81B36A47873253C51355B17425 /* react-native-webview.podspec */, - 280279ABA1A335E9477ABDECC2FD23DD /* README.md */, + F13A1475E182AC393417BA122E41795B /* Orientation.h */, + F7F6EC030F63CDFB6FACCF29A7D9AFBC /* Orientation.m */, + 4DA1E107322A698257660425245CCBBA /* Pod */, + 6FD0E2C4BBD04D03E984E8CAA283611B /* Support Files */, ); - name = Pod; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - 2EEF35787E49FE5DEF76817B16E1BB0A /* Support Files */ = { + 30570BA9A5B9617BDE745792C4DF80E1 /* Singleline */ = { isa = PBXGroup; children = ( - C430D6EEE35DFC1338F41478D200AC38 /* RNLocalize.xcconfig */, - A4E61B38198D97CA86F12CD6B90CADBD /* RNLocalize-dummy.m */, - 4A2AEDA154988ACD36491CDB432768BE /* RNLocalize-prefix.pch */, + 54B57C0ADF05903074C65E624C0E439F /* RCTSinglelineTextInputView.h */, + 269BB7C29768AE4AE43F0C37D6A48C8B /* RCTSinglelineTextInputView.m */, + 39BBFE25A926E5BCA0D4A66F3B963613 /* RCTSinglelineTextInputViewManager.h */, + CCBFB9C2A9B0A4DE9787C48CBE5BD58B /* RCTSinglelineTextInputViewManager.m */, + 0AA3AD8840FCA5C82348C0B7469A06A0 /* RCTUITextField.h */, + B806EE9A192E52046E51562CFC93A337 /* RCTUITextField.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 315FF617E586112163A50465ADADEAD5 /* react-native-splash-screen */ = { + 3124562268872FD3B1A39C24CE6FDDEB /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - D03060A6A2D988F8522CDE5873BAEA82 /* RNSplashScreen.h */, - 356D99420FC4263107462E2438047E08 /* RNSplashScreen.m */, - 8AF1BF9E3D692286177358393C8C71AE /* Pod */, - C843E065DBD13A48AE40731A319BA9EB /* Support Files */, + 4682CCF683C4BAD900558FDA6C3A7A7F /* UMModuleRegistryProvider.h */, + B8CC93F6B13EC4F6A6B5FE0D56939147 /* UMModuleRegistryProvider.m */, ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; 31B663C5361B9A0EEB26334960644935 /* Network */ = { @@ -3517,22 +3473,6 @@ name = Network; sourceTree = ""; }; - 33CE423F9BFCA5DFA252179EA0AD5628 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - A046A40FCC947D7E61CC888BAAFCD5AA /* RCTSafeAreaShadowView.h */, - 4F03A71B1A7A836713EA99C0895B5175 /* RCTSafeAreaShadowView.m */, - 050BAE3B53842FDC6949860697A59FEB /* RCTSafeAreaView.h */, - 4F5B2B61643B7E9F83E3079EA2B2E2D1 /* RCTSafeAreaView.m */, - 5CFB7C6A8B244851D1CE2579D38DF058 /* RCTSafeAreaViewLocalData.h */, - 55A4F44BEF0004ADC20ECEA8E73A5435 /* RCTSafeAreaViewLocalData.m */, - 574386FF2083A0B4FE47D6E9A953A9C2 /* RCTSafeAreaViewManager.h */, - 67F9FFB21F61BADAEC011B91C6AC6F40 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; 34A37080B6F05E6577A9E8803274F297 /* Firebase */ = { isa = PBXGroup; children = ( @@ -3543,12 +3483,16 @@ path = Firebase; sourceTree = ""; }; - 36A91DA981E988A486E4D22048A3C679 /* Pod */ = { + 38BC477C45CA05239B7A40870306EEDA /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - E9DA8859CE7B90662E0CDDA5F86A7B99 /* UMTaskManagerInterface.podspec */, + 6113A5F1DC0B84656CD70D7A8E335A92 /* UMFilePermissionModuleInterface.h */, + 47B726840D4225B546CD9BD81E2D9A86 /* UMFileSystemInterface.h */, + 688DC0AF21AA3A999DBB1BF4C9AD9B6A /* Pod */, + B9DCA5B9DDC21DE5BF05F534C9122E39 /* Support Files */, ); - name = Pod; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; 392E4784A690A07630EAD5B1548E949F /* Frameworks */ = { @@ -3559,94 +3503,110 @@ name = Frameworks; sourceTree = ""; }; - 3BC64A144FA36E3F1E665AE8510AAD21 /* Support Files */ = { + 3DD57CD372B61DAA93718DAD46191979 /* Support Files */ = { isa = PBXGroup; children = ( - 17AC175BF97175222A6FF39520436A02 /* UMFaceDetectorInterface.xcconfig */, + 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 3D92FD0E93FD01FC28B2CBEEB1186223 /* Support Files */ = { + 3E8CB0A79E266439BC6D31230CC26620 /* ScrollView */ = { isa = PBXGroup; children = ( - 55A0E6C10311E44F2310CC18F81AFE38 /* UMBarCodeScannerInterface.xcconfig */, + F5089D3701C2B26D1C38E9B2946A958B /* RCTScrollableProtocol.h */, + 2942B5CB2BE222AEF2E0D84B8F758B4A /* RCTScrollContentShadowView.h */, + F78898A13A5EB6B8F912D6AFE173D928 /* RCTScrollContentShadowView.m */, + 5DB1AB07BBF2DBAF40ABD80E52F55D31 /* RCTScrollContentView.h */, + E686419BE49164D82939A97379EBCB93 /* RCTScrollContentView.m */, + 42D1EAA2B127008A1FBD347BB1569FC5 /* RCTScrollContentViewManager.h */, + 262757B1EEFE3577ECE6B42C3C191DE4 /* RCTScrollContentViewManager.m */, + 796605920141ACEF9364E34651E8DFB2 /* RCTScrollView.h */, + 5A98F58275B7CEF021261333C77FCE29 /* RCTScrollView.m */, + 5D2032E9F4019B31D00610FD21267D5D /* RCTScrollViewManager.h */, + D5038BF877B1D4E908BB74DF9EEBA1EE /* RCTScrollViewManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - 3F989F721198C801F5CFE79B53B59A93 /* Support Files */ = { + 40AF612B6D0FC914E432F9D396D9D3AC /* Pods-ShareRocketChatRN */ = { isa = PBXGroup; children = ( - 847909C31AA7BA9BC2482692A6C17876 /* RNDeviceInfo.xcconfig */, - C1BC8645A785C361313FFBE872A01CF4 /* RNDeviceInfo-dummy.m */, - 02AC66D7FCBAC97407B07ADAE16AA6DC /* RNDeviceInfo-prefix.pch */, + 8981A3DCA2B5E70074AD0F0F1AF4F345 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, + 75E5F2FAE3615F969E1B0DA9DD23A307 /* Pods-ShareRocketChatRN-acknowledgements.plist */, + 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */, + 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */, + 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + name = "Pods-ShareRocketChatRN"; + path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - 3FBFEB8061762A7C680C19761403B12C /* Pod */ = { + 412FEC52042E2F378DF20BB8E7C200F2 /* RCTLinkingIOS */ = { isa = PBXGroup; children = ( - 3B3731A966B3B8999F102BD1C975B35C /* EXConstants.podspec */, + EF9E1BB641DD0FAA0F6A6BA00FEA5346 /* RCTLinkingManager.h */, + E4796E70EB1654C669BDB192982CACE2 /* RCTLinkingManager.m */, ); - name = Pod; + name = RCTLinkingIOS; sourceTree = ""; }; - 40AF612B6D0FC914E432F9D396D9D3AC /* Pods-ShareRocketChatRN */ = { + 416345419E7863560CE8D7FB0786291C /* RCTWebSocket */ = { isa = PBXGroup; children = ( - 8981A3DCA2B5E70074AD0F0F1AF4F345 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, - 75E5F2FAE3615F969E1B0DA9DD23A307 /* Pods-ShareRocketChatRN-acknowledgements.plist */, - 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */, - 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */, - 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */, + DCF71DE19AC2D44EDF9D409B80BF4E8D /* RCTReconnectingWebSocket.h */, + 8C2E147BC317303C418A8924BF2D93AB /* RCTReconnectingWebSocket.m */, + AF42DB2D5BEE3E0B8711364EEE0884B7 /* RCTSRWebSocket.h */, + FCBE4D1BC80B2F6BEB45098E409D8860 /* RCTSRWebSocket.m */, + F101F26D6BABEF2FA1A0AB350F225A68 /* RCTWebSocketExecutor.h */, + 9FF348D038C506F03350D63BE6E68CD2 /* RCTWebSocketExecutor.m */, + 4BD4B8AFBAFC43A30659BE157117345A /* RCTWebSocketModule.h */, + 2C5D702F4198078197CD9FA676606EAA /* RCTWebSocketModule.m */, ); - name = "Pods-ShareRocketChatRN"; - path = "Target Support Files/Pods-ShareRocketChatRN"; + name = RCTWebSocket; sourceTree = ""; }; - 41C2C1733395C227DE201BF51CBFE62E /* RCTImage */ = { - isa = PBXGroup; - children = ( - 9430701CE58B271FAE3DFA22C7E837CF /* RCTGIFImageDecoder.h */, - 42649A711DB250264423674C80322930 /* RCTGIFImageDecoder.m */, - 29697AF1CA948D59E327D63A04FFC3F6 /* RCTImageBlurUtils.h */, - 88B6BC85463371AE37E2466F947FE93E /* RCTImageBlurUtils.m */, - 4E31591A949C9A353D92ACF2D34F7D86 /* RCTImageCache.h */, - B3D98B53033022B911330E242DE56074 /* RCTImageCache.m */, - A8578D6E811A4CCC84EA536230BBCBB5 /* RCTImageEditingManager.h */, - 19B89CE36B3D24F1BF0499BF735EF583 /* RCTImageEditingManager.m */, - 3EB24B923885AFC2315569A7A491AE71 /* RCTImageLoader.h */, - B8D792577DA45FFBCAE02D73D7553C9D /* RCTImageLoader.m */, - B6E647A5931DDEB467A423C8DC392A89 /* RCTImageShadowView.h */, - 08279C6722BE69AD426FD48CB720E070 /* RCTImageShadowView.m */, - A0B7A296CD3B4230585949135B29EF24 /* RCTImageStoreManager.h */, - 98CA4940CC04A947FA288123D2D84E64 /* RCTImageStoreManager.m */, - 92F98AB7A03F19964457332E08AF3429 /* RCTImageUtils.h */, - DDBADE9756A6156A2B840CAB0D34FBD4 /* RCTImageUtils.m */, - 6C39F1753DA29E5A6D9606FEEE72D98F /* RCTImageView.h */, - 09D6DCBCAF8ACAA816AA8835503CCBE1 /* RCTImageView.m */, - 2CB8124BD173DE2A778FBCECF1034303 /* RCTImageViewManager.h */, - AB46F929F7AC48263EA275D15C6848D3 /* RCTImageViewManager.m */, - FD999C520E363B82202B379A4A56FCB1 /* RCTLocalAssetImageLoader.h */, - 8A0BC2473E7F25478CB5C6C84EE5C76A /* RCTLocalAssetImageLoader.m */, - 45AD649CA86248F9F13528F84BFE5C21 /* RCTResizeMode.h */, - 885A5143A2E8D15B26B1ADCC1411E341 /* RCTResizeMode.m */, + 41E09B3A44547CD4E53D37EBE2D67DC0 /* Pod */ = { + isa = PBXGroup; + children = ( + 881F03CBCC958AC8B719DC865A9D5B12 /* LICENSE */, + 44EDF5C1322BE3BAF0972A2222A06B24 /* react-native-splash-screen.podspec */, + ED546660CBC80ADC35EC448936703263 /* README.md */, ); - name = RCTImage; + name = Pod; sourceTree = ""; }; - 44456A3ABD61EDD3E6241CC8A71BDC8D /* Support Files */ = { + 4253570E7EC86F0CFD83388C02DBE5D4 /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - B40A5060BA1446A5F7473E4745CEB8EB /* UMTaskManagerInterface.xcconfig */, + C4062FEB153BD14C0A05654C630FEFE4 /* UMModuleRegistryAdapter.h */, + A81349EA8C993B86CB44D28972236524 /* UMModuleRegistryAdapter.m */, + 5C8C31C622D5C9E2D324202444C2EE59 /* UMViewManagerAdapterClassesRegistry.h */, + 1FDAE339B7B4EAE8669C929838EE87D8 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; + sourceTree = ""; + }; + 42F9DCAA038063C06E31A102C90EDA16 /* RCTNetwork */ = { + isa = PBXGroup; + children = ( + BBB0D5C2A7C79CC28B6DE54FDDD2AED9 /* RCTDataRequestHandler.h */, + 7AD15F6451DE91C26A0FBA916918F698 /* RCTDataRequestHandler.m */, + 48FF6D55B4E5998A341BDF28BC20DD9D /* RCTFileRequestHandler.h */, + E8911EE6854F117C3D9F61D562E6E66B /* RCTFileRequestHandler.m */, + 829EFF3386559FD009EE63FF426BA7C7 /* RCTHTTPRequestHandler.h */, + FFC4FF72B18B537D921C182B9AE258C8 /* RCTHTTPRequestHandler.mm */, + BC645D7FEAFBDDB3CC182386E1F7C1DD /* RCTNetInfo.h */, + 642AF918983609F8A2E09DF67928CF55 /* RCTNetInfo.m */, + 3E3948F850A1CB063386B3E7A8F82FC4 /* RCTNetworking.h */, + 9F5DA0F6A85A390976F740A64014E21A /* RCTNetworking.mm */, + 05CC4FEAF72AF6EB2EF7ABB1897CF97C /* RCTNetworkTask.h */, + BB0569EBB8856E2228CF4A097F777707 /* RCTNetworkTask.m */, + ); + name = RCTNetwork; sourceTree = ""; }; 444D3A51C52BDCF503FA7733BB2A4739 /* nanopb */ = { @@ -3740,129 +3700,96 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 45CF833A8F39D2BB943A6DD4C6C33292 /* RCTLinkingIOS */ = { + 459DDEAC8A3E38EF22369BE53053E1B3 /* Protocols */ = { isa = PBXGroup; children = ( - C15601651593526846A79C9446FF7E13 /* RCTLinkingManager.h */, - 9F0180F80AC3BFA899CBC8E90FD686D3 /* RCTLinkingManager.m */, + 291D5E4B3399B7FBF6C658E3D6B3EFF0 /* UMAppLifecycleListener.h */, + 01F8FA667020A7E45792DEEFC49F0A2D /* UMAppLifecycleService.h */, + 12EDFC33FED7F5C4559BC237114B9556 /* UMEventEmitter.h */, + DA364DC8821E6F2F3525D9A1AD78D002 /* UMEventEmitterService.h */, + 668AE27C04386475A4F88728253D308A /* UMInternalModule.h */, + AD41223977502296C80DCD16A0A28ED3 /* UMJavaScriptContextProvider.h */, + 73EFD8BA63B9A167937E339F74455143 /* UMKernelService.h */, + F4CC5D457DF57726C2D0A610CE2458E1 /* UMLogHandler.h */, + CD723597BC7E878A613B6CBC61CDB542 /* UMModuleRegistryConsumer.h */, + 47AEF13B03A35A95FFBD0419401781BC /* UMUIManager.h */, + 68D28C2718DE550E5EFCC4D6C2A317CD /* UMUtilitiesInterface.h */, ); - name = RCTLinkingIOS; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; - 46234EA28C6D5DA159787A15A5E549D0 /* UMConstantsInterface */ = { + 463861864FFBB759261E1BCE385D6935 /* Support Files */ = { isa = PBXGroup; children = ( - A6920FA9A386056FC61E93CEF347C42C /* UMConstantsInterface.h */, - 808D39F445CD03CF62DF5FDCE451479F /* Pod */, - D1F6AB5F98CB4D4A6336716386C5706F /* Support Files */, + CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */, + E6D1D60641E2AA793C28DF28387CB301 /* RNLocalize-dummy.m */, + 0EB28CDB8C69EFA983BC669827685933 /* RNLocalize-prefix.pch */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - 4A7FCE6B5E27EEBFF671362ACCF0354A /* UMFontInterface */ = { + 46B97B7A9E6F10400C1F2E6D456F2FF8 /* SafeAreaView */ = { isa = PBXGroup; children = ( - BFBBC9D7AF7B6A0429FD1E43DEA80FE0 /* UMFontManagerInterface.h */, - C6C4C455D9669E33FE36291DB8C465C3 /* UMFontProcessorInterface.h */, - CBA7F9DC966BB938A6347E1E3EFEB50B /* UMFontScalerInterface.h */, - 1A62C3C5141921106880025FD3F7C22E /* UMFontScalersManagerInterface.h */, - A3E72BA8B67442464C9AC58093147040 /* Pod */, - 255E83F51312A2902B88D53958FF7574 /* Support Files */, + D269DEE52BE9BD492980057C5570F31D /* RCTSafeAreaShadowView.h */, + FA46778D7C9968FAD1789A65BCE856C3 /* RCTSafeAreaShadowView.m */, + 0F4C6F41A6E3350AD45942B5D81157AB /* RCTSafeAreaView.h */, + 6A110EC136EFD924DC27529D5AA5BBEF /* RCTSafeAreaView.m */, + 41C8503B94E6A30E3BEFDE038A998283 /* RCTSafeAreaViewLocalData.h */, + EC71B3E59CBBE31FCF280ADCA8C78635 /* RCTSafeAreaViewLocalData.m */, + 2F99EE79C025EB9F2A9E303721C5092D /* RCTSafeAreaViewManager.h */, + E680598082C2589742298F53D35A3B38 /* RCTSafeAreaViewManager.m */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - 4ABC5B861813D4C60A079E403D4B115A /* RCTBlob */ = { + 493D0D47E7DBC9AECCEF30AA3D7B3DB3 /* Core */ = { isa = PBXGroup; children = ( - 415ADA9861FDA22955FC4BBE92B40694 /* RCTBlobManager.h */, - 4FEFC3824E885097B5EFA39D8520E9AC /* RCTBlobManager.mm */, - A8D4EF66AC3EDF64500C880A83965D6B /* RCTFileReaderModule.h */, - 71150703C438DDFB2AC1E24FB55644B0 /* RCTFileReaderModule.m */, + 71E5006FC0B6D1F91FCB06840B2029CA /* Base */, + 54360D821A4F4FB609DBE982E45456A7 /* Modules */, + D2FFB40B538C838430F364498F00361E /* Profiler */, + 7D2DC9DC724ADBEA00077C7C398C9557 /* UIUtils */, + 26422DCDA3E9A5F0135AEC10C5CCA190 /* Views */, ); - name = RCTBlob; + name = Core; sourceTree = ""; }; - 4CE529A894E40D4F9EDE6ABC45094FD7 /* Pod */ = { + 4CFD99EE74DB318C2CB320AD61D2E320 /* Pod */ = { isa = PBXGroup; children = ( - CF891208ED78494C886778C58D9DC6C6 /* LICENSE */, - B7BF936ADE2918FFE5A06A3A0FCD4730 /* README.md */, - EB94AC8E1902F67FCD9EE7D9CD27B473 /* RNScreens.podspec */, + 5F33CBB2C282BAC4429A8808AB9AA208 /* EXAppLoaderProvider.podspec */, ); name = Pod; sourceTree = ""; }; - 4E1D59A88637222D71B528A185EA6F39 /* RNLocalize */ = { + 4DA1E107322A698257660425245CCBBA /* Pod */ = { isa = PBXGroup; children = ( - 3AECD67ABA483DBB6206FCA44CEC7F51 /* RNLocalize.h */, - 6644F7FB5AC5C877BE5D7918BA93966F /* RNLocalize.m */, - A1D71A27ADA0FF52ACF4DA9584A598F9 /* Pod */, - 2EEF35787E49FE5DEF76817B16E1BB0A /* Support Files */, + F1322D928C8D0BAF91B3BD4E388F637F /* LICENSE */, + 6F9D2C2C8648E85CB2D32F25F6BB0195 /* react-native-orientation-locker.podspec */, + 21ACB0CB855CA8D0ADB6C4F5E8DBE9CD /* README.md */, ); - name = RNLocalize; - path = "../../node_modules/react-native-localize"; + name = Pod; sourceTree = ""; }; - 4F2E84B99777E6ECB798ACFF2BB1E9EE /* UMBarCodeScannerInterface */ = { + 4F24E462D72846485459502D84C08ABB /* Pod */ = { isa = PBXGroup; children = ( - 5D0E5D23D1E2458E95A1E6E31786EB4F /* UMBarCodeScannerInterface.h */, - 4E70CBA0873EDB5B5ACD5D3EEAC94C57 /* UMBarCodeScannerProviderInterface.h */, - 5D99C73709FA431FDFD4FFAF76A44B28 /* Pod */, - 3D92FD0E93FD01FC28B2CBEEB1186223 /* Support Files */, - ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; - sourceTree = ""; - }; - 4F46A62B1E10FC0D53E8EDD77B31637D /* TextInput */ = { - isa = PBXGroup; - children = ( - CC9D4EA1AE24E955EEB6502CC78A8EE4 /* RCTBackedTextInputDelegate.h */, - B006566C7333FFC8439F89B678262E22 /* RCTBackedTextInputDelegateAdapter.h */, - 185F7B6A44208D005359D8A00878E2F2 /* RCTBackedTextInputDelegateAdapter.m */, - EF287B1DF0BFE77BB74DE7822A382754 /* RCTBackedTextInputViewProtocol.h */, - A0D0CD1AD2DCB1A2D5FA1074163610D0 /* RCTBaseTextInputShadowView.h */, - 528FD7D8D0683E152C34D14023037CC3 /* RCTBaseTextInputShadowView.m */, - 5AA19343AAC80303C5A5B8F29E49BB8C /* RCTBaseTextInputView.h */, - BC2633FBE1395277C7E3437B63805532 /* RCTBaseTextInputView.m */, - 9F9538D983C239EF5989C620884A3BB3 /* RCTBaseTextInputViewManager.h */, - 5ACA587B793D7FC4BC535A8B27C1CEA2 /* RCTBaseTextInputViewManager.m */, - 770FFF06630E6F7BC9B1F820B245202C /* RCTInputAccessoryShadowView.h */, - 238849F41599ED370F2286D67EC3326B /* RCTInputAccessoryShadowView.m */, - E7F0C3B5282F1855478FA852A1AA3CD4 /* RCTInputAccessoryView.h */, - FA6CF7D3CE1368348C63F925126D30D2 /* RCTInputAccessoryView.m */, - DA82AB0FFC03D89563D5874D4D1FC6C2 /* RCTInputAccessoryViewContent.h */, - B4E36D4B61E559A33E94A83389D0C24A /* RCTInputAccessoryViewContent.m */, - A5464F33B76D78F15BE81D94FFE8BEBB /* RCTInputAccessoryViewManager.h */, - 75F4782203BE073C5446F4EAF6B76DC7 /* RCTInputAccessoryViewManager.m */, - 34EB4660DCD9E5AA269B837D869D4633 /* RCTTextSelection.h */, - 7AC03356C1DE8C215C87A79FEA9B211E /* RCTTextSelection.m */, - E26FDB96E909EAA73D005CECA51AC46D /* Multiline */, - 5DEE47B18286BDBEEEF0F76EFE69915A /* Singleline */, + 36F1618203FA7946D46848EC7809DFDA /* UMFontInterface.podspec */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = Pod; sourceTree = ""; }; - 4F602C3174CE853A637FEA1C4EFA91EE /* UMSensorsInterface */ = { + 4F31834BD7C7BF3CD094570D77F21CDB /* Pod */ = { isa = PBXGroup; children = ( - 1DC29CF604E07C4121AF8449730F6480 /* UMAccelerometerInterface.h */, - 598F4C9DE4B0BEB552B2B52903AF9FB4 /* UMBarometerInterface.h */, - B556AED1FCFADE5C0A7E6B4CA858BB8D /* UMDeviceMotionInterface.h */, - 93B0DF280628A39BA2607CDBF0F0D6BC /* UMGyroscopeInterface.h */, - 22411610F0F5F2E64FDD2EC056F33C5C /* UMMagnetometerInterface.h */, - A5727A6BF365F7E4CBA8096AFA935679 /* UMMagnetometerUncalibratedInterface.h */, - ABA427AB7EF7CE7EE55AED4996819AF3 /* Pod */, - 532B9EF4FED4B6020EFF2E2BA7FE95C8 /* Support Files */, + 084AAC9E013FD43A6105F4A7AA686C40 /* EXFileSystem.podspec */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = Pod; sourceTree = ""; }; 4FC37C41F11924A2602F786314152701 /* Pods */ = { @@ -3894,167 +3821,338 @@ name = Pods; sourceTree = ""; }; - 50CF126DE70B20C7EAF7A2E979BAB349 /* Support Files */ = { - isa = PBXGroup; - children = ( - CF61A8AF93D3A2374C87515F8890F4C7 /* EXPermissions.xcconfig */, - F85C5DFD030A4E980453A833E771B62E /* EXPermissions-dummy.m */, - C7731BE335C88C1B2DAECAA61F7047F0 /* EXPermissions-prefix.pch */, + 50FCEB63D541A827419E20E05EFA6AF5 /* Products */ = { + isa = PBXGroup; + children = ( + 60584D3AA8192A7EB3622726C89CAB29 /* libDoubleConversion.a */, + CEF911BCB17DBFF64FEB78BD39119AEE /* libEXAppLoaderProvider.a */, + C2E6BCF8D456455BD75D2FD735C2B056 /* libEXConstants.a */, + 8FC09F8F473E743C692CF37481AD28EE /* libEXFileSystem.a */, + BDCA46324A975C7FC1D9310BFB70F8FA /* libEXHaptics.a */, + 7D1572D0A81CB920AC0A5BEBE601742B /* libEXPermissions.a */, + 48EE6575C1CFEA2AEDE0D19DF8D79F0E /* libEXWebBrowser.a */, + 9DDAE6A5A841F6A1CBCAC6B0A54AC509 /* libFirebaseCore.a */, + B145628F76E71EBC32DE310DF90FEA08 /* libFirebaseInstanceID.a */, + 650F1F89B44BDADA600F9DD8034D21E5 /* libFolly.a */, + C4D3D2C6049772A96AA81EDCFF2EA170 /* libglog.a */, + 97CD684EF2CE8DF8291020F2DE149B00 /* libGoogleToolboxForMac.a */, + 24172F1F2D1120AE004421165710D403 /* libGoogleUtilities.a */, + F4C480E1EF4112F2B28FCBE872E65262 /* libGTMSessionFetcher.a */, + 38B5379326830579CE5929312968EED4 /* libnanopb.a */, + 63A2C7F825019C2F37A3D5B672CCC93A /* libPods-RocketChatRN.a */, + 3DEEC8163F843FED9B19708AD5E1533B /* libPods-ShareRocketChatRN.a */, + D3049A18CD3AC667DC38BCFEBD4E3A6C /* libProtobuf.a */, + 96CBF7B1D6A377DE0ADE741A58B3E116 /* libQBImagePickerController.a */, + EA87488CE220919948AC09172D36AE5A /* libReact.a */, + CB2F572C6E5E8BE17CBF38A2A93AAC07 /* libreact-native-document-picker.a */, + 7EBB09FA3648B85F3F0BC62F81786778 /* libreact-native-orientation-locker.a */, + 22B1D6FD8E5BFE1294F9BF136FD98AE5 /* libreact-native-realm-path.a */, + 8B3C7D3B1BE1479AAEE455CF7FCFB931 /* libreact-native-splash-screen.a */, + 40AAD9902F8CFC8829E817508F6DC261 /* libreact-native-webview.a */, + BAE447C41D111839BA0F623B729945BD /* libRNDeviceInfo.a */, + 7FE734CD6E27A147E8CD7BF2385CAB68 /* libRNImageCropPicker.a */, + 4C2E17571810B87B9073CBD85639CAF4 /* libRNLocalize.a */, + 35D64FD4EA6D92431EB73684DC2C82E3 /* libRNScreens.a */, + 9C5AA37519C8C90BEE2FA16240662171 /* libRSKImageCropper.a */, + 7419615BE9C77060447B9498E8C5BC09 /* libUMCore.a */, + 004FA892142BC5EF9C7C3646A89CA8A8 /* libUMReactNativeAdapter.a */, + 6D5C418B5EEC894AA078554767CE3DDC /* libyoga.a */, + 92EFFC5DCEABAA1F19A0EA043792A75A /* QBImagePicker.bundle */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; + name = Products; sourceTree = ""; }; - 511BA62FCC9EDF8D661BA6D55A3D1F1F /* Support Files */ = { + 510D958F9391BACFEE5CA1BCA6200204 /* EXConstants */ = { isa = PBXGroup; children = ( - 88E55F23E75BE70319158852ED65D130 /* react-native-webview.xcconfig */, - ACB85CC0E2E5117E5F45DDD1EDC438EE /* react-native-webview-dummy.m */, - 9C69131A88EAA9E00535742EC39AE853 /* react-native-webview-prefix.pch */, + F0F2FAE6500D04ED6F1312A01D565447 /* EXConstants.h */, + C541176C1A2500C5AF3259B71245AD3C /* EXConstants.m */, + 7EA2FB1ED4183EC2BD2FE34C37E15B07 /* EXConstantsService.h */, + 4191361051666A0D9CF54E7E9F6E10B5 /* EXConstantsService.m */, + 25A95FAE53C8AF8650D41F45973F39F7 /* Pod */, + 9DE3F19B7CA8739BC1A77B6CA9ED5C1D /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - 51672481585D0C44909F7B7DE2361C20 /* SurfaceHostingView */ = { + 52C184D1199C93E85BBE09F061E87670 /* react-native-document-picker */ = { isa = PBXGroup; children = ( - 5FA27A84A40558A0364A661B5B09A1D2 /* RCTSurfaceHostingProxyRootView.h */, - E442859B890D450069F6B81FBAF4827D /* RCTSurfaceHostingProxyRootView.mm */, - 19F365D90299F60D2B38B6CAF1CBBDE3 /* RCTSurfaceHostingView.h */, - ACA73ABA78FA4021F487ADFB803E8F32 /* RCTSurfaceHostingView.mm */, - 099A1BF6920C923F08C1958E57EA30B5 /* RCTSurfaceSizeMeasureMode.h */, - A58C41E34037AC6BE5AD00AFF89E09C7 /* RCTSurfaceSizeMeasureMode.mm */, + 8AC20F93FB89F173A1218882C6857514 /* RNDocumentPicker.h */, + C3788D21BBB311D01466980579177A4C /* RNDocumentPicker.m */, + 9642B91576DBB897576C4375540C3258 /* Pod */, + 67E07740912F5F8C93089C9D832084C3 /* Support Files */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; - 532B9EF4FED4B6020EFF2E2BA7FE95C8 /* Support Files */ = { + 53152682CFA3EA8D618198CF6FEB91B7 /* EXHaptics */ = { isa = PBXGroup; children = ( - D2C78BA1420B3F9F817AAF29DB5778B8 /* UMSensorsInterface.xcconfig */, + B521D5919FC19FAF174C6CA9AD9EEA5E /* EXHapticsModule.h */, + EF4BDF5F4EADF81300A71703E6CE8DC6 /* EXHapticsModule.m */, + CD05FDDA92FE9A9853FD157BF128E67A /* Pod */, + 553C32DF22136F0F8567289CAF4C4B80 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; sourceTree = ""; }; - 5AEF3ADCEFFED332FBD4A8B103D40EF0 /* ISASwizzler */ = { + 53781992D22A710EA24D8DAB88AFD578 /* Support Files */ = { isa = PBXGroup; children = ( - 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */, - 1F9DA817DD136F20858650D09F53CFAE /* GULObjectSwizzler.m */, - 1D2F4AA1E8F90B87245842734E56023D /* GULSwizzledObject.h */, - 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */, + FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.xcconfig */, ); - name = ISASwizzler; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 5D99C73709FA431FDFD4FFAF76A44B28 /* Pod */ = { + 539CF61882E45282259F6672A57E6A72 /* Pod */ = { isa = PBXGroup; children = ( - C884CE467972C5FCB2265112AF45C521 /* UMBarCodeScannerInterface.podspec */, + 626BFA717D2D14B01FA5E1C99B9403F8 /* UMSensorsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 5DD108AC52107721173B6AEDC9AF408B /* Pod */ = { - isa = PBXGroup; - children = ( - DE9234B41C0E1066D31A40BF9DB8A10A /* UMReactNativeAdapter.podspec */, + 54360D821A4F4FB609DBE982E45456A7 /* Modules */ = { + isa = PBXGroup; + children = ( + DAA030E3F4936AA5994DE4196D91D233 /* RCTAccessibilityManager.h */, + 39823D0CADDD07BE24C0F0AD6B419033 /* RCTAccessibilityManager.m */, + AC24AF82F582FD7B3EB82A723EE2308F /* RCTAlertManager.h */, + 9FCE48EE4B07419B0A690C46027AD58E /* RCTAlertManager.m */, + 170A9AA051DF6569384D3575AAE94D52 /* RCTAppState.h */, + D5FB42623D8F6D266D15D896AF6F1D1F /* RCTAppState.m */, + 6A21E7816440B010D5C26FCE956D83FD /* RCTAsyncLocalStorage.h */, + EA2854C43CBDF62983B30CB07AFFDA65 /* RCTAsyncLocalStorage.m */, + 9F43317AE294E292CACE855324E32017 /* RCTClipboard.h */, + 10C70F490652DB309BA6145EB0AE9B83 /* RCTClipboard.m */, + A33F32B7C513C82889B80F3ABE64053E /* RCTDeviceInfo.h */, + 8356753F26FEF1EE58E015A2B46FF942 /* RCTDeviceInfo.m */, + C7A9707CAFF01395793578FF8342D703 /* RCTDevSettings.h */, + B61C97003ED9A3DB99C2880A1A608BEE /* RCTDevSettings.mm */, + F4AA899FDC53A68D4D167D763E3098FE /* RCTEventEmitter.h */, + 76433928D4430C19868E79A86734E323 /* RCTEventEmitter.m */, + 8E26A342169EB482773E67D7D32F9788 /* RCTExceptionsManager.h */, + A1628DC0F6677F7DB622A59617EC21B3 /* RCTExceptionsManager.m */, + 3196A703CD641D488C5EA5E5CF995DF4 /* RCTI18nManager.h */, + 32BA152A12F5CB214EFDB52F9BCDA3D9 /* RCTI18nManager.m */, + C248E9ADAAB7CDD4E129BF7D744F1490 /* RCTI18nUtil.h */, + C38D77A4BC32DAC643556E89EC139AD6 /* RCTI18nUtil.m */, + ABFF59E51B52F0510F338891BF4F34DF /* RCTKeyboardObserver.h */, + B2809DCFA8DECB1CFFE618915EDA5519 /* RCTKeyboardObserver.m */, + 22462B515DBBEBBC284F1C23FAEC8F8F /* RCTLayoutAnimation.h */, + B920ADF161F0FEEFF91CC378F4C19347 /* RCTLayoutAnimation.m */, + B6BB0B5F58B86884A5F6163AEA399119 /* RCTLayoutAnimationGroup.h */, + 75717BEF0A669997409833CF33E496CA /* RCTLayoutAnimationGroup.m */, + 612E527E6C2BC5806B7E9FA73C73858B /* RCTRedBox.h */, + 4F6F20E40599421E57D12627A5538ED4 /* RCTRedBox.m */, + D554CD6CF79A41EF70F277E7D543A6DC /* RCTRedBoxExtraDataViewController.h */, + C083E7788F15C4F76DADA48426983C65 /* RCTRedBoxExtraDataViewController.m */, + FE183C24C287338F5BAF7AD026D94B60 /* RCTSourceCode.h */, + 1C4785B1DDB61C47FF2EC81C8649FAA5 /* RCTSourceCode.m */, + 20CC13DF451E62D3958DD5354B20BB3D /* RCTStatusBarManager.h */, + 0561F4FA9F99CA4E3EA734D0114AF789 /* RCTStatusBarManager.m */, + 53A029829CB0C1059313046ABCF15D59 /* RCTTiming.h */, + 48332F5C5CC746B2E69E6468BDDFEC98 /* RCTTiming.m */, + 91A00B0D8CE236601318F4CA2FA44005 /* RCTUIManager.h */, + C9967B2B3C2D49FEFE3D7B209540C2C5 /* RCTUIManager.m */, + D62FDC62FCC67CE4C4C92219AD9A31DB /* RCTUIManagerObserverCoordinator.h */, + E2130431BC79C2529F9B7D997EA45C78 /* RCTUIManagerObserverCoordinator.mm */, + 11E3D039DD6885FED8CB12CF16627CCC /* RCTUIManagerUtils.h */, + A4779711C3A43BD673887C1240FFF225 /* RCTUIManagerUtils.m */, ); - name = Pod; + name = Modules; + path = React/Modules; sourceTree = ""; }; - 5DEE47B18286BDBEEEF0F76EFE69915A /* Singleline */ = { + 553C32DF22136F0F8567289CAF4C4B80 /* Support Files */ = { isa = PBXGroup; children = ( - FB125C79DE19812A9295C37C5F548FCA /* RCTSinglelineTextInputView.h */, - DD8101394AF8C7F3C6A6F826E26E32AB /* RCTSinglelineTextInputView.m */, - 080EA52506581465A65900CFDCBDDCAA /* RCTSinglelineTextInputViewManager.h */, - 02F81963341D0821D79BF641D3EF7351 /* RCTSinglelineTextInputViewManager.m */, - D9A94A18BF86E42031DE9AB8CD92F56E /* RCTUITextField.h */, - 770C624527C08FEEFE631E1E1C1D7456 /* RCTUITextField.m */, + 465361999C9275A0EB0D18E87ACF63BA /* EXHaptics.xcconfig */, + 73445129AC7FB86EE46F20FB12E729DF /* EXHaptics-dummy.m */, + 8832B7683A7BCE3E7412EBDE088EE906 /* EXHaptics-prefix.pch */, ); - name = Singleline; - path = Singleline; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - 6063987EB40204B4B3CF5FB8995D3747 /* Support Files */ = { + 591C07F0849F9751BD563022B3E9B00D /* Pod */ = { isa = PBXGroup; children = ( - D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */, - 1DB0E05E584EBB1BD10BFA278E997CCD /* GoogleUtilities-dummy.m */, - A1FF690A9214A1760165C26D7E1E7966 /* GoogleUtilities-prefix.pch */, + 34B9CEF05B764B94F7CFDA5EB025FC44 /* yoga.podspec */, ); - name = "Support Files"; - path = "../Target Support Files/GoogleUtilities"; + name = Pod; sourceTree = ""; }; - 641A583F5B6C8CDDF7A7C7DD4F43439C /* Support Files */ = { + 596850BDA09F8EA404BEA8700C9C8F60 /* Support Files */ = { isa = PBXGroup; children = ( - 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */, - 7ECE1CF94802F266870C32A042C6A6AE /* FirebaseCore-dummy.m */, + CD43BC845F3312E0B19B9A512B7C1D8A /* UMFaceDetectorInterface.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - 64D5ADFE66A831C57B21155A1D450359 /* UserDefaults */ = { + 5AEF3ADCEFFED332FBD4A8B103D40EF0 /* ISASwizzler */ = { isa = PBXGroup; children = ( - 4A392B2042022C20AA6278A6488F3450 /* GULUserDefaults.h */, - 7C9F66BD2F5994688215F7C214C82892 /* GULUserDefaults.m */, + 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */, + 1F9DA817DD136F20858650D09F53CFAE /* GULObjectSwizzler.m */, + 1D2F4AA1E8F90B87245842734E56023D /* GULSwizzledObject.h */, + 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */, ); - name = UserDefaults; + name = ISASwizzler; sourceTree = ""; }; - 657537CBE25165A8289A608EF1477614 /* RCTAnimation */ = { + 5D2800FFFE136D15E2E8893A3BD4F914 /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 0BBE5A26CAF56CAC91CDDE86D4EAE703 /* RCTAnimationUtils.h */, - 5ACE61F08BAECB8D855C73D8A8CE5A64 /* RCTAnimationUtils.m */, - B1E1F16C41CEECD906C10C53E0B3B982 /* RCTNativeAnimatedModule.h */, - 62C0E0D06B1FBD4CDD835AE4E33CE57A /* RCTNativeAnimatedModule.m */, - 5A964F6CF330313BFE4BAA45800B4261 /* RCTNativeAnimatedNodesManager.h */, - 9BEF5249A93D7B45781556D1E82B486A /* RCTNativeAnimatedNodesManager.m */, - 7A211AD11EFE186062AE15ABA50C893E /* Drivers */, - 27B207A65DD76E2B2C53BF9685AA682F /* Nodes */, + 7392E40D706A1072611B4CFFF50E1D2E /* UMBridgeModule.h */, + 967221DF8C8593004E75CEEF95AEFDBC /* Pod */, + 1931CBCD0012949C6489C3390BE2C7CD /* Services */, + D4B8FE515FAFB1AA71B9D18311251DAA /* Support Files */, + 4253570E7EC86F0CFD83388C02DBE5D4 /* UMModuleRegistryAdapter */, + DB049F46A0736A0FE7E5DEAFB9BB15EE /* UMNativeModulesProxy */, + CB2C372FB027ECE8D944BB55DB8F82EB /* UMViewManagerAdapter */, ); - name = RCTAnimation; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - 66BFBA5DEDF91FFEEF3A3E5E3612311A /* UIUtils */ = { - isa = PBXGroup; - children = ( - B25341C06A84A762576AD6158FDFD502 /* RCTUIUtils.h */, - FC59088517590C7B81E973C0FAB28B6B /* RCTUIUtils.m */, + 5D960600974426BAAB9E2D3E2F802DB8 /* Development Pods */ = { + isa = PBXGroup; + children = ( + 861F27824E66E148533FB638DD7CD54A /* EXAppLoaderProvider */, + 510D958F9391BACFEE5CA1BCA6200204 /* EXConstants */, + F6617680FC01FF767AB5A2C324B4B882 /* EXFileSystem */, + 53152682CFA3EA8D618198CF6FEB91B7 /* EXHaptics */, + 156F2031BD682F1D8516960ED6F43C86 /* EXPermissions */, + 1749EA678928E5272262EC889C6C4A5D /* EXWebBrowser */, + 098178F3362E7B21FA308EED1FDD441F /* React */, + 52C184D1199C93E85BBE09F061E87670 /* react-native-document-picker */, + 2FC70A117921446789CF74F482DDCF0B /* react-native-orientation-locker */, + C0E6D6C2C62D91205AF43F6F4E8BB0DA /* react-native-realm-path */, + 60E3357A51899E8E483BE0E88BF71836 /* react-native-splash-screen */, + F01C339A2AC1EFE3C66C04D6BCFA2FF0 /* react-native-webview */, + 87CAAD6630443C4AB48A67133895E56A /* RNDeviceInfo */, + E9A4AA61CA9CED8388027AF5F72DA401 /* RNImageCropPicker */, + 2AACB9432CC9053280D2FE63874A054F /* RNLocalize */, + 93677593B3138D9BF03E6004DDB5AC04 /* RNScreens */, + 718E8CC121346575775637004EB01B67 /* UMBarCodeScannerInterface */, + 13F1A34C7197750A5941061AD6B2EB70 /* UMCameraInterface */, + 0B18FD8FF99FDC490F20C6C5F91113E2 /* UMConstantsInterface */, + 7760BFEFE689C497A372D9C2DC06FDA2 /* UMCore */, + FCAEBA250836CDEE970A451D990A7DE0 /* UMFaceDetectorInterface */, + 38BC477C45CA05239B7A40870306EEDA /* UMFileSystemInterface */, + A5628DF172DE58FBA3F68C4A45D0E1E8 /* UMFontInterface */, + 0BBD05D4AF2024F9B2FFDEDEA7C816B1 /* UMImageLoaderInterface */, + 162034FB2417C91365D01E931B0F1931 /* UMPermissionsInterface */, + 5D2800FFFE136D15E2E8893A3BD4F914 /* UMReactNativeAdapter */, + EBD8152D142832DB584AEDFB57C2806E /* UMSensorsInterface */, + D4A13B0CAEE1DB1F010BC4B287E8C656 /* UMTaskManagerInterface */, + 7721A1AB4BC2125A272CA4A14C433FFC /* yoga */, ); - name = UIUtils; - path = React/UIUtils; + name = "Development Pods"; sourceTree = ""; }; - 66C33E83CDFDED9149E2FC6F5DE09AA6 /* Support Files */ = { + 5F631F306FEC17890D0D0ADAB1E286FC /* Support Files */ = { isa = PBXGroup; children = ( - D151B83252EE13207BB64977A1F09F2E /* react-native-document-picker.xcconfig */, - 7093BA321ABCDCB1B75EC0B164ED3A33 /* react-native-document-picker-dummy.m */, - D68D654F93DE95EF2FA694916FE8860E /* react-native-document-picker-prefix.pch */, + 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - 66E2C8263FDB996ABE809ECE07F5A6B9 /* Support Files */ = { + 6063987EB40204B4B3CF5FB8995D3747 /* Support Files */ = { isa = PBXGroup; children = ( - BF62B3A6BFC54A8AD37C7035DF1535D0 /* EXConstants.xcconfig */, - C185F7E26C81FBBC5CC46737F5325CE6 /* EXConstants-dummy.m */, - 0318DD9026D8C98D54B39B6E33D96F7C /* EXConstants-prefix.pch */, + D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */, + 1DB0E05E584EBB1BD10BFA278E997CCD /* GoogleUtilities-dummy.m */, + A1FF690A9214A1760165C26D7E1E7966 /* GoogleUtilities-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + path = "../Target Support Files/GoogleUtilities"; + sourceTree = ""; + }; + 60E3357A51899E8E483BE0E88BF71836 /* react-native-splash-screen */ = { + isa = PBXGroup; + children = ( + C9761CD65CD28E48AD431D2CADE56D77 /* RNSplashScreen.h */, + 127F912C8B415191F86EC0E2753DA599 /* RNSplashScreen.m */, + 41E09B3A44547CD4E53D37EBE2D67DC0 /* Pod */, + 7B0BC7937E079209C3B0BE3CE96D1A85 /* Support Files */, + ); + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; + sourceTree = ""; + }; + 61732052366C01AE2AD7D0405C4D9820 /* Pod */ = { + isa = PBXGroup; + children = ( + 76C577F39BDA1D3D359845B58D76A5C9 /* UMImageLoaderInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 62702C2AD6D5481E806F4CCCE5BE1DE1 /* Support Files */ = { + isa = PBXGroup; + children = ( + 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + sourceTree = ""; + }; + 641A583F5B6C8CDDF7A7C7DD4F43439C /* Support Files */ = { + isa = PBXGroup; + children = ( + 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */, + 7ECE1CF94802F266870C32A042C6A6AE /* FirebaseCore-dummy.m */, + ); + name = "Support Files"; + path = "../Target Support Files/FirebaseCore"; + sourceTree = ""; + }; + 64D5ADFE66A831C57B21155A1D450359 /* UserDefaults */ = { + isa = PBXGroup; + children = ( + 4A392B2042022C20AA6278A6488F3450 /* GULUserDefaults.h */, + 7C9F66BD2F5994688215F7C214C82892 /* GULUserDefaults.m */, + ); + name = UserDefaults; + sourceTree = ""; + }; + 65F7A9589DDF3FF7AAA46696E23E681D /* fishhook */ = { + isa = PBXGroup; + children = ( + 739A7736657BD48D2E30CEF963896A54 /* fishhook.c */, + 49159153A4FDE38C500578FA94C253BE /* fishhook.h */, + ); + name = fishhook; + sourceTree = ""; + }; + 67E07740912F5F8C93089C9D832084C3 /* Support Files */ = { + isa = PBXGroup; + children = ( + 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.xcconfig */, + E928C14C9CA406B961ECB44E8B747C57 /* react-native-document-picker-dummy.m */, + B1C1A6678EFAC8129B79CE2AA56E1E76 /* react-native-document-picker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + sourceTree = ""; + }; + 688DC0AF21AA3A999DBB1BF4C9AD9B6A /* Pod */ = { + isa = PBXGroup; + children = ( + 03582ABF8F2C49917A06DFB77732C395 /* UMFileSystemInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 695F14F5C911ACECC1375EA56E53BEA8 /* Support Files */ = { @@ -4068,12 +4166,37 @@ path = "../Target Support Files/GTMSessionFetcher"; sourceTree = ""; }; - 6A5EE0DE1C0151B49593325BC9F8A81E /* Pod */ = { + 6A9659952CFC20DAF6368F779FD25706 /* Surface */ = { isa = PBXGroup; children = ( - 8B020FE134CBFD0FC8C43F7EAE5A662D /* EXWebBrowser.podspec */, + 9EC25853E75C57E1523E78AB5BCE00A2 /* RCTSurface.h */, + 0BB45AB28FE66209EECDD5939F6CFD78 /* RCTSurface.mm */, + C0DE0022AD1DC91E870FCC61A28189BE /* RCTSurfaceDelegate.h */, + 5419204EE00E59FC874A55C46F153D6D /* RCTSurfaceRootShadowView.h */, + 17FB9BC182E05A836B45311886723FF1 /* RCTSurfaceRootShadowView.m */, + 6F82F325D530BDDAF3B5EEFCFB0411D9 /* RCTSurfaceRootShadowViewDelegate.h */, + 2039655505827A180E799523D0C59074 /* RCTSurfaceRootView.h */, + D5BA6F8CDE5B0E880EAB4A3D0521D6CC /* RCTSurfaceRootView.mm */, + A0AB297E98B6C8A6C65F0DF2D636893E /* RCTSurfaceStage.h */, + 1E667B3C96D4F999D2410D9B2AB9CCAF /* RCTSurfaceStage.m */, + B35C75E66CAE756935001764673693A0 /* RCTSurfaceView.h */, + 66D0F358A416D7411CBE30E3A6E5571F /* RCTSurfaceView.mm */, + 7DAD5E4B525E5A44ED572B37F5F1C820 /* RCTSurfaceView+Internal.h */, + FF95C3FFA2A75EC3C1A9BBCC3DACE1A5 /* SurfaceHostingView */, ); - name = Pod; + name = Surface; + path = Surface; + sourceTree = ""; + }; + 6FD0E2C4BBD04D03E984E8CAA283611B /* Support Files */ = { + isa = PBXGroup; + children = ( + 7C9619DE9593734D5AC0F94D7FDF851F /* react-native-orientation-locker.xcconfig */, + 45678E0D230C8C88D1244A897B54EFAE /* react-native-orientation-locker-dummy.m */, + D5CF3F1EF50886879A3A88AFF4009484 /* react-native-orientation-locker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; 70762B0582BC2A467644A69BD840DA98 /* Support Files */ = { @@ -4087,6 +4210,18 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; + 718E8CC121346575775637004EB01B67 /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + 8AD54F5D93130676A1EBDEC6F1D91059 /* UMBarCodeScannerInterface.h */, + 755EBB24F0F2AF4ABC96112910076E99 /* UMBarCodeScannerProviderInterface.h */, + 95A1AAB935E3B6F3C935FF16BFE4C582 /* Pod */, + 3DD57CD372B61DAA93718DAD46191979 /* Support Files */, + ); + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + sourceTree = ""; + }; 71B0BFB486A87D59EE40E41812FEF850 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4096,18 +4231,130 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 73592DB75DAD4520CF78F1EF0EC70056 /* EXConstants */ = { + 71E5006FC0B6D1F91FCB06840B2029CA /* Base */ = { + isa = PBXGroup; + children = ( + 5E7EF2A91C8C320D932C4F7C42E6CC7E /* RCTAssert.h */, + FC1C996686A1F90C85CD90B283C45718 /* RCTAssert.m */, + 21DC604AEE66B5EE0E5BD031F2C959B8 /* RCTBridge.h */, + 3B778136501A6230F2FF88C52F56DD8D /* RCTBridge.m */, + EAEB8B7D74C586229A49D42A0E320D19 /* RCTBridge+Private.h */, + 49CA5986950067CEA5A6219E63D41349 /* RCTBridgeDelegate.h */, + 3A661AD17FFBAF7F488FF7A504646504 /* RCTBridgeMethod.h */, + 06EC3E9E278989CB18DB212AFA60A879 /* RCTBridgeModule.h */, + 11A15A252F18D6812482C6F38982085D /* RCTBundleURLProvider.h */, + B97D6B3E6BE99827CE1C25FCB858E83C /* RCTBundleURLProvider.m */, + AA949BD556386D8F86C066563832B363 /* RCTConvert.h */, + 5CE3172E3F8B84D856023FF63BC204B7 /* RCTConvert.m */, + 4E562CAB1F4E2736432E19B7B6E87F87 /* RCTCxxConvert.h */, + 2874BC72566B368977EAC98634FDB1DC /* RCTCxxConvert.m */, + 0695A3F3BB62B830B2659E8E4A8F5AD1 /* RCTDefines.h */, + CB40424474E4450C43F1D567643247BF /* RCTDisplayLink.h */, + 838CE0A524A9BFE592B14C1114CEBC4A /* RCTDisplayLink.m */, + 8861A2E4A89ADE152A17D576BFDD7658 /* RCTErrorCustomizer.h */, + D4C9853A162E110003E63A2C77CDF6DA /* RCTErrorInfo.h */, + ECEC42AABDB60647DFC254D0D36C4840 /* RCTErrorInfo.m */, + FF989EAE5950A3B7029120BF819FC3D0 /* RCTEventDispatcher.h */, + C6D6727FB427F2F11F0E655687F52C70 /* RCTEventDispatcher.m */, + E81397F2569E875C452758A4E7315E13 /* RCTFrameUpdate.h */, + 1C114DDAD1165D430FB0128DECA1DD6C /* RCTFrameUpdate.m */, + 1E24E3899E9008960CF08C5FF92E9DA0 /* RCTImageSource.h */, + 44CC9C6744E46E695B59227BC3EBA162 /* RCTImageSource.m */, + 2B83F8FCB805DB9022EA00C30FB56B14 /* RCTInvalidating.h */, + E24FCCDAE287E29E82358408CA3C2D37 /* RCTJavaScriptExecutor.h */, + 432064AEBC8B44129D819261DB9BB286 /* RCTJavaScriptLoader.h */, + C67383D0AF70F2E2A7BB47E5A88BE66C /* RCTJavaScriptLoader.mm */, + A3A54BF0C1F02B22417B0FF9E6CB5402 /* RCTJSStackFrame.h */, + 612E87842C8211908C4495C9188EE21D /* RCTJSStackFrame.m */, + 51E708DA0A9C14F35DD05A9DCCC21217 /* RCTKeyCommands.h */, + 71BD25DC2A473B72A2B6D5B498555F86 /* RCTKeyCommands.m */, + 5E5C57C3F09EA49FB14D2E70C1AB3C41 /* RCTLog.h */, + 7747133CB90512689C8EA90EE1341B77 /* RCTLog.mm */, + 9EDC90945743756D56B7EDEF76F71020 /* RCTManagedPointer.h */, + EC7A2943F3A4FE81ABCE3C9BA79596DB /* RCTManagedPointer.mm */, + 81229E7BA982B90815E3B704711C1683 /* RCTModuleData.h */, + CFC198466623951BAB94A47122750183 /* RCTModuleData.mm */, + E71BE6475BF9C92E753E8D5D991332C7 /* RCTModuleMethod.h */, + F4ED9DFA4844C96F7BC6E6BD607C3C16 /* RCTModuleMethod.mm */, + 31D92F756446ACCF493B74AC39028F5C /* RCTMultipartDataTask.h */, + 041D321E945275712137D8AAD409F514 /* RCTMultipartDataTask.m */, + BCFA168B7A3D1BAB291F58C67DD31281 /* RCTMultipartStreamReader.h */, + B51A1C84A136169FA8964A1B7DD5FA95 /* RCTMultipartStreamReader.m */, + CCEE4F7E63FB943730904F4833447B5D /* RCTNullability.h */, + 038A2011AC8677988781CBA4F80BCDEA /* RCTParserUtils.h */, + A64F83D84FBE9EC4A8E8556A498CF948 /* RCTParserUtils.m */, + 2D0691D0AB3567DD03FB1BD831456F56 /* RCTPerformanceLogger.h */, + 114DA39D192F75C48D0BCFDE068BB5F1 /* RCTPerformanceLogger.m */, + 5750F3E6A2AA50C6FF6AA2DD3170DB67 /* RCTPlatform.h */, + B6E5B0E6C559A02790CEDF635455BAC6 /* RCTPlatform.m */, + A5FAEDFB4A250C3244763B36AA489C90 /* RCTReloadCommand.h */, + 2A48F5A061224C167FB239B2E1C612B6 /* RCTReloadCommand.m */, + 32FDC3D31CB29B257DC3BE2114033AF1 /* RCTRootContentView.h */, + 8AC1ECCEBE98EC21E41B286C7D87BFE5 /* RCTRootContentView.m */, + 8C3DEED89DFCC68C97F4E5B0318BB31E /* RCTRootView.h */, + 028687FDDB3162866BB092E57CEE3113 /* RCTRootView.m */, + 970C19976279473D3339CEF84E4F1976 /* RCTRootViewDelegate.h */, + 7EC62407C213D641C084B8982037FD72 /* RCTRootViewInternal.h */, + D944AF06DC39B934D33D00CA4330AA9B /* RCTTouchEvent.h */, + 6E39E7D7708C363FA17DE810515F8A00 /* RCTTouchEvent.m */, + 56CC963AEEF20D3D02D0A547B7C8275E /* RCTTouchHandler.h */, + 9E8DBE5F9A20BE2D3FD830A7EE2DE66E /* RCTTouchHandler.m */, + BCFB483958DAE4EDD2E7B41B8DEA8156 /* RCTURLRequestDelegate.h */, + 11AE43F67658221783C00F77B5A05FCC /* RCTURLRequestHandler.h */, + 936F3813673F74017A7D3974D70CFFEC /* RCTUtils.h */, + DD54DDEA8CBF5403C7237C3E351EAAFB /* RCTUtils.m */, + 600A53DDA7B71049FA55035529E60C61 /* RCTVersion.h */, + 5B3327C8B6A38BF190B2AA888DD7E075 /* RCTVersion.m */, + 6A9659952CFC20DAF6368F779FD25706 /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + 756893E803E691282EE3E1F4846862E6 /* BaseText */ = { isa = PBXGroup; children = ( - BC370F6861569AC8CBE42B168DCC0469 /* EXConstants.h */, - 0AC8AADDB173108EE276EA0EB28D012B /* EXConstants.m */, - 3CDA4147144E021ACD13C42D1FFCB4C7 /* EXConstantsService.h */, - 3F1724CF420D8B036660ABBF26E45A70 /* EXConstantsService.m */, - 3FBFEB8061762A7C680C19761403B12C /* Pod */, - 66E2C8263FDB996ABE809ECE07F5A6B9 /* Support Files */, + 1091C019674D2BFF76B94607EC7CD0FB /* RCTBaseTextShadowView.h */, + 5B069C131AFA870F406AEEA75A8AEEC4 /* RCTBaseTextShadowView.m */, + F9C214A40C36EAAD0F5701D8022693FA /* RCTBaseTextViewManager.h */, + D5A7DAC61F948F8F9DC50843B518E87C /* RCTBaseTextViewManager.m */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = BaseText; + path = Libraries/Text/BaseText; + sourceTree = ""; + }; + 75D0283661CAFF4749D81968846D67AA /* Nodes */ = { + isa = PBXGroup; + children = ( + D8926E17B143BD65BE649ABE4A94AE24 /* RCTAdditionAnimatedNode.h */, + EC2269E126D621AB1E66CF1DB22D6E7A /* RCTAdditionAnimatedNode.m */, + 59ED33093AE35BF1B618556219072CB8 /* RCTAnimatedNode.h */, + 02F83E97A0FE46EC0B5F0F49EE2A3DB6 /* RCTAnimatedNode.m */, + 5CF5D732BAB724EF51C5903942CC6B51 /* RCTDiffClampAnimatedNode.h */, + 54BE76A522C9DABBC35493B27C458A39 /* RCTDiffClampAnimatedNode.m */, + 865DE2323FC3A3421462A2A91301343B /* RCTDivisionAnimatedNode.h */, + 23FCB7B958C238F900BDE295D6EA6A20 /* RCTDivisionAnimatedNode.m */, + 997F9254809558E4F99886F52DC16625 /* RCTInterpolationAnimatedNode.h */, + AFE53E856D2D3453D69F88987D9B4290 /* RCTInterpolationAnimatedNode.m */, + 647A2D104D639DD94A4305CABAF06022 /* RCTModuloAnimatedNode.h */, + 03A1D5BDF26AE993D32E8CA1FEC5ECCA /* RCTModuloAnimatedNode.m */, + 150097019E4858507C8959CF60FC0322 /* RCTMultiplicationAnimatedNode.h */, + 1929B7E531E232773EDA047347324E93 /* RCTMultiplicationAnimatedNode.m */, + 37883D95D5D7529CBE8638392C856871 /* RCTPropsAnimatedNode.h */, + 533D6BFB91D7A458BC726FE1222BE85D /* RCTPropsAnimatedNode.m */, + 183C6EBF70401B1425D41AEF4161F091 /* RCTStyleAnimatedNode.h */, + C3AD7BA5C163241E1E65364D26072824 /* RCTStyleAnimatedNode.m */, + D616628FAB61D0DF8B176C02C7EADA32 /* RCTSubtractionAnimatedNode.h */, + 3F8A3BDAAA1AA90414AB0385713C4B28 /* RCTSubtractionAnimatedNode.m */, + 423E31257B82A0A0E656FD66322616E8 /* RCTTrackingAnimatedNode.h */, + 8CAC5BFA8B1009021DC5A88FDD6419DC /* RCTTrackingAnimatedNode.m */, + 6E5E0610745F4E4308299B84727BCC34 /* RCTTransformAnimatedNode.h */, + 688FCEAA10FD16A660802F663039A8B6 /* RCTTransformAnimatedNode.m */, + AA78F887998852EABAED8775C5279A49 /* RCTValueAnimatedNode.h */, + 0EF37620C76E2F0CE32163DFBEA0B009 /* RCTValueAnimatedNode.m */, + ); + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; 762603A95890769E48FE92655C29EAB8 /* Logger */ = { @@ -4119,6 +4366,77 @@ name = Logger; sourceTree = ""; }; + 7721A1AB4BC2125A272CA4A14C433FFC /* yoga */ = { + isa = PBXGroup; + children = ( + 13410CAFB030BCA55ABD16F4561D78BD /* CompactValue.h */, + 34DFAF2D1DED544692E495C783EF7E82 /* instrumentation.h */, + 0F531AC7EF738B44C66AB3A306585BD7 /* Utils.cpp */, + 751B6FB6DE9B5B296B0C4CF7E0F625C9 /* Utils.h */, + DCBB427CB227193DA6236812D3D8A754 /* YGConfig.cpp */, + 4E35DF6C0874AF4CA50F6D2C650272A0 /* YGConfig.h */, + 026462320DF0A64CDFA59DC46E5A77D8 /* YGEnums.cpp */, + DC01493F439984AB671E13BA523D2B40 /* YGEnums.h */, + 4563015111A319DAA36733D21E4E32A4 /* YGFloatOptional.h */, + 0DECA38109375851DE9F22197028E797 /* YGLayout.cpp */, + A519FB84482B64E2D65FA64E361C2956 /* YGLayout.h */, + 46B0BA5CC740171CCC1DBF9EE7E4BE7C /* YGMacros.h */, + 97117171D9D65E650FCB6E4EA37E2016 /* YGMarker.cpp */, + 4C9888A3379C92194BD14FCA592E7445 /* YGMarker.h */, + 62B8E9E1E88EB990E7AC76F3B6B38A71 /* YGNode.cpp */, + 8C4838D77CAFA6A9F6153336C544453F /* YGNode.h */, + 4CDCC731A2FBCA55937C58A6A91FE275 /* YGNodePrint.cpp */, + 18243DD4D0C8AA2DCCE5655F82047778 /* YGNodePrint.h */, + 0AD5147A7096B8945A3779108CCF2878 /* YGStyle.cpp */, + 2562A926A6486480497E1D7816A3BBEE /* YGStyle.h */, + D6B036858181751E543BD79C7B405FF3 /* YGValue.cpp */, + C1F2B38EAD7C5B9C5D033EBF142E50F9 /* YGValue.h */, + 5A0D73F18FB51763AE9C6751ACE6E9CB /* Yoga.cpp */, + A24F0D17F9FBDCCCEC4C22FD731397F3 /* Yoga.h */, + 2956C0FE9045D44B70E5AE4C42F3FC5D /* Yoga-internal.h */, + 591C07F0849F9751BD563022B3E9B00D /* Pod */, + A2E51DB29CE2F4EA773C1942742EB8FF /* Support Files */, + ); + name = yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + 7760BFEFE689C497A372D9C2DC06FDA2 /* UMCore */ = { + isa = PBXGroup; + children = ( + B0F7B8927FE9B5F5E66A0FE7925FD7F6 /* UMAppDelegateWrapper.h */, + AC4EE92D0E6B236B9F7EBA7159334C44 /* UMAppDelegateWrapper.m */, + F32735F3F9AEE7E85996C828D31C7B09 /* UMDefines.h */, + B1BB4F779DE264BB7D5C4D952CA67323 /* UMExportedModule.h */, + 663D14443F7FD0802F2D812B2153AEAB /* UMExportedModule.m */, + 96AC5B4DA48481B642C0A6B43FF61EA9 /* UMSingletonModule.h */, + 34C600FE6F8F95748E3897D028F4246E /* UMSingletonModule.m */, + BA47D24FCD6B487BD75C30DC007D3C67 /* UMUtilities.h */, + CA9D21CE6138DBD4F0BA8799DB6E6E16 /* UMUtilities.m */, + 210B584824E97369E8F8B10D150C27F1 /* UMViewManager.h */, + FD714FE59015A6D32C235D297DDE6207 /* UMViewManager.m */, + EB3D48445B5B79ABE8262A584F760A94 /* Pod */, + 459DDEAC8A3E38EF22369BE53053E1B3 /* Protocols */, + 19CF214DE4DB403160C9256DE211A746 /* Services */, + C53D7019E356E0128C2877974ECC47D5 /* Support Files */, + 9900078BFF01C9ECB93DFB439F89EF1E /* UMModuleRegistry */, + 3124562268872FD3B1A39C24CE6FDDEB /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + 78A9C31FF448E481192D15CB2D1EA49C /* RCTBlob */ = { + isa = PBXGroup; + children = ( + F615CC887D9EAF7CAA992A33E04C75A3 /* RCTBlobManager.h */, + 270E4394E0A6B293743AD0F1251BFBAD /* RCTBlobManager.mm */, + 288E5BA3E66031E7E9D26F55B4207399 /* RCTFileReaderModule.h */, + 4133B33AD49733A3EA36BC520C173B9A /* RCTFileReaderModule.m */, + ); + name = RCTBlob; + sourceTree = ""; + }; 79991E90489B1D05DCEA2BC5B32DC5F3 /* Crashlytics */ = { isa = PBXGroup; children = ( @@ -4136,23 +4454,6 @@ path = Crashlytics; sourceTree = ""; }; - 7A211AD11EFE186062AE15ABA50C893E /* Drivers */ = { - isa = PBXGroup; - children = ( - 9297CE04E46CA8F70354BD6493466975 /* RCTAnimationDriver.h */, - 158650143D91AEEFB7F6C2EE77EA8B09 /* RCTDecayAnimation.h */, - 6F5BDF1967164F406936BE6B6960EC62 /* RCTDecayAnimation.m */, - CEA9EF980ECA16582FB2DE0EF6FC0CE8 /* RCTEventAnimation.h */, - 417D09F52F13DD79EC13800EAFB69A50 /* RCTEventAnimation.m */, - 1BD414930957BB53AF468D1DDA25B014 /* RCTFrameAnimation.h */, - F0AA5CD93EFFB4B02045212FA9359F5A /* RCTFrameAnimation.m */, - 61C49D4B31D55252E0D8F7450606E4D0 /* RCTSpringAnimation.h */, - ABCA027E88773CA23B549EDDB2ACBBE1 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; 7A804DE04C1813D3D24693407FB779A9 /* CoreOnly */ = { isa = PBXGroup; children = ( @@ -4161,23 +4462,15 @@ name = CoreOnly; sourceTree = ""; }; - 7B4D0CC8F0AA812D4ADDD7396EA6E8B6 /* Protocols */ = { + 7B0BC7937E079209C3B0BE3CE96D1A85 /* Support Files */ = { isa = PBXGroup; children = ( - 3AD149B7F3A980771CA2BD526A41981A /* UMAppLifecycleListener.h */, - EA11C18590A6237A6316164F0B9E6BD6 /* UMAppLifecycleService.h */, - 6B8D0C94F9B19E757130BCF491DBB132 /* UMEventEmitter.h */, - 4E123B7DA0F4AC93E2691CB84EA8EB3F /* UMEventEmitterService.h */, - 803B96165F394F194ED4A3E4BF76DF0D /* UMInternalModule.h */, - B38860BD9978BE583CC3D3DA830C9C52 /* UMJavaScriptContextProvider.h */, - A44E9728C8336B589B6557FFE9BEF50A /* UMKernelService.h */, - F9E600AA6C09BA6929B6D372D7C26520 /* UMLogHandler.h */, - 78B94A6F6A5136FD15BB423507DA9025 /* UMModuleRegistryConsumer.h */, - F331C2ABA1A0071B3E11294641BFB5E3 /* UMUIManager.h */, - 4DB1D4150718C4CAFA487244471DCB74 /* UMUtilitiesInterface.h */, + CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.xcconfig */, + E7CA4B021924C03E3DD9695981FE8001 /* react-native-splash-screen-dummy.m */, + B56AB4E4CC67B0F39DC3DD6891DC936A /* react-native-splash-screen-prefix.pch */, ); - name = Protocols; - path = UMCore/Protocols; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; sourceTree = ""; }; 7C48559015DEF4F593759881A93D9E1F /* glog */ = { @@ -4201,12 +4494,14 @@ path = glog; sourceTree = ""; }; - 7D55623E2C9EE8C6DD65128136275D07 /* Pod */ = { + 7D2DC9DC724ADBEA00077C7C398C9557 /* UIUtils */ = { isa = PBXGroup; children = ( - 09503CC93B6FBD842BB816B6EBF3599D /* UMFileSystemInterface.podspec */, + 960A6A17CFD5E7644DDE9B444F1FB88A /* RCTUIUtils.h */, + 579F75F6FEAB263868830687AF8BCC81 /* RCTUIUtils.m */, ); - name = Pod; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; 7D97861288D65B04CFD2336E0071DF8D /* Support Files */ = { @@ -4218,19 +4513,6 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; - 7EF3F1AA3419F86390FDD7E7AAE7C9A9 /* EXAppLoaderProvider */ = { - isa = PBXGroup; - children = ( - 3C4A54363357B1A902A650261B387187 /* EXAppLoaderProvider.h */, - F9AB0E3D5CBEC3A07A6E8C898E107F34 /* EXAppLoaderProvider.m */, - 8A56E4C21966A0DA297171DC44DA47D9 /* Interfaces */, - 2C6E3790519D530D97556B3EDA8E034D /* Pod */, - 043ACB1B44A11106A0B6BB064272CD02 /* Support Files */, - ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; - sourceTree = ""; - }; 7FBFCDD5C01E400A2DA947FFD3D9C153 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -4239,14 +4521,6 @@ name = Frameworks; sourceTree = ""; }; - 8058D9C763A9B8E8B61037E5005EA2ED /* Pod */ = { - isa = PBXGroup; - children = ( - 9CC41E2F70D5E57207BAE0650CF02D94 /* UMImageLoaderInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 80610257BEB9BD53AF7E018B27B780C8 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4256,25 +4530,6 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; - 807C18784FD47D36F76174B201F746C6 /* UMImageLoaderInterface */ = { - isa = PBXGroup; - children = ( - E9776010FFB120B335C0E4367B6469E0 /* UMImageLoaderInterface.h */, - 8058D9C763A9B8E8B61037E5005EA2ED /* Pod */, - B61287017BC9F7BF50AD98E4755A29EB /* Support Files */, - ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; - 808D39F445CD03CF62DF5FDCE451479F /* Pod */ = { - isa = PBXGroup; - children = ( - 43C421E6714EA90B263878D98C474E94 /* UMConstantsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 81D36261BF12B9A295B9BE0E0DDB0E4B /* Support Files */ = { isa = PBXGroup; children = ( @@ -4286,6 +4541,20 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; + 81FC486351113FBA945A6922FD7EC122 /* Multiline */ = { + isa = PBXGroup; + children = ( + E17B6543B311CAFA8804134B127F61B4 /* RCTMultilineTextInputView.h */, + C9CB7D304DD04F14ADDCF1FA7818AE48 /* RCTMultilineTextInputView.m */, + 888BFA19D1199419B777E38714CACD08 /* RCTMultilineTextInputViewManager.h */, + D8DA9110313A76B2AC5618810D021D45 /* RCTMultilineTextInputViewManager.m */, + DEC93D0837A9EACE50D36AB42ABA00EE /* RCTUITextView.h */, + 43D6ACD534F47AFBFF26145E0956F9D8 /* RCTUITextView.m */, + ); + name = Multiline; + path = Multiline; + sourceTree = ""; + }; 8293B39959FA1FBF187A152B6B6A0C3D /* Support Files */ = { isa = PBXGroup; children = ( @@ -4297,6 +4566,63 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; + 84D1EC32AFF6CB750055338C60D16E61 /* Pod */ = { + isa = PBXGroup; + children = ( + F6AA524138805DA430C724041E4742E8 /* LICENSE */, + 8CDE1B9363F5B5A52414B3D7EED53400 /* React.podspec */, + 531D85B2F7BF494A0CE2FFD93F0CFAD8 /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 856F45E0C33F23EDE283657A359BD0D4 /* Text */ = { + isa = PBXGroup; + children = ( + 5F0C35B11D1E749588F69C61F1587E8F /* NSTextStorage+FontScaling.h */, + 66F256A6104111E853B12B823537153B /* NSTextStorage+FontScaling.m */, + 7808E35EEBDC3E4D79E96FC46AAC4DE8 /* RCTTextShadowView.h */, + 9CBF37D783FBCF065C627E76B1962256 /* RCTTextShadowView.m */, + 04A2A83674DBD94DF7FC4D9AFE06C9CF /* RCTTextView.h */, + 859631F60010BD1A4A0D69FBF576E22D /* RCTTextView.m */, + 485D50D7BFC9687A7C29756467E5E9C7 /* RCTTextViewManager.h */, + 12E7629120786009C83B744C17E0400B /* RCTTextViewManager.m */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + 85995E69A09E200E81FA2640DBA3D49F /* RCTImage */ = { + isa = PBXGroup; + children = ( + F2FB2F97B1B6324FC7F47C781F5301F2 /* RCTGIFImageDecoder.h */, + 765BB06E332F1DDB985D0A2A9BD0E253 /* RCTGIFImageDecoder.m */, + 8DCC4ED073425430ACB88B74EEB15C9A /* RCTImageBlurUtils.h */, + 2D2C68E3E713B25594D842E9D9B634C4 /* RCTImageBlurUtils.m */, + 4B8BBCBB070351DFF65575D861D357A3 /* RCTImageCache.h */, + 68F770181F1569A7865F7A5FC782E840 /* RCTImageCache.m */, + A01E1A07EB6A8204F2104597E9A77FF7 /* RCTImageEditingManager.h */, + 91EB5D8288F63FFC089EAF2ED863590A /* RCTImageEditingManager.m */, + 629D90420A2F20F43A29C88552E97659 /* RCTImageLoader.h */, + DC21D94EE3031E2045C0C0890B2F1506 /* RCTImageLoader.m */, + 041A12F442279794A692067621FFD1A7 /* RCTImageShadowView.h */, + FE92E48E5B04DEFDBF3F9D1DE2D69469 /* RCTImageShadowView.m */, + 4CE6808B101A8216C4CA753D560B5BCD /* RCTImageStoreManager.h */, + 699F679A626C7359CCCBD0B1CA71871B /* RCTImageStoreManager.m */, + 3C36A8962D03A67E577C6B09E11EBFF7 /* RCTImageUtils.h */, + EB42551B3B22F5EBE62EBA642F5D8121 /* RCTImageUtils.m */, + 3E76908755FC2B9A8B7E43567117B5BF /* RCTImageView.h */, + 60A1AB1480F36294F6AA3B69AF8473E7 /* RCTImageView.m */, + 70930EE1A8493B1B9F936E66702CB83A /* RCTImageViewManager.h */, + 47A55DBB09F5BE29646497544E693C78 /* RCTImageViewManager.m */, + C69AD05A88E25AB493B5776520545AEE /* RCTLocalAssetImageLoader.h */, + FC4CB5AD065A832D25A342A4F4A29D36 /* RCTLocalAssetImageLoader.m */, + 87DD7DBCC0E780DBAA7C30E8726B428C /* RCTResizeMode.h */, + 696D040A55B087A2BE9DA4BE748E7F67 /* RCTResizeMode.m */, + ); + name = RCTImage; + sourceTree = ""; + }; 85AC4B197013A70793286BD7623BD5D5 /* FirebaseCore */ = { isa = PBXGroup; children = ( @@ -4340,30 +4666,26 @@ path = FirebaseCore; sourceTree = ""; }; - 8626E3BD152CC634748AF21E205BA767 /* Support Files */ = { - isa = PBXGroup; - children = ( - 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/FirebasePerformance"; - sourceTree = ""; - }; - 8669CC8948B7D89A4C57350BB1D72033 /* Pod */ = { + 861F27824E66E148533FB638DD7CD54A /* EXAppLoaderProvider */ = { isa = PBXGroup; children = ( - 288D84180E70FD5FF4C433B8E81050E4 /* UMCore.podspec */, + DC96135AC6C0009BC8F36D80DF7A35B7 /* EXAppLoaderProvider.h */, + 461925FC1802935011DA256790C0BF92 /* EXAppLoaderProvider.m */, + FA564A437E49FE0E8688CCDA9DA06BE2 /* Interfaces */, + 4CFD99EE74DB318C2CB320AD61D2E320 /* Pod */, + D42072FF497AEB782348FCE23E435986 /* Support Files */, ); - name = Pod; + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; sourceTree = ""; }; - 87121FFDF416EDEB051BFFEC2260CB20 /* Support Files */ = { + 8626E3BD152CC634748AF21E205BA767 /* Support Files */ = { isa = PBXGroup; children = ( - 2997917581386E0D376C9CECDC2DA4B6 /* UMCameraInterface.xcconfig */, + 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + path = "../Target Support Files/FirebasePerformance"; sourceTree = ""; }; 877C6DC2D0047F734A22226CCD030AD5 /* MethodSwizzler */ = { @@ -4376,75 +4698,18 @@ name = MethodSwizzler; sourceTree = ""; }; - 8973BB59F4D71D65D834C7DCD70B33D6 /* react-native-webview */ = { - isa = PBXGroup; - children = ( - 76F4D8494445132FD057CF9C8E73B02E /* RNCUIWebView.h */, - 5C353E80F9B563C9F63C040A3F248A8A /* RNCUIWebView.m */, - CE041C035115C3D3122148A188752ECD /* RNCUIWebViewManager.h */, - 058F7DB64918C28A7F943D22CF1CD899 /* RNCUIWebViewManager.m */, - 80EB1576F23DD23C8D061B78F428A845 /* RNCWKProcessPoolManager.h */, - 6E516B77930E058AFB80698F795EA6B3 /* RNCWKProcessPoolManager.m */, - C4B2036BCF96FCF939B416E5F67E606B /* RNCWKWebView.h */, - B74B893D0180C0E463704D5CC8152049 /* RNCWKWebView.m */, - 611DD4ECC401BC168294B09940A8F9A1 /* RNCWKWebViewManager.h */, - D4069D88BE17E68858A65296FAF8E7E8 /* RNCWKWebViewManager.m */, - 2E35F9FF6A503EE8F7A9930EDDE57501 /* Pod */, - 511BA62FCC9EDF8D661BA6D55A3D1F1F /* Support Files */, - ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; - sourceTree = ""; - }; - 8A3BBB2F459ABAE668A5289997BBF0D5 /* RCTNetwork */ = { - isa = PBXGroup; - children = ( - B6C094B61FDF45CB276B23BAB60B77B3 /* RCTDataRequestHandler.h */, - E69BC69E148082A305EE45C3678571D6 /* RCTDataRequestHandler.m */, - EA8DFFC633583A4D4BEB2C27C04EC1FF /* RCTFileRequestHandler.h */, - F88E72E5390365A2FEDAC9517ACCF79F /* RCTFileRequestHandler.m */, - 614454A48C354D9D71C00AF5ACA6EDBF /* RCTHTTPRequestHandler.h */, - 7A0060E306A97776B1474ABA2B5961E9 /* RCTHTTPRequestHandler.mm */, - 60C7FD7037029C43CD140989F5A29CAD /* RCTNetInfo.h */, - E43C4CE29FBC067740F839D6DAE8B3BC /* RCTNetInfo.m */, - C15FA976382AFC718F378B10CCB27861 /* RCTNetworking.h */, - FD0B58A9BFEC88315CFCFB43DD666E1C /* RCTNetworking.mm */, - 149920DA8D663BC274EDDD280DD0526C /* RCTNetworkTask.h */, - 2288222AD0A54491F6BF05DC9D5C4702 /* RCTNetworkTask.m */, - ); - name = RCTNetwork; - sourceTree = ""; - }; - 8A56E4C21966A0DA297171DC44DA47D9 /* Interfaces */ = { + 87CAAD6630443C4AB48A67133895E56A /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 7C9755B93FBE6CDE9A073BD353CDDF02 /* EXAppLoaderInterface.h */, - 299100DCF93023EF88279144D44979D4 /* EXAppRecordInterface.h */, + C64056D32F066C90251D8F1E56AB1B12 /* DeviceUID.h */, + E98EAEC6C9E8BE7CEAA1A7C5AC870A81 /* DeviceUID.m */, + 54B82F8D20049A45DA627A7CB9FBA8E2 /* RNDeviceInfo.h */, + 8E867CAB95A604A5DB227E6F017F04B5 /* RNDeviceInfo.m */, + F848C6C4B6AE6965819244613B3EA4FA /* Pod */, + 2B12C0FA6975DE073FC7649DA834B90D /* Support Files */, ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; - sourceTree = ""; - }; - 8A73BFF2F8818CF28F0A630C16F22F65 /* React */ = { - isa = PBXGroup; - children = ( - AE9EB5B85F1091989BD314D5A6119C63 /* Core */, - E66C9D368670CDEDB31D4E7BAB904BBC /* fishhook */, - E117B5B93381CD4894CDED817B9B091B /* Pod */, - FEF04B9996F4183AD762A48574EE4622 /* RCTActionSheet */, - 657537CBE25165A8289A608EF1477614 /* RCTAnimation */, - 4ABC5B861813D4C60A079E403D4B115A /* RCTBlob */, - 41C2C1733395C227DE201BF51CBFE62E /* RCTImage */, - 45CF833A8F39D2BB943A6DD4C6C33292 /* RCTLinkingIOS */, - 8A3BBB2F459ABAE668A5289997BBF0D5 /* RCTNetwork */, - A80E0E45F290F90FDAE6D22EB4FE9562 /* RCTSettings */, - E7931271324792BE9AB065A6F9B4B399 /* RCTText */, - C1FB311D87E3BF304E51A41F40615EF7 /* RCTVibration */, - 01007C58FB4BD39492318ADB2E110135 /* RCTWebSocket */, - D91643C8876E81DED2F3CC1722684296 /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; 8AD636CD55EE871DE57F398C552E84C4 /* Environment */ = { @@ -4456,55 +4721,55 @@ name = Environment; sourceTree = ""; }; - 8AF1BF9E3D692286177358393C8C71AE /* Pod */ = { + 8C9BDB38E9BB836D32C340A4C1023E9E /* Support Files */ = { isa = PBXGroup; children = ( - E590F29096C47E4DF88373D5FB964AAC /* LICENSE */, - E7DE5D1E222D7170CBDB239411C67320 /* react-native-splash-screen.podspec */, - 05825C174AEE77C9F8C1E3D0B7463BBF /* README.md */, + 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - 8E4192F07F2BD9F9EE949432E67C031F /* react-native-document-picker */ = { + 8F8BD459EED16B4CE63EC0448F19E563 /* Support Files */ = { isa = PBXGroup; children = ( - 6D4CA1ACC838745B51F8A5752971E375 /* RNDocumentPicker.h */, - 87792DF843702030DB1321212D0917D6 /* RNDocumentPicker.m */, - C34AB18B11318383198EC8A5CEFF2FA4 /* Pod */, - 66C33E83CDFDED9149E2FC6F5DE09AA6 /* Support Files */, + C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; sourceTree = ""; }; - 8F426DF3863F8FF8774F70F2E95224EC /* Pod */ = { + 907B1AA9C9A23B16A07F690E51D4B145 /* Pod */ = { isa = PBXGroup; children = ( - BF7E86B83DE84AAA8764104AD480C694 /* EXPermissions.podspec */, + A4AA342D485B0A2C2ECEE714AA427DC8 /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - 90A84BD57B49F42B87E623EA4F6837D2 /* Support Files */ = { + 91D883758E0A2F96FF4100CE12DCC470 /* Support Files */ = { isa = PBXGroup; children = ( - 22EDA30B64BE2E543DF1B0B3DAF34C19 /* yoga.xcconfig */, - F3E334BFDD099216BB584990FB612997 /* yoga-dummy.m */, - 16B7760A8820225A63D817C6BB3D3398 /* yoga-prefix.pch */, + 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */, + B8FB2662CBAA57FEA849FBEF17542D6D /* react-native-realm-path-dummy.m */, + 06BFEDA9CC3AFF8213E2CCD9A031B13B /* react-native-realm-path-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/yoga"; + path = "../../ios/Pods/Target Support Files/react-native-realm-path"; sourceTree = ""; }; - 91FD4761A6295B8F2D743A74B8234799 /* Pod */ = { + 93677593B3138D9BF03E6004DDB5AC04 /* RNScreens */ = { isa = PBXGroup; children = ( - 92EDC970716B3C90FA68ABE5EA5BF251 /* LICENSE */, - A2D9E867D792EE1F43898A8879F110CD /* README.md */, - B59BD4644703A84BEA0A9674A4D0509B /* RNImageCropPicker.podspec */, + ECBDF16A20F05203CC4DE3B15C23AF93 /* RNSScreen.h */, + 0BEFF173864C59EF1F9D356DE406B8E8 /* RNSScreen.m */, + 9605093DCDE576A19361A5CA0D9820C0 /* RNSScreenContainer.h */, + EECB4F3A81F1FB4F694A03F1EDE10895 /* RNSScreenContainer.m */, + A17690DD8A34BCCB102D5948BB4750CF /* Pod */, + AC7E23F08E17A14ECEC1BA4CE7D68837 /* Support Files */, ); - name = Pod; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; 94A39BC6E8B7C8C7886F34DEE336D562 /* Protobuf */ = { @@ -4578,66 +4843,39 @@ path = Protobuf; sourceTree = ""; }; - 94ED16838B3D55F987F5BDD91EC7686C /* Surface */ = { + 95A1AAB935E3B6F3C935FF16BFE4C582 /* Pod */ = { isa = PBXGroup; children = ( - 69CFBA8D3DF8166EB9683C810F437182 /* RCTSurface.h */, - 027FC199BAC70FAB4151B3A0A94AEDDB /* RCTSurface.mm */, - FFF54C2E11B2CAF3A46837E520C4A650 /* RCTSurfaceDelegate.h */, - E684DA86FF55E4A24A6E869D7D55BBCA /* RCTSurfaceRootShadowView.h */, - C7DD2655403BB71CEE66D8285AFA3E4D /* RCTSurfaceRootShadowView.m */, - 91B29A035D1983BEC980F4E3B2A01FA3 /* RCTSurfaceRootShadowViewDelegate.h */, - 92149D25FF688D6F2730652B54F788FA /* RCTSurfaceRootView.h */, - 50931769527BAD09EACEBAE3CBDBDDC7 /* RCTSurfaceRootView.mm */, - EC792BDC341C1F09D58B496A9CC46634 /* RCTSurfaceStage.h */, - F304DD3F91DCE73A53690CCAD2D80467 /* RCTSurfaceStage.m */, - 7230649D892A619044E02EC65262E76B /* RCTSurfaceView.h */, - 7D381644CED791563034E62BB3EAB5BA /* RCTSurfaceView.mm */, - 2A2A193A256DD42FA43F7457A699B342 /* RCTSurfaceView+Internal.h */, - 51672481585D0C44909F7B7DE2361C20 /* SurfaceHostingView */, + D5369D829EF70F3E2D3D170BC19D0E33 /* UMBarCodeScannerInterface.podspec */, ); - name = Surface; - path = Surface; + name = Pod; sourceTree = ""; }; - 95FFC141859438306160F0DFD98DA281 /* react-native-orientation-locker */ = { + 96179E1B26E42CDDFA772FDF542DECE9 /* Support Files */ = { isa = PBXGroup; children = ( - 6779091CB3A5F1F4950CEDE345154699 /* Orientation.h */, - 0C054EC061D0C86EE89D4A20BAF3C9F6 /* Orientation.m */, - CFEDC51487C0B50AEACDBD99A7A2F3D3 /* Pod */, - C1BC38186BECC9AE021FF32349FF41D7 /* Support Files */, + A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = "Support Files"; + path = "../Target Support Files/Fabric"; sourceTree = ""; }; - 96179E1B26E42CDDFA772FDF542DECE9 /* Support Files */ = { + 9642B91576DBB897576C4375540C3258 /* Pod */ = { isa = PBXGroup; children = ( - A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */, + 3E8B041F27FCBABA95CC7B7847CFACA4 /* LICENSE.md */, + 307DEA27A19126FF792E51D91EA7ADDE /* react-native-document-picker.podspec */, + 5172631FDCE8C9C59C45966058DE6F48 /* README.md */, ); - name = "Support Files"; - path = "../Target Support Files/Fabric"; + name = Pod; sourceTree = ""; }; - 972AB34879CFF6F85937198CE1CE1776 /* ScrollView */ = { + 967221DF8C8593004E75CEEF95AEFDBC /* Pod */ = { isa = PBXGroup; children = ( - 76BC3A5A5F36FE17E04E6722EF998001 /* RCTScrollableProtocol.h */, - 9B4512B42C6948CBF0F16435F219BCE3 /* RCTScrollContentShadowView.h */, - C1E1EB7DE1D043ABEC1CC9795C226B6A /* RCTScrollContentShadowView.m */, - 419DE0EDBF8CF05904C959E23D0BFA2A /* RCTScrollContentView.h */, - 89F4B2BC31DD12CB078AE0B309E89C66 /* RCTScrollContentView.m */, - F500DBEBDFA837C0A08BC532CB3A5DBA /* RCTScrollContentViewManager.h */, - 293AD31A0F279816AEA595C6F41B45C3 /* RCTScrollContentViewManager.m */, - 91FDABE3488315384812627C640AA501 /* RCTScrollView.h */, - 1690D7B8F71BC664180EA85CB04F8DB3 /* RCTScrollView.m */, - 1F1E9449E2E63E058F57AC955C63F663 /* RCTScrollViewManager.h */, - 8F6C7AA84B6FE3F824F481CEAAF9162D /* RCTScrollViewManager.m */, + 92BDF4644970336BDD2726D6CEE92A87 /* UMReactNativeAdapter.podspec */, ); - name = ScrollView; - path = ScrollView; + name = Pod; sourceTree = ""; }; 972F3F51295E12FAAB2ECE0553122034 /* FirebasePerformance */ = { @@ -4659,53 +4897,46 @@ path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; - 9A81BED9556EDAEC6528B85C1025362F /* GoogleIDFASupport */ = { + 97E7FC26401EE16EA5DA278B495EB84C /* Pod */ = { isa = PBXGroup; children = ( - 392E4784A690A07630EAD5B1548E949F /* Frameworks */, - 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */, + CCDA0AF1FF28783170CE15AD9DE1BC48 /* LICENSE */, + C4CC8AB97350E59F67EB7DA517E8C908 /* react-native-webview.podspec */, + 733E223CFDD262EF43FBBD8807E803EB /* README.md */, ); - name = GoogleIDFASupport; - path = GoogleIDFASupport; + name = Pod; sourceTree = ""; }; - 9B7D44B2A23E32E40556E6DC66611D1F /* EXHaptics */ = { + 98EEB84C8F66CE7A5557485F61904125 /* Support Files */ = { isa = PBXGroup; children = ( - DBA6E574AEF8F6081D147F775669702E /* EXHapticsModule.h */, - 0A36E010B972E4EDBAEE04B984A3E34C /* EXHapticsModule.m */, - 280999D25D07B5904F12B0D0BF00C6B1 /* Pod */, - A9D1A432E45FBC660457275B6AD6143D /* Support Files */, + 8F2E9FD2978F0A487CA5EB098EAA947C /* react-native-webview.xcconfig */, + 651073CDC0948953C39B5608AC715876 /* react-native-webview-dummy.m */, + FE9808B896A721E209136FB2F00D6A7E /* react-native-webview-prefix.pch */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; - sourceTree = ""; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; + sourceTree = ""; }; - 9D104748E1B6A041602ED70867990376 /* Support Files */ = { + 9900078BFF01C9ECB93DFB439F89EF1E /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - 7EFB65EB9FC5E2B1F2BDB585D852E58B /* RNScreens.xcconfig */, - 45D9C72B4E997D71B1919CDEF7327C2E /* RNScreens-dummy.m */, - 67B2B489E06B41EC9E5F2917C2355E9A /* RNScreens-prefix.pch */, + 192B96F1963E264CCFEBC3534FC8A498 /* UMModuleRegistry.h */, + 9957009B867CBC0D49D5BFAD7CF27811 /* UMModuleRegistry.m */, + 0488280DDC23C1BA9BDCE5B5B6A20B3A /* UMModuleRegistryDelegate.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 9D6E752AB738836883DF9F163D6D2CE6 /* RNImageCropPicker */ = { + 9A81BED9556EDAEC6528B85C1025362F /* GoogleIDFASupport */ = { isa = PBXGroup; children = ( - 8559A6CFC5454CD51A4671CC5F6A260C /* Compression.h */, - E68AFADE1BAA81DD7BE1F0E3301C7D9B /* Compression.m */, - C3389D6CFB2B4F9B84187B78361B9178 /* ImageCropPicker.h */, - B148D96844207800368341EFCC6C8CCF /* ImageCropPicker.m */, - B33F426AF2AB9720B4E0E13120126592 /* UIImage+Resize.h */, - A222360C7D302A52715BD8912EACAC0E /* UIImage+Resize.m */, - 91FD4761A6295B8F2D743A74B8234799 /* Pod */, - D49AEAAD88A9C484737B56E9EC12C2BB /* Support Files */, + 392E4784A690A07630EAD5B1548E949F /* Frameworks */, + 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = GoogleIDFASupport; + path = GoogleIDFASupport; sourceTree = ""; }; 9D86C1A9AEDE6B78974D2ED7C7E8A632 /* Support Files */ = { @@ -4719,6 +4950,34 @@ path = "../Target Support Files/GoogleToolboxForMac"; sourceTree = ""; }; + 9DE3F19B7CA8739BC1A77B6CA9ED5C1D /* Support Files */ = { + isa = PBXGroup; + children = ( + F6334B5F131CDD267C933341A87CF382 /* EXConstants.xcconfig */, + 78E5691D1FB00DDBB44E372B7794C0E5 /* EXConstants-dummy.m */, + DBE108DDDBE372FA6EE8746B16DD0713 /* EXConstants-prefix.pch */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; + sourceTree = ""; + }; + 9EFD0C170B94B3CD938198C4BD6FB1EC /* Drivers */ = { + isa = PBXGroup; + children = ( + 30580C50B46345071F408CA2EA02F79D /* RCTAnimationDriver.h */, + 78BD0E89211B12181B53EA31FBC8EBEB /* RCTDecayAnimation.h */, + 0E4768C340A52BE6F8E5F500D3058657 /* RCTDecayAnimation.m */, + D5CC35B6F1D11EFB6ED5235C649EED0B /* RCTEventAnimation.h */, + 3EE00389D5A2B0AFE67DC842DAE12C09 /* RCTEventAnimation.m */, + 22C42CC35973126B66C0EE13EE050413 /* RCTFrameAnimation.h */, + 7C757C0E204EBF0CB4DA737B5DA400AA /* RCTFrameAnimation.m */, + 8050186A7A19A3AF6AC03C3D457EB16D /* RCTSpringAnimation.h */, + 0323E1252CEB77179CB0A8A82509226E /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = ""; + }; A03428A51F6449FD7349EDE1E28B6448 /* boost-for-react-native */ = { isa = PBXGroup; children = ( @@ -4737,11 +4996,12 @@ name = "NSData+zlib"; sourceTree = ""; }; - A1D71A27ADA0FF52ACF4DA9584A598F9 /* Pod */ = { + A17690DD8A34BCCB102D5948BB4750CF /* Pod */ = { isa = PBXGroup; children = ( - CB176B00EB94FD9ADED4923DFB38D238 /* README.md */, - 8E3F194230E6880DAE5F6E8685DA41B3 /* RNLocalize.podspec */, + E5432881AEBE5FB0661DAC3DDEF45791 /* LICENSE */, + E6E593B2F2AEE6DFE4D0610A1738DB8D /* README.md */, + EFF9593F541CBE9541A7DA5E2123D221 /* RNScreens.podspec */, ); name = Pod; sourceTree = ""; @@ -4758,12 +5018,15 @@ path = Fabric; sourceTree = ""; }; - A3E72BA8B67442464C9AC58093147040 /* Pod */ = { + A2E51DB29CE2F4EA773C1942742EB8FF /* Support Files */ = { isa = PBXGroup; children = ( - 9E39C01FE4EA6D0654D61384DF8D77D2 /* UMFontInterface.podspec */, + B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */, + 0AB591CB4D6D75D827D78807CF54BCD1 /* yoga-dummy.m */, + 6575EBF726D4641F29236047BFC4B500 /* yoga-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/yoga"; sourceTree = ""; }; A4B637D514F44D29D03380C521612787 /* QBImagePickerController */ = { @@ -4794,72 +5057,37 @@ path = QBImagePickerController; sourceTree = ""; }; - A5972B97DEFFA9B251EE3E5699796075 /* Products */ = { - isa = PBXGroup; - children = ( - 0F9D32450BA4C90E1EC2C7DDCD91DEC5 /* libDoubleConversion.a */, - 279714E82B7622AB40021F0705546733 /* libEXAppLoaderProvider.a */, - 3138C521EF7F36EE8AED50D94C5EE882 /* libEXConstants.a */, - C75CFB8C53569F6F250A620965F0D3C8 /* libEXFileSystem.a */, - 1557F6150561AE28AD419B52693092AE /* libEXHaptics.a */, - FFA97571FC551CF180C13F1C2589FA74 /* libEXPermissions.a */, - 1954559BB85761360B4335D2246E6816 /* libEXWebBrowser.a */, - 58706CC7A8E0E0F55DD79B0A97259068 /* libFirebaseCore.a */, - EE9C4EBC9A59FF6B05161BE9B1A4D074 /* libFirebaseInstanceID.a */, - EDEB5B9C8E9AE70B2B6EA2E2FEFC822E /* libFolly.a */, - 862BE059FBA2420B43E3FDA164484F62 /* libglog.a */, - 3E1BFD391AF5C7C626832E6E549629B2 /* libGoogleToolboxForMac.a */, - 0E1B1F60A9524A572FA1164AE4EF3BB5 /* libGoogleUtilities.a */, - 0224BFAC559A614A3E5BDB8591BCB8CD /* libGTMSessionFetcher.a */, - F89B0F9050EDACD0D09D26FCFC6E751F /* libnanopb.a */, - 1E5177A82CD7E641E7A8F69772502085 /* libPods-RocketChatRN.a */, - 5A0FFFD4ADE7F817295DDA4CECEAD0FD /* libPods-ShareRocketChatRN.a */, - 1ABD1C4A2F2C3C0271F1F0C1B7DDBA59 /* libProtobuf.a */, - 828F786006E9475A8F48D9903907BF7D /* libQBImagePickerController.a */, - CA823272C554D0B4B52B60CBBF37AB8C /* libReact.a */, - ADC7A95508C1CAB312ECA1B9A5E00CF2 /* libreact-native-document-picker.a */, - B255B62845F95CEB6B65720585C04A60 /* libreact-native-orientation-locker.a */, - 6842129DEE9BB42323033ABD94A828E1 /* libreact-native-splash-screen.a */, - 3997FC6F3D10DE3F652E3AD4AB9A980A /* libreact-native-webview.a */, - 4D2DA5811BC85AF3E1B3107B9EB5F285 /* libRNDeviceInfo.a */, - 9A505FEE16C4CA075A3CA8CF51C59E00 /* libRNImageCropPicker.a */, - 9379920E557C34F5428A22260CA77634 /* libRNLocalize.a */, - 1E43EB2AFBD804F643193AB4A506FDD2 /* libRNScreens.a */, - 3FAFEC3BA6F7A549C49CE3DF0456769F /* libRSKImageCropper.a */, - F2FEB3C94FB011CDD44E1EE957EB5BB5 /* libUMCore.a */, - EAFC6D9406D8C0A4E110816512C968BB /* libUMReactNativeAdapter.a */, - C94C33640551DD7413CC81126420CC13 /* libyoga.a */, - 0FBB6CE2FC46A7EEE9B58139D2F6507F /* QBImagePicker.bundle */, - ); - name = Products; - sourceTree = ""; - }; - A80E0E45F290F90FDAE6D22EB4FE9562 /* RCTSettings */ = { + A4DDA38DB29B95D5F4F6F8BF5171AF91 /* Pod */ = { isa = PBXGroup; children = ( - B5DC5EF75E88325DB46D21FB70A9FBB1 /* RCTSettingsManager.h */, - 6FB1ADB2CCF5F21EF72E6D25B9F80B6D /* RCTSettingsManager.m */, + 1E2EA95C644202201F3937FBDBD07262 /* UMPermissionsInterface.podspec */, ); - name = RCTSettings; + name = Pod; sourceTree = ""; }; - A9D1A432E45FBC660457275B6AD6143D /* Support Files */ = { + A5628DF172DE58FBA3F68C4A45D0E1E8 /* UMFontInterface */ = { isa = PBXGroup; children = ( - 062E08C4CCAEBC0976B7EFCBFDFA4A83 /* EXHaptics.xcconfig */, - 0CE0884658E15E94595AE0347951FC28 /* EXHaptics-dummy.m */, - FD2944DBFE71767FA03B65AFF3C4AFDE /* EXHaptics-prefix.pch */, + 3CE48E45CE5BAF8BF94C53ADDE0DE222 /* UMFontManagerInterface.h */, + D8C2F9C4A7E6A4EDFF1C29A3F7EE27BD /* UMFontProcessorInterface.h */, + 9F7A85ED957E267679CE03E652C8B5AE /* UMFontScalerInterface.h */, + 0D379F20422F35E4A0327AB378E60E61 /* UMFontScalersManagerInterface.h */, + 4F24E462D72846485459502D84C08ABB /* Pod */, + 8F8BD459EED16B4CE63EC0448F19E563 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - ABA427AB7EF7CE7EE55AED4996819AF3 /* Pod */ = { + AC7E23F08E17A14ECEC1BA4CE7D68837 /* Support Files */ = { isa = PBXGroup; children = ( - 76FA88DB0BF908363FDA0141F8D8C77A /* UMSensorsInterface.podspec */, + FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.xcconfig */, + 72CBE19DF375F16284A08576395BBD58 /* RNScreens-dummy.m */, + BC87A07FA8F48763D1B39023D4A090A2 /* RNScreens-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; ACF6B0DDA33E83229CBCCD8A0BB9BE70 /* RSKImageCropper */ = { @@ -4898,25 +5126,24 @@ name = Logger; sourceTree = ""; }; - AE43448F0C94E65C7C200A838A5A94BF /* Support Files */ = { + AE361E9A4AED25932BFC2C3A0897C497 /* Support Files */ = { isa = PBXGroup; children = ( - 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */, + FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.xcconfig */, + 4D1585F3DBD498E2CC26B4A4E578ED4B /* EXWebBrowser-dummy.m */, + 80C0AF5D6909C059B1C4DEC7BB74C83C /* EXWebBrowser-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/Firebase"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; - AE9EB5B85F1091989BD314D5A6119C63 /* Core */ = { + AE43448F0C94E65C7C200A838A5A94BF /* Support Files */ = { isa = PBXGroup; children = ( - BD24B145506E1127F2FF58B09C6C4B37 /* Base */, - 112ECD25C50440BE55584D116C6F963E /* Modules */, - F2456FD6F4AEA947639140FFBA9B2BCE /* Profiler */, - 66BFBA5DEDF91FFEEF3A3E5E3612311A /* UIUtils */, - DF15288AD51D338A779A550BB3D57196 /* Views */, + 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */, ); - name = Core; + name = "Support Files"; + path = "../Target Support Files/Firebase"; sourceTree = ""; }; AEB16DD2FFE0E872D636B036A171C005 /* Targets Support Files */ = { @@ -4928,26 +5155,6 @@ name = "Targets Support Files"; sourceTree = ""; }; - B028CD8D69DB378C25F6993376C89CD8 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 5546DF6BCFF5A704D8926DB6A63F14C9 /* RCTVirtualTextShadowView.h */, - 1C20DB8F540F0DE1E287FBDF42C511B3 /* RCTVirtualTextShadowView.m */, - 5EB824662B96430D9F3985A44463BBB5 /* RCTVirtualTextViewManager.h */, - 52DA011A6498E4ED329FDA6D3280D6C9 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - B031D630328185948B8ADF0AC7BD852F /* Pod */ = { - isa = PBXGroup; - children = ( - 7B4D8363B4538E5C1E0312815D2E0D7A /* UMCameraInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; B0B14F0A7B74B461C5E79F8A35BA225B /* Support Files */ = { isa = PBXGroup; children = ( @@ -4957,157 +5164,80 @@ path = "../Target Support Files/FirebaseABTesting"; sourceTree = ""; }; - B0E3059430D7C1F6A99AB92404255C55 /* Services */ = { - isa = PBXGroup; - children = ( - EA72BAE9DCE7B0F825FD4F5284EF2415 /* UMLogManager.h */, - 30128AD1F92F2F61768C2C4FE2D2BB6A /* UMLogManager.m */, - ); - name = Services; - path = UMCore/Services; - sourceTree = ""; - }; - B574C04C964C5653A5CC1992ADC30FE4 /* EXWebBrowser */ = { + B66FE2D9D5D56986EF5EED0979CFF82D /* RCTText */ = { isa = PBXGroup; children = ( - 49558810BBAB8699A2EE7BEEE87EBFDF /* EXWebBrowser.h */, - 93F58CDD8D236758FC6A6A338F22F58B /* EXWebBrowser.m */, - 6A5EE0DE1C0151B49593325BC9F8A81E /* Pod */, - DD361E7A17740E51016AE0A9D9507BE2 /* Support Files */, + 4F0CEEE398FCB4324B7D7501713141C8 /* RCTConvert+Text.h */, + 23AC3E213F817BFBB129A2E6F5E724D3 /* RCTConvert+Text.m */, + 48648007DB5D889DCB4B583D1115E291 /* RCTTextAttributes.h */, + AC6AD7DDF2713E52608C1F3F5ABACCBC /* RCTTextAttributes.m */, + 912753E2D0875DC4EE06B774F7703BD5 /* RCTTextTransform.h */, + 756893E803E691282EE3E1F4846862E6 /* BaseText */, + D3BF7304331841C258FD0A210CBE3A36 /* RawText */, + 856F45E0C33F23EDE283657A359BD0D4 /* Text */, + B913C4948171D28426A5C352E5059E00 /* TextInput */, + E3D098390DCFEB0600E967C87526F596 /* VirtualText */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = RCTText; sourceTree = ""; }; - B61287017BC9F7BF50AD98E4755A29EB /* Support Files */ = { + B7CB9BD5D292E1470CE452C1215D2996 /* Support Files */ = { isa = PBXGroup; children = ( - 199B4A5A6EAA07BC42A3B2AE3753F7F3 /* UMImageLoaderInterface.xcconfig */, + 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; sourceTree = ""; }; - B62841CEDCAE7DBA277F621D528F129A /* UMTaskManagerInterface */ = { - isa = PBXGroup; - children = ( - 173B1E8BDA805C8C633B709193D60718 /* UMTaskConsumerInterface.h */, - 978390022A2F83D331C13A99E2423439 /* UMTaskInterface.h */, - 3B15F4E140B029FCE4C4A39A3C7F7B24 /* UMTaskLaunchReason.h */, - 204F9986ABC8D5FF9CEE24912256F6D4 /* UMTaskManagerInterface.h */, - 6CEEED1B3C1D4D55294DF073F65F93AF /* UMTaskServiceInterface.h */, - 36A91DA981E988A486E4D22048A3C679 /* Pod */, - 44456A3ABD61EDD3E6241CC8A71BDC8D /* Support Files */, + B913C4948171D28426A5C352E5059E00 /* TextInput */ = { + isa = PBXGroup; + children = ( + 2DD17ED321FE78AEB6B9C3E860ABDC60 /* RCTBackedTextInputDelegate.h */, + 6A76D27782425AD5DAD5BA0BED7F79C0 /* RCTBackedTextInputDelegateAdapter.h */, + 84472B441282C35F5CF14DE357588B5A /* RCTBackedTextInputDelegateAdapter.m */, + 4CEA4213CE111A3FFBA957B4ADFF9691 /* RCTBackedTextInputViewProtocol.h */, + C184B9272F88416466ECBFA3455F21A5 /* RCTBaseTextInputShadowView.h */, + DF278BF9B2BD2A98B410B6211E2C0AB2 /* RCTBaseTextInputShadowView.m */, + 609CD3EE7641A665610E5B86E7AE5824 /* RCTBaseTextInputView.h */, + 49325372FA42CFCB032570E0EE5D956D /* RCTBaseTextInputView.m */, + E523F08DDF628983B8080538442746D3 /* RCTBaseTextInputViewManager.h */, + BC2BC32A70E8C58B0118B80ECEC6814E /* RCTBaseTextInputViewManager.m */, + 75EFAE6EC8D3C3E7B409AB2CA58A9748 /* RCTInputAccessoryShadowView.h */, + A51B04FCA414B4C97A67491705EB9543 /* RCTInputAccessoryShadowView.m */, + BA4F6AA699A11800E2DCCCCD501F455B /* RCTInputAccessoryView.h */, + 32BD306560C8AC22487DFFB84B4CD410 /* RCTInputAccessoryView.m */, + DEB63BB149F828635F4B61AB9C206E4B /* RCTInputAccessoryViewContent.h */, + 650C9B79996B2911D7727E15751018CA /* RCTInputAccessoryViewContent.m */, + 11D5F1D927DE1E7AED7DFA104A6B583F /* RCTInputAccessoryViewManager.h */, + BF961443ACA833C7A8B4F74EE8EF6D18 /* RCTInputAccessoryViewManager.m */, + 974BE557BF05C01EA45A5AC245DE0BCA /* RCTTextSelection.h */, + C634F322B5B1194698FD4B9E675776D2 /* RCTTextSelection.m */, + 81FC486351113FBA945A6922FD7EC122 /* Multiline */, + 30570BA9A5B9617BDE745792C4DF80E1 /* Singleline */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; - B9AE254BBC6CB8D8F29C594C8022479D /* UMPermissionsInterface */ = { + B9DCA5B9DDC21DE5BF05F534C9122E39 /* Support Files */ = { isa = PBXGroup; children = ( - 77014D59ACDC0DA0644566364E0FDEA2 /* UMPermissionsInterface.h */, - 8C2CE8F7ED8E0336A7E64638122BF88B /* UMUserNotificationCenterProxyInterface.h */, - 0751D23446CC0E76C590D236CB41016A /* Pod */, - D0327E56D62F422AC3E1F4AFC7EC6FE8 /* Support Files */, + 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; sourceTree = ""; }; - B9D180699F777B3DD32174EC4AE8BE51 /* UMReactNativeAdapter */ = { + BD7A275A291D35CC906711758BA70A49 /* Support Files */ = { isa = PBXGroup; children = ( - A84ABCF81827C11478853B3910F5194E /* UMBridgeModule.h */, - 5DD108AC52107721173B6AEDC9AF408B /* Pod */, - 08BB1022FA5F84B5BC1136C9300E9144 /* Services */, - C70C54D92D0C4B49D37F8AF67D86BACC /* Support Files */, - 05949E9ABF3C56B95EC2EC65715D5FA1 /* UMModuleRegistryAdapter */, - D50B8E9279B4BDE3A6545FB9453D6BC9 /* UMNativeModulesProxy */, - 1CC339D3890D0622EF9F2A291BFD2703 /* UMViewManagerAdapter */, + B75EA0185E2AF3117759FBC14CB029A4 /* RNImageCropPicker.xcconfig */, + 8CBF6882D2CD8EB544E3926B8B901B14 /* RNImageCropPicker-dummy.m */, + F4896AA3946A7938DBBB7FE360514320 /* RNImageCropPicker-prefix.pch */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; - sourceTree = ""; - }; - BD24B145506E1127F2FF58B09C6C4B37 /* Base */ = { - isa = PBXGroup; - children = ( - EAA6F4883A6AA37EBD09BFCA2D4A1675 /* RCTAssert.h */, - 72D37308895834ACFB240C944C5529E4 /* RCTAssert.m */, - 7FF36E094B3206FD9E1929A1CEFD8CE9 /* RCTBridge.h */, - 6D833940F8920FEFC2F9755D26B57431 /* RCTBridge.m */, - 2278509D63EC03D3EB39AE7D2E917B4B /* RCTBridge+Private.h */, - ED0FCD69F9262182893FEC3E00B60171 /* RCTBridgeDelegate.h */, - B524166A15E31047C633873F400233A6 /* RCTBridgeMethod.h */, - BBB0B8DA3821E1A9750ABE038A452CC8 /* RCTBridgeModule.h */, - F2EBD9734DF2589EA00AD74D40AF8768 /* RCTBundleURLProvider.h */, - 62F12B6E030D7694A9B111AC8B39775C /* RCTBundleURLProvider.m */, - FC574B18DDB04F0449F0E979A165B698 /* RCTConvert.h */, - 5EEA56166E7C07EEC7370B8725649E6C /* RCTConvert.m */, - 5EF04BCCFDCDFF5ADA0332DB0BB7D116 /* RCTCxxConvert.h */, - 69FACA81757661BC273C0B8866EB8A3B /* RCTCxxConvert.m */, - 5C475BFC3B887DDC14B0FBBB399E513C /* RCTDefines.h */, - E1171DD1432FD0F299EB5059562989EF /* RCTDisplayLink.h */, - 0E67E298AEACB8E5074B461F7DC07845 /* RCTDisplayLink.m */, - E444405F8A453E1C5179F25D2D6F5BEA /* RCTErrorCustomizer.h */, - D219A6FE7FDCE452F423179AFACA02FA /* RCTErrorInfo.h */, - 82A674770293735DCCF21931B8F94DF9 /* RCTErrorInfo.m */, - F9137451169C7FD8BEF521224C07D2CE /* RCTEventDispatcher.h */, - 3ECA18BEEA9F8B293CF06EDA0BBB24D9 /* RCTEventDispatcher.m */, - 12014BDB3AA1F3822AC982F4B7C62C30 /* RCTFrameUpdate.h */, - A187B2344C4B7E82C0B6930EE519BDD2 /* RCTFrameUpdate.m */, - 85CF6912090E16A13ED64D1321CECBE3 /* RCTImageSource.h */, - 169448B9D184FAF212440E6AEEFFCCF5 /* RCTImageSource.m */, - 25DD481FF87F035BD9DF908A1B96A7AC /* RCTInvalidating.h */, - FBFFED404EBB6D354D8E7CCAC09ED2E9 /* RCTJavaScriptExecutor.h */, - E9D48577A3CF7AE21A4CDB2012BD0E88 /* RCTJavaScriptLoader.h */, - DA90D03582396366D4029AC853D66F87 /* RCTJavaScriptLoader.mm */, - 8BBFB413A335025D44687456F8223446 /* RCTJSStackFrame.h */, - 137CCACFE2EA67A4717A2D35BDD1F25A /* RCTJSStackFrame.m */, - 0F6857C1E851EA0D79A81C7C0DE61524 /* RCTKeyCommands.h */, - 5ED162C6C56D002AE0D7E5F1C0458B6C /* RCTKeyCommands.m */, - FAAC84A24A9DEBA25FCCD07626D74695 /* RCTLog.h */, - CBF342C21D1191233475D0CDEB4D4FFB /* RCTLog.mm */, - B1531C8B373FD43A2AB63ADB0C848BC4 /* RCTManagedPointer.h */, - 23C5A22806CE71CDBCC9D7C2BAC7046D /* RCTManagedPointer.mm */, - EDC0EB7A0397286B233059D213BDA771 /* RCTModuleData.h */, - 76E763C0DBDE2C6F426B5929C911DEEF /* RCTModuleData.mm */, - 8C44AFB5809B6A54B1BC18AFD46C8D70 /* RCTModuleMethod.h */, - 9A035B7338F976352AC53889764F18A7 /* RCTModuleMethod.mm */, - 19EC831241BDF795AD30A06916E78BDE /* RCTMultipartDataTask.h */, - 0C27D8DA58AD5C2BF9C61F7BF90C5184 /* RCTMultipartDataTask.m */, - BDEE10DFD9E888913374365135D85559 /* RCTMultipartStreamReader.h */, - DF6DA85A79597724B60726D4AC495E69 /* RCTMultipartStreamReader.m */, - FFEE5088E980FBFA770B1A9B2E7FC449 /* RCTNullability.h */, - 7F0E932D0FA96BEF1B73F2CF932F6B7A /* RCTParserUtils.h */, - 95241965EBFF9DCBC60990E0B37A7A49 /* RCTParserUtils.m */, - 558AD0D4B08ADCC47995EE4500B65D87 /* RCTPerformanceLogger.h */, - EA6F84ECE50E6CB44A36D6EB6505D192 /* RCTPerformanceLogger.m */, - 8AD981E81D92FB1B44C2323435A00D30 /* RCTPlatform.h */, - A7A536CFCBF8421A7277C280F871B237 /* RCTPlatform.m */, - 432DAF725631C71B41E144DC2B5684B3 /* RCTReloadCommand.h */, - B50341D043E231FCCC00D97549F1218D /* RCTReloadCommand.m */, - 097F561A080EF4F83C49493AF0BD71A7 /* RCTRootContentView.h */, - E969EB55276ECC1C1D740C6D0D65D8BF /* RCTRootContentView.m */, - E479A0E7A79C4DE6A6D79DAF3EF13420 /* RCTRootView.h */, - 683B8DF13FF50A85558EDED661C1ECD8 /* RCTRootView.m */, - 1DE4B51719C8796AC7C15A327100306E /* RCTRootViewDelegate.h */, - F4EC22BFC49E285B185B9816D8C3A74E /* RCTRootViewInternal.h */, - D4D5E2E939FBA0DAC26221204262124E /* RCTTouchEvent.h */, - 0BD3AC289671F101C3372A5C718278F6 /* RCTTouchEvent.m */, - B0225C26CB369A4380DDA906A552F203 /* RCTTouchHandler.h */, - B56B3A44C510186F5BF7755DCE663518 /* RCTTouchHandler.m */, - 2E94F449338AD8BC60E22FBA0D29737D /* RCTURLRequestDelegate.h */, - 89E05876F5441C88AA71DE839D0DA604 /* RCTURLRequestHandler.h */, - 4F93B070B93F0B36E69C2FDFC7E91FDF /* RCTUtils.h */, - B0722637AF18C73AC676306255001156 /* RCTUtils.m */, - B3E037C57F3F35255E226DAFB250B594 /* RCTVersion.h */, - 91CFA1FE6CD4AF820B1DCF809EC664EF /* RCTVersion.m */, - 94ED16838B3D55F987F5BDD91EC7686C /* Surface */, - ); - name = Base; - path = React/Base; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; BDA7536C8CAC72B07ED9CF717C00A9BB /* GTMSessionFetcher */ = { @@ -5120,6 +5250,17 @@ path = GTMSessionFetcher; sourceTree = ""; }; + BDDCC3D73E8F01DE84567069080D11FB /* Support Files */ = { + isa = PBXGroup; + children = ( + 3092B739FF8B55E5918F75BCA4D731B5 /* React.xcconfig */, + BD4CD5A896E6109E00F737BD56115439 /* React-dummy.m */, + AC77E414040E9372625BC656B3DDECBD /* React-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; BE0EDBFC60467C5FBEA82D877212D9EF /* Defines */ = { isa = PBXGroup; children = ( @@ -5160,24 +5301,16 @@ path = "../Target Support Files/Protobuf"; sourceTree = ""; }; - C001EDEED5494B9E26EBB98DDA116614 /* RawText */ = { + C0E6D6C2C62D91205AF43F6F4E8BB0DA /* react-native-realm-path */ = { isa = PBXGroup; children = ( - 57222B5759241C74A270E60C1E7D8A52 /* RCTRawTextShadowView.h */, - B7D4FA08BA17EB3DD1108F7A2C867DBB /* RCTRawTextShadowView.m */, - EBD1CF84C71E23808DF7D71001809E5C /* RCTRawTextViewManager.h */, - 810E7C3931779CC0C65318B4AB4B2E91 /* RCTRawTextViewManager.m */, + BF0D6215F452EBB171927DB6516893D0 /* RNRealmPath.h */, + 7638DC17BC0135744115C99E36911C9A /* RNRealmPath.m */, + CFDD29C5900452442337C5676E044D5E /* Pod */, + 91D883758E0A2F96FF4100CE12DCC470 /* Support Files */, ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - C0DDC810ECA45175A926D430E20BB7DC /* Pod */ = { - isa = PBXGroup; - children = ( - B1E87CED16B0C0F946984DCC680BE70A /* yoga.podspec */, - ); - name = Pod; + name = "react-native-realm-path"; + path = "../../node_modules/react-native-realm-path"; sourceTree = ""; }; C0F1D135B699391FEBEF59BA679DA149 /* Support Files */ = { @@ -5192,26 +5325,6 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; - C1BC38186BECC9AE021FF32349FF41D7 /* Support Files */ = { - isa = PBXGroup; - children = ( - AB1A698F1F907582A61B5BB2DA65FA5F /* react-native-orientation-locker.xcconfig */, - 7136EB85F7AC91B8D3274ABB7F1255F1 /* react-native-orientation-locker-dummy.m */, - 854387C25E29B288FDA7D634B6115390 /* react-native-orientation-locker-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; - sourceTree = ""; - }; - C1FB311D87E3BF304E51A41F40615EF7 /* RCTVibration */ = { - isa = PBXGroup; - children = ( - 00E3A268F0A7B1393A5344E0B5030763 /* RCTVibration.h */, - 73CDE3A149000C4FFAE8FB3211227596 /* RCTVibration.m */, - ); - name = RCTVibration; - sourceTree = ""; - }; C2B611C5AD48E2DCE0FA32B005821A1D /* GoogleUtilities */ = { isa = PBXGroup; children = ( @@ -5230,14 +5343,15 @@ path = GoogleUtilities; sourceTree = ""; }; - C34AB18B11318383198EC8A5CEFF2FA4 /* Pod */ = { + C53D7019E356E0128C2877974ECC47D5 /* Support Files */ = { isa = PBXGroup; children = ( - 2DBAE17D64C09703886656F65D96BA5D /* LICENSE.md */, - 41196DB3E7DD1FEA9F8F2D0D1E80351D /* react-native-document-picker.podspec */, - CB47B2E4CD4F69C14088C3C8261F8D2A /* README.md */, + 414FA7C11012362AA14838182726322C /* UMCore.xcconfig */, + 1A8840AD3D979C04E9B8B92AC953EF52 /* UMCore-dummy.m */, + B51F5B876AEBAF3A595B278DA5E436AF /* UMCore-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; C5600A66407EAFEEAFE44D7950601953 /* Frameworks */ = { @@ -5248,78 +5362,78 @@ name = Frameworks; sourceTree = ""; }; - C70C54D92D0C4B49D37F8AF67D86BACC /* Support Files */ = { + CA8287CD74F1DA185E01D170FD6D4975 /* RCTSettings */ = { isa = PBXGroup; children = ( - B6B8CD52B030C2154E76262528A31E91 /* UMReactNativeAdapter.xcconfig */, - C4D32FC7C50BDE68EA71A2490A288F9E /* UMReactNativeAdapter-dummy.m */, - 7BF0F330A89DEBA38B6F8D0E7FB02C36 /* UMReactNativeAdapter-prefix.pch */, + 11DD4667BC4267907910403D06B14E14 /* RCTSettingsManager.h */, + 9320F2831D03A239E1DE1943255F75C9 /* RCTSettingsManager.m */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + name = RCTSettings; sourceTree = ""; }; - C7B7AE6D3CFD172829603C58A6FB4F90 /* UMFileSystemInterface */ = { + CB2C372FB027ECE8D944BB55DB8F82EB /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - B54A0ED7D35D2D68CE0CCFA2E8FD0F04 /* UMFilePermissionModuleInterface.h */, - 82430EC7AE53BC00EED3F4C128826589 /* UMFileSystemInterface.h */, - 7D55623E2C9EE8C6DD65128136275D07 /* Pod */, - E44405E7CBB90A6C932232BAD51DA900 /* Support Files */, + D5C5618AAECC011C23975CAD363216A5 /* UMViewManagerAdapter.h */, + 2FB035AD0A1082098738AB35D89417EB /* UMViewManagerAdapter.m */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; + sourceTree = ""; + }; + CD05FDDA92FE9A9853FD157BF128E67A /* Pod */ = { + isa = PBXGroup; + children = ( + 97B2E5BC9888896528CF9FBC3B917D22 /* EXHaptics.podspec */, + ); + name = Pod; sourceTree = ""; }; - C843E065DBD13A48AE40731A319BA9EB /* Support Files */ = { + CEB949F417EDD257837365D0995D69E7 /* Support Files */ = { isa = PBXGroup; children = ( - AC7DA52B8283A3B3FE7B47F1373A2F40 /* react-native-splash-screen.xcconfig */, - 78580B2EA769E5719AC6539110DD72A6 /* react-native-splash-screen-dummy.m */, - AD666BC9C0B36DBEF9D2AEEB3E7636C3 /* react-native-splash-screen-prefix.pch */, + FE9149882F1AA0961340D16718BBD529 /* EXPermissions.xcconfig */, + 21EAE7CAD827EAFB28F5AE9B36F0FF4D /* EXPermissions-dummy.m */, + FF65769C4516554E9EAFE1DE4843AB65 /* EXPermissions-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 27CACCAFE57C9E2DD2A20636A9578268 /* Development Pods */, + 5D960600974426BAAB9E2D3E2F802DB8 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 4FC37C41F11924A2602F786314152701 /* Pods */, - A5972B97DEFFA9B251EE3E5699796075 /* Products */, + 50FCEB63D541A827419E20E05EFA6AF5 /* Products */, AEB16DD2FFE0E872D636B036A171C005 /* Targets Support Files */, ); sourceTree = ""; }; - CFEDC51487C0B50AEACDBD99A7A2F3D3 /* Pod */ = { + CFDD29C5900452442337C5676E044D5E /* Pod */ = { isa = PBXGroup; children = ( - A0F4BB766E014EA0B25EEC095669992B /* LICENSE */, - 28B25E27C1852D007CFAABB8996774C1 /* react-native-orientation-locker.podspec */, - CB5E9B7A2B85905275411C9BDCF4151E /* README.md */, + 88F453818BB1844235CE2A13AC131340 /* react-native-realm-path.podspec */, + F2C876D08005460E640E6D01B6D36D7F /* README.md */, ); name = Pod; sourceTree = ""; }; - D0327E56D62F422AC3E1F4AFC7EC6FE8 /* Support Files */ = { - isa = PBXGroup; - children = ( - BB0FFA8C156FB7FA3BE165E37BDE50DE /* UMPermissionsInterface.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; - sourceTree = ""; - }; - D1F6AB5F98CB4D4A6336716386C5706F /* Support Files */ = { + D0EBC53065BCC20D5A814EAE43158E76 /* RCTAnimation */ = { isa = PBXGroup; children = ( - 7B08E6A94A4A0FD50688F4902280F237 /* UMConstantsInterface.xcconfig */, + FB956F4A9C08F6F93A75AE1ABC309ABB /* RCTAnimationUtils.h */, + 1380B4BF8CCD34CA33D07647571586E9 /* RCTAnimationUtils.m */, + 8C20E67D7573E2DE9D81AD21224F0D17 /* RCTNativeAnimatedModule.h */, + 4C5F47A618BFB61C3AAEB520EF104221 /* RCTNativeAnimatedModule.m */, + C242F16BEB2FD8D92838B66BC4FA2A15 /* RCTNativeAnimatedNodesManager.h */, + 187A9643A4FF2215A9801B19750A5136 /* RCTNativeAnimatedNodesManager.m */, + 9EFD0C170B94B3CD938198C4BD6FB1EC /* Drivers */, + 75D0283661CAFF4749D81968846D67AA /* Nodes */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = RCTAnimation; sourceTree = ""; }; D2EF23320DAD5A5B1FC7AF07287026CF /* Support Files */ = { @@ -5333,25 +5447,71 @@ path = "../Target Support Files/nanopb"; sourceTree = ""; }; - D49AEAAD88A9C484737B56E9EC12C2BB /* Support Files */ = { + D2FFB40B538C838430F364498F00361E /* Profiler */ = { + isa = PBXGroup; + children = ( + 6F9FA40FA2690D8853B98D5C27140E51 /* RCTFPSGraph.h */, + 6415DBDE7710F559C63ADE08CDD27AD9 /* RCTFPSGraph.m */, + 8A2E40F452FB8A303D42644FC71F2FE2 /* RCTMacros.h */, + 754584A37D6E703EFC54974BFEB329AB /* RCTPerfMonitor.m */, + 911689A99D32EBC2D7F00943ABD80B7A /* RCTProfile.h */, + BAA18BAF646B573A7E457656A169C4D0 /* RCTProfile.m */, + B3A371FC7AA74A93B445B8B856086B1B /* RCTProfileTrampoline-arm.S */, + 3D4A5ED1F22FFC6129C028A8EA210C70 /* RCTProfileTrampoline-arm64.S */, + 2D7471BCD2ECF20F29D8176DDD92B31F /* RCTProfileTrampoline-i386.S */, + 3115E225B4717F08CE910FDCA31ADBB4 /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + D3BF7304331841C258FD0A210CBE3A36 /* RawText */ = { isa = PBXGroup; children = ( - E28F798E1880FEE8914722ED5DF671E4 /* RNImageCropPicker.xcconfig */, - 85ECBDA0D5A54747860558630B334966 /* RNImageCropPicker-dummy.m */, - C326D10CC8BB4652156F9BBC9818D5A0 /* RNImageCropPicker-prefix.pch */, + BF22632E02A2510E93437480FB39165C /* RCTRawTextShadowView.h */, + B02DF5B8A78FACB9F05C5AD4E33CF9A4 /* RCTRawTextShadowView.m */, + 17A2F616744B6BC684017693ABE836D2 /* RCTRawTextViewManager.h */, + EAEAD074F444D3A0470FD94B5DECA4BA /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = Libraries/Text/RawText; + sourceTree = ""; + }; + D42072FF497AEB782348FCE23E435986 /* Support Files */ = { + isa = PBXGroup; + children = ( + 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.xcconfig */, + 4E8B52E9B563C153A19B4C1DC383D066 /* EXAppLoaderProvider-dummy.m */, + FD08E8618ED304A352AB5216DECCAE0D /* EXAppLoaderProvider-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - D50B8E9279B4BDE3A6545FB9453D6BC9 /* UMNativeModulesProxy */ = { + D4A13B0CAEE1DB1F010BC4B287E8C656 /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - 631C115D4AF9B7C483665463DD5BE381 /* UMNativeModulesProxy.h */, - E1952A09E2894541F6A27C80F531DF4B /* UMNativeModulesProxy.m */, + A43C48DF187C61578AD91D65C4C18669 /* UMTaskConsumerInterface.h */, + 48E433A0F3B7D0107DECD2C91E923DB8 /* UMTaskInterface.h */, + 8653D710F71F2EE6EC65A3CC532DDE9B /* UMTaskLaunchReason.h */, + E279D903900E6598EFE62B1DE65A8AF0 /* UMTaskManagerInterface.h */, + 8DCF7F24E3C0D706CDD65EEA2A64A531 /* UMTaskServiceInterface.h */, + 0056AB3FABE2E0650C6BCE190DE87F72 /* Pod */, + 5F631F306FEC17890D0D0ADAB1E286FC /* Support Files */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; + sourceTree = ""; + }; + D4B8FE515FAFB1AA71B9D18311251DAA /* Support Files */ = { + isa = PBXGroup; + children = ( + CA93B2399BF1EC6C34D29DF06D6D07B0 /* UMReactNativeAdapter.xcconfig */, + 3E57DE0F9750DAFB7CADB3C4AB1E7DA3 /* UMReactNativeAdapter-dummy.m */, + 2981123EB018D4B9FC45C89CC14FD7A2 /* UMReactNativeAdapter-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; D5508FF389A7D2254703F631B15372D7 /* AppDelegateSwizzler */ = { @@ -5372,15 +5532,14 @@ name = Frameworks; sourceTree = ""; }; - D91643C8876E81DED2F3CC1722684296 /* Support Files */ = { + DB049F46A0736A0FE7E5DEAFB9BB15EE /* UMNativeModulesProxy */ = { isa = PBXGroup; children = ( - 74A3D7002BB70B85072A55666993838E /* React.xcconfig */, - F5FE6C53C2CD521EE36D83BC66B3E4AD /* React-dummy.m */, - 49162A0F4C1EFEB1FEFDB82BEE94A4D5 /* React-prefix.pch */, + 4640543A95B5F61A4FAD8B3565DBE649 /* UMNativeModulesProxy.h */, + 7F78FB9CC8979A1A1AE3B1411E72676C /* UMNativeModulesProxy.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; sourceTree = ""; }; DBF9E90458D7771B29E68C1BF57964E9 /* Frameworks */ = { @@ -5391,17 +5550,6 @@ name = Frameworks; sourceTree = ""; }; - DD361E7A17740E51016AE0A9D9507BE2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0A8BE2F8329E1435E42FF893A2A90DC7 /* EXWebBrowser.xcconfig */, - 720498850107B645922F11A5B0E2CFA1 /* EXWebBrowser-dummy.m */, - 264195E086498FDC318ED443955050EC /* EXWebBrowser-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; - sourceTree = ""; - }; DD591479119B3DE826BD0739A257DAE4 /* Support Files */ = { isa = PBXGroup; children = ( @@ -5411,115 +5559,6 @@ path = "../Target Support Files/FirebaseRemoteConfig"; sourceTree = ""; }; - DF15288AD51D338A779A550BB3D57196 /* Views */ = { - isa = PBXGroup; - children = ( - 9D02C8071061094DBE1C439DE8EF2D42 /* RCTActivityIndicatorView.h */, - 8A83072FB2845958C01431C8E0EAFE69 /* RCTActivityIndicatorView.m */, - 789B69C1A0EB8EDBE5975FBE095A1454 /* RCTActivityIndicatorViewManager.h */, - 0DFAC29252B21394064D91B05B3C963E /* RCTActivityIndicatorViewManager.m */, - E52B45BCB7BADE11FD10AB481E916EC4 /* RCTAnimationType.h */, - 45F093FC377E912E2505F8298225239B /* RCTAutoInsetsProtocol.h */, - F2712E4BEFFE0E3B550C67A8128BCDFE /* RCTBorderDrawing.h */, - BD29E7D4439BB20132BDF354C6AB4F9B /* RCTBorderDrawing.m */, - 6932A6007E15B7DD1307D9723BEF9CD6 /* RCTBorderStyle.h */, - 184C50745E62B39FD0170281B7CD4E78 /* RCTComponent.h */, - C34888712C959DB924439E1DB40DF930 /* RCTComponentData.h */, - 0961D9913096F5A69A58E87F83C5974C /* RCTComponentData.m */, - 691EF9B1D06BA19043426138C3BC30A5 /* RCTConvert+CoreLocation.h */, - 5F2897BE7F6FD75D116BAD4A13ED3B4F /* RCTConvert+CoreLocation.m */, - FA47E6B4299F4D1FDB5BC4E876B50B60 /* RCTConvert+Transform.h */, - 77ACC020FF8B898688AF7C6AE4B6F72A /* RCTConvert+Transform.m */, - 0B24E69D23DD4AF0D80DA29CBD5BA30E /* RCTDatePicker.h */, - FE5506A7A9C9BAF4D7D96C7AF6BAA8B5 /* RCTDatePicker.m */, - 3772F0901A9CE2E034F09E7889F7F1ED /* RCTDatePickerManager.h */, - 17E93F44B9FCA03306656D60A8112F2C /* RCTDatePickerManager.m */, - AF1DFFC090D2057B52EFC9B01266B1CE /* RCTFont.h */, - FD08E7202AE94673FC4554C68C8E4243 /* RCTFont.mm */, - 28941FC5CF0B76D777F4C836E1384EDC /* RCTLayout.h */, - D21A418DDB434B8860E77EB8D16F8BCE /* RCTLayout.m */, - 3A981B06E9EB8B729CB585B76106314B /* RCTMaskedView.h */, - 3BC225C69062F456E3881450915A525A /* RCTMaskedView.m */, - 314B599D37DCA06E72B527C47C69E89E /* RCTMaskedViewManager.h */, - 8C6387A4B18B49FF9C74F0822CC2DE41 /* RCTMaskedViewManager.m */, - 96B4568AABB0A0DCCDCB27BD9357BD0D /* RCTModalHostView.h */, - B6C4E79A93E2D4046255A322DC424F49 /* RCTModalHostView.m */, - ACF00BBB8C1D576323011AB3CB76E037 /* RCTModalHostViewController.h */, - A39CC4822E1942E0052A57F3188BCAB8 /* RCTModalHostViewController.m */, - CFC674F98E78B381D00C36DFC6485B31 /* RCTModalHostViewManager.h */, - 81C3ED587F3B76B9BEDE35D5AEEBA127 /* RCTModalHostViewManager.m */, - 7AF620008478D4265C85C5E1B7BE9354 /* RCTModalManager.h */, - 718248C8BBBB282FA10ADBB2655DB985 /* RCTModalManager.m */, - 7DE6EFDCE22A04176A1F60DC016D73A8 /* RCTPicker.h */, - D7510AFF0DF4CDDCC0CBF123C84BC498 /* RCTPicker.m */, - BE5ED1FA7A6DF84E2C13C5D2786FC55E /* RCTPickerManager.h */, - 404BA4400EBFEDAC8B7396B95013BE5E /* RCTPickerManager.m */, - 945CFD2602A0DAA2964815C8D4D40968 /* RCTPointerEvents.h */, - 9032CD125DB2A76C1673E807BFC4330B /* RCTProgressViewManager.h */, - E44B2A080118798FA1B533EA1FBB9F58 /* RCTProgressViewManager.m */, - A6F307FEA3E02654D646ED267ADEF411 /* RCTRefreshControl.h */, - 527DF256BC386FD438DAA5A629668677 /* RCTRefreshControl.m */, - 0CC4F8ABA7BF7865CE34ACAC84C08312 /* RCTRefreshControlManager.h */, - 99CA8CD51DD44873AD50DAEAB6D48398 /* RCTRefreshControlManager.m */, - 4FC96F0730C911C2CEE9C369BAA1957C /* RCTRootShadowView.h */, - D0A66BE25CB87A9D928A08357A99AB77 /* RCTRootShadowView.m */, - DD49326BABF411F554748CC15F0C6ECD /* RCTSegmentedControl.h */, - B8BA7D5C6A38953342B03643F030C661 /* RCTSegmentedControl.m */, - 2D8B2D16CCC45C0C4EE54F334BE7381F /* RCTSegmentedControlManager.h */, - F8FEA76A89DAF2C67C1F2466D86079B7 /* RCTSegmentedControlManager.m */, - 8D71ADC1943366768CAF060B81B0B0A8 /* RCTShadowView.h */, - 5DCECA80F7D53D276805666BD165645C /* RCTShadowView.m */, - D40F9334342EB374DF4A96A76B8849D1 /* RCTShadowView+Internal.h */, - 5F11E59D67421469713D624C045DE7CC /* RCTShadowView+Internal.m */, - CAD7A86F2B46CCE853F4F4841A0E3BDB /* RCTShadowView+Layout.h */, - 3F1B13F570F57C02BADE457AB62783B3 /* RCTShadowView+Layout.m */, - EF5752C6043B9C242A235113CB6A6555 /* RCTSlider.h */, - E24541B9D8B38248CCD79FD5EA770235 /* RCTSlider.m */, - 3D45135F223366E3283A556313AD3F8A /* RCTSliderManager.h */, - 6B4A4721B5CAF7955954A6E3ADFBACD3 /* RCTSliderManager.m */, - BA903C720831EC99CD5CD5B9986ADA89 /* RCTSwitch.h */, - 7CE016666AC050C85942B86100015D33 /* RCTSwitch.m */, - AAB6BAB836E4B29E4E19B4F75C143431 /* RCTSwitchManager.h */, - E89D007AB3CBDFDA7F750526E510553A /* RCTSwitchManager.m */, - BB10E3EB284652878179BF26DBE91CD6 /* RCTTextDecorationLineType.h */, - 84ACD5044B0AE6C7902F4463754F1435 /* RCTView.h */, - C05E390E94DD79E7AB641AC2CDFAD61F /* RCTView.m */, - A4DDCAA2CDCFDADF713026471040B9DE /* RCTViewManager.h */, - 679D70109CAFC796BA3B3332701D3898 /* RCTViewManager.m */, - 721D456B3E4013B1BB21C920B4B8B665 /* RCTWebView.h */, - B7D5ABD7134F6CFB450A8E556130E0FD /* RCTWebView.m */, - A396CA4C90D739B66B77C2175D4A5FF6 /* RCTWebViewManager.h */, - D6E9CE5D7D2D11DC4C433FB70E7B8FD0 /* RCTWebViewManager.m */, - C0EB6ED3CB1A76E38C2C144F9CB82D45 /* RCTWKWebView.h */, - E20624B9B9DEE620AFDCF75931CA1E68 /* RCTWKWebView.m */, - 7C24624E84BA77EA7194D9E0A211E313 /* RCTWKWebViewManager.h */, - 46C73FC4C6E049E87531CB97A53AB8B5 /* RCTWKWebViewManager.m */, - EC795F6020E10C5BB3DF2BFD35C1AB6D /* RCTWrapperViewController.h */, - 08AB8E3961620365C25C31C68AC9511D /* RCTWrapperViewController.m */, - D90B3725332A50C1EBE04B5035344BEC /* UIView+Private.h */, - 2758EB1A41D3F984AABC6C651A56A2A6 /* UIView+React.h */, - E93CFF752DC4E4F67103B8D8F6BFF4B1 /* UIView+React.m */, - 33CE423F9BFCA5DFA252179EA0AD5628 /* SafeAreaView */, - 972AB34879CFF6F85937198CE1CE1776 /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - E01C52FF9E3DD57492E35F8AA1F7174F /* RNScreens */ = { - isa = PBXGroup; - children = ( - 0EB4DFF23413897BD9364E3F9AB0C676 /* RNSScreen.h */, - BB7F05ACFDED4B1C47D58A51C148EC89 /* RNSScreen.m */, - FB8DC71E80789579B7B82D641052AE38 /* RNSScreenContainer.h */, - 2961A7EAACE11AE4FEA4B6801DB891C8 /* RNSScreenContainer.m */, - 4CE529A894E40D4F9EDE6ABC45094FD7 /* Pod */, - 9D104748E1B6A041602ED70867990376 /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; - sourceTree = ""; - }; E0532FB94575FED5D3154EFB3E5EA1F7 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -5528,90 +5567,76 @@ name = Frameworks; sourceTree = ""; }; - E117B5B93381CD4894CDED817B9B091B /* Pod */ = { - isa = PBXGroup; - children = ( - 7C26801B2EF1F03CCB4E9AE91ACC4346 /* LICENSE */, - 20F8E2DDAAE085262B9B0972E3FB40F9 /* React.podspec */, - C79F69EEAE07960B3C02B287A9483CEB /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - E26FDB96E909EAA73D005CECA51AC46D /* Multiline */ = { + E3D098390DCFEB0600E967C87526F596 /* VirtualText */ = { isa = PBXGroup; children = ( - 03909F2AA0C8E7BB8408C9AE797DD56F /* RCTMultilineTextInputView.h */, - 7CE38D1FB16DAD234E1C5A0E15A511CA /* RCTMultilineTextInputView.m */, - 22314AB86DE9277876E30B6F0636F25E /* RCTMultilineTextInputViewManager.h */, - 633A59BED92F90132D8F5CF8A112532E /* RCTMultilineTextInputViewManager.m */, - EED9E33CAD265A8572DDFDE61F946357 /* RCTUITextView.h */, - 7D73244E7FBBBB868E5027CC1F135827 /* RCTUITextView.m */, + CB1AFF08E59CD65DD957CFED13476C3D /* RCTVirtualTextShadowView.h */, + 282ACFD6A455FA55A484FDD34C4528EF /* RCTVirtualTextShadowView.m */, + DA50D6E0F3C463849AF3CD3B8CC5A56F /* RCTVirtualTextViewManager.h */, + DB50905479B83DD824B725CC00A8EE3B /* RCTVirtualTextViewManager.m */, ); - name = Multiline; - path = Multiline; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; - E44405E7CBB90A6C932232BAD51DA900 /* Support Files */ = { + E83CBED1565BA3C0020877FC37A994B8 /* Support Files */ = { isa = PBXGroup; children = ( - E7215EE1EA3893A6D751E761A1AEF679 /* UMFileSystemInterface.xcconfig */, + C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.xcconfig */, + 27FEA6A869170AA820CB26BB8E0159D7 /* EXFileSystem-dummy.m */, + 866696B215C8B61B1AA034E3DFE066D0 /* EXFileSystem-prefix.pch */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; - E66C9D368670CDEDB31D4E7BAB904BBC /* fishhook */ = { + E8E8565407739129590521B1A421C4F6 /* RCTActionSheet */ = { isa = PBXGroup; children = ( - 6E16EE4C9961CA3083C4F81E5FC9E601 /* fishhook.c */, - 29A166CB20882AB177F85A97B23EF50F /* fishhook.h */, + 6CA3557D2BF1F9B7BE7F1861AE5133F3 /* RCTActionSheetManager.h */, + D9C1466DA1D6A511BC82DF6DBC8A90C5 /* RCTActionSheetManager.m */, ); - name = fishhook; + name = RCTActionSheet; sourceTree = ""; }; - E7931271324792BE9AB065A6F9B4B399 /* RCTText */ = { + E9A4AA61CA9CED8388027AF5F72DA401 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 1DE37CAAC69BFC524C5C8A3CF4F6945E /* RCTConvert+Text.h */, - 2C984E6D585D4B0C2A0A6E7D370D0F93 /* RCTConvert+Text.m */, - D567CF138054BC718B9745FE8FDDABED /* RCTTextAttributes.h */, - 5274787BB9193393C5824E6F9B8E9BAD /* RCTTextAttributes.m */, - C4139E58AEF8C6EF66566D998457C959 /* RCTTextTransform.h */, - 1EB3F2BF1CDBCE8651805C961AFB0C0D /* BaseText */, - C001EDEED5494B9E26EBB98DDA116614 /* RawText */, - E9AD8D286FAB125D08ACD05F895CE746 /* Text */, - 4F46A62B1E10FC0D53E8EDD77B31637D /* TextInput */, - B028CD8D69DB378C25F6993376C89CD8 /* VirtualText */, + 79DE7B6B154816E6DCBE487BB67ED173 /* Compression.h */, + 53F619506865DE124BE5E05A073A03E4 /* Compression.m */, + E70EDE8E5C9FFEB42682E1C0370C5D02 /* ImageCropPicker.h */, + D281363BAC67A31CA84C0D3423EEE4B8 /* ImageCropPicker.m */, + 8A3E9EC6AE49276FB46E379ACFB5F75D /* UIImage+Resize.h */, + 2A54C07D3A48A04612B210D4F1D8A25A /* UIImage+Resize.m */, + 12A0356DED4D13A8ACB9C13E686B8463 /* Pod */, + BD7A275A291D35CC906711758BA70A49 /* Support Files */, ); - name = RCTText; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; - E94F0859125FAEB2A9D6E749BA7732E2 /* UMCameraInterface */ = { + EB3D48445B5B79ABE8262A584F760A94 /* Pod */ = { isa = PBXGroup; children = ( - FCE9BCF3DB4D92DFFBC5D12440AB2726 /* UMCameraInterface.h */, - B031D630328185948B8ADF0AC7BD852F /* Pod */, - 87121FFDF416EDEB051BFFEC2260CB20 /* Support Files */, + ACAA46AA6761EC3485F4A4A3B0B4272D /* UMCore.podspec */, ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; + name = Pod; sourceTree = ""; }; - E9AD8D286FAB125D08ACD05F895CE746 /* Text */ = { + EBD8152D142832DB584AEDFB57C2806E /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - C01423BEC8585B017F81D74C6A0C669E /* NSTextStorage+FontScaling.h */, - 0B9B9DE36058EF832D0A3401A5AE47C0 /* NSTextStorage+FontScaling.m */, - DE9052CE8CB2AFA586546E1957615639 /* RCTTextShadowView.h */, - 9B066F604AE03ED040A476A9EB44C9E5 /* RCTTextShadowView.m */, - E78C08BE222E1F6F060C713014937EA0 /* RCTTextView.h */, - F3377F9B521A1F252B4D09F2CEF8C5BA /* RCTTextView.m */, - 0D42D3A4251B548417CA7A6F3BD06B46 /* RCTTextViewManager.h */, - D029CC7ACA329E97B1238A0B99C17F46 /* RCTTextViewManager.m */, + 0DD1134109756DAD35968268519C1B15 /* UMAccelerometerInterface.h */, + 1E1EA1966105DB4145F63C6DE9046BE0 /* UMBarometerInterface.h */, + 416CD06C0FF93FB37E121FE9CE0F9BE9 /* UMDeviceMotionInterface.h */, + 04F0555FCF506F5E11894DA9ED4CCF0A /* UMGyroscopeInterface.h */, + 535FFD5DA2DE0A19D6DA6A93C9FB9046 /* UMMagnetometerInterface.h */, + 6DCC7DE2986DBBEA049611130B984DB8 /* UMMagnetometerUncalibratedInterface.h */, + 539CF61882E45282259F6672A57E6A72 /* Pod */, + 1A434263C054BEB5669E4D1ACB5EE187 /* Support Files */, ); - name = Text; - path = Libraries/Text/Text; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; EC1D43D3456DEC6DFC924F6B5ECE8CEA /* Resources */ = { @@ -5635,30 +5660,24 @@ name = Resources; sourceTree = ""; }; - EFF0FA5B39551C4C99A96964D9C691A6 /* Pod */ = { - isa = PBXGroup; - children = ( - 2B995A7F6B28BDB8D7F8C34FF59F4A49 /* UMFaceDetectorInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - F2456FD6F4AEA947639140FFBA9B2BCE /* Profiler */ = { + F01C339A2AC1EFE3C66C04D6BCFA2FF0 /* react-native-webview */ = { isa = PBXGroup; children = ( - B29E1A9550FCD5D06067133EE433CDB6 /* RCTFPSGraph.h */, - AEA021FA18AEE8BD89AEED4626D3E25E /* RCTFPSGraph.m */, - DF35460B13304683494990FEB561DC9B /* RCTMacros.h */, - 1ACA7C99B140EE5C9C6BDCC0C0940463 /* RCTPerfMonitor.m */, - D432BF4E7A31C977E7F69909E19A35A6 /* RCTProfile.h */, - 7390ED5FA4633A08C3A3626D0C0FFDBB /* RCTProfile.m */, - F07BA4FF938CC7645B39FFDEDCBBED08 /* RCTProfileTrampoline-arm.S */, - 69D9DE89267DD3C5E5651CDA56232E31 /* RCTProfileTrampoline-arm64.S */, - E93E2B618DCF7F281DA751F7C78DBF4E /* RCTProfileTrampoline-i386.S */, - DF3C9C9544DFDCFA2B877FB6FE1C701C /* RCTProfileTrampoline-x86_64.S */, + 6770DB80DA2AD6203EE6306E2E63A14F /* RNCUIWebView.h */, + 8A63FC16745F04B69799DFC4C0D7A9D5 /* RNCUIWebView.m */, + B184A621FEE2C8AA51DC852246C4BFA2 /* RNCUIWebViewManager.h */, + 2E3E0741DD379C5285961D2E986BA173 /* RNCUIWebViewManager.m */, + 0DAEFCDF929038D638EBF606C51224E2 /* RNCWKProcessPoolManager.h */, + 3228898EAB4614681F1A663586CE8FF3 /* RNCWKProcessPoolManager.m */, + F96AC914BC20FD8AFD2A10879BEFF079 /* RNCWKWebView.h */, + 39AD2C8AD9970E5E1DE289AE559FEE74 /* RNCWKWebView.m */, + E30033587DC12B1D881646BEC45EDF9E /* RNCWKWebViewManager.h */, + 24354A4F330C03ED81FFBBC1B72C3024 /* RNCWKWebViewManager.m */, + 97E7FC26401EE16EA5DA278B495EB84C /* Pod */, + 98EEB84C8F66CE7A5557485F61904125 /* Support Files */, ); - name = Profiler; - path = React/Profiler; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; F37F24F4DE8751D348D5C1E11C379D23 /* Frameworks */ = { @@ -5683,27 +5702,75 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - FA8E2D778E17E14E4BBDE0345736D9C2 /* DoubleConversion */ = { + F5AC219D2FCD1EA501A0F8A3803E0636 /* Pod */ = { isa = PBXGroup; children = ( - C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */, - A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */, - D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */, - 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */, - 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */, - 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */, - 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */, - 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */, - D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */, - ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */, - 599A4418AF75B9750AABACF579E38163 /* fast-dtoa.cc */, - DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */, - 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */, - 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */, - 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */, - 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */, - BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */, - 85CB4225592A21E0AD70BE53C1742166 /* utils.h */, + 4181168805CF7F38C4CD6DBDF973C915 /* UMCameraInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F6617680FC01FF767AB5A2C324B4B882 /* EXFileSystem */ = { + isa = PBXGroup; + children = ( + 853F971ECC8E5CEF001627385A80F21B /* EXDownloadDelegate.h */, + D2AA48971D1167CDAFD4D0A3C655D819 /* EXDownloadDelegate.m */, + 08AF325435742A9E699C98E542107CE3 /* EXFilePermissionModule.h */, + 0D15A8771D5B1C244A1F3667C1D5B108 /* EXFilePermissionModule.m */, + EF1C56D47C620750CB08FBB28D7188B0 /* EXFileSystem.h */, + D0DDE1BE48EAD5679B70F9210270241E /* EXFileSystem.m */, + 8FF59FB65959FAC943014917FBFFF90D /* EXFileSystemAssetLibraryHandler.h */, + 7959FA3C776756C79684510CE9547B3A /* EXFileSystemAssetLibraryHandler.m */, + E7F0058442084B5BFB38165037D8B848 /* EXFileSystemLocalFileHandler.h */, + BE66EBB9341C756D85769740C62D4745 /* EXFileSystemLocalFileHandler.m */, + 4F31834BD7C7BF3CD094570D77F21CDB /* Pod */, + E83CBED1565BA3C0020877FC37A994B8 /* Support Files */, + ); + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; + sourceTree = ""; + }; + F848C6C4B6AE6965819244613B3EA4FA /* Pod */ = { + isa = PBXGroup; + children = ( + 7206EE91F9B245492AF4DF0122ADB92E /* LICENSE */, + 16CF19936346F53C9AADFC496A01BFFE /* README.md */, + 4BE6672CD697BAD7F49EDFC706756FFC /* RNDeviceInfo.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + FA564A437E49FE0E8688CCDA9DA06BE2 /* Interfaces */ = { + isa = PBXGroup; + children = ( + 65132A743ADEE9456C90C121015ACA6A /* EXAppLoaderInterface.h */, + 72509B318BC71FD668322435733BC3F0 /* EXAppRecordInterface.h */, + ); + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; + sourceTree = ""; + }; + FA8E2D778E17E14E4BBDE0345736D9C2 /* DoubleConversion */ = { + isa = PBXGroup; + children = ( + C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */, + A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */, + D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */, + 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */, + 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */, + 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */, + 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */, + 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */, + D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */, + ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */, + 599A4418AF75B9750AABACF579E38163 /* fast-dtoa.cc */, + DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */, + 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */, + 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */, + 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */, + 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */, + BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */, + 85CB4225592A21E0AD70BE53C1742166 /* utils.h */, 70762B0582BC2A467644A69BD840DA98 /* Support Files */, ); name = DoubleConversion; @@ -5722,17 +5789,6 @@ path = GoogleToolboxForMac; sourceTree = ""; }; - FB4EE8368259BCF07972D02EEBB8C53E /* UMModuleRegistry */ = { - isa = PBXGroup; - children = ( - 74FDDE699F10FFBCD13225E59BBCBCEE /* UMModuleRegistry.h */, - 5E40CAE250D12558A438C99703D4DE29 /* UMModuleRegistry.m */, - 0EB188F70D25ED4EA02965D82F9D3C6F /* UMModuleRegistryDelegate.h */, - ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; - sourceTree = ""; - }; FC48FFD6DD1F739E9459BF6E3684AED0 /* FirebaseRemoteConfig */ = { isa = PBXGroup; children = ( @@ -5743,6 +5799,18 @@ path = FirebaseRemoteConfig; sourceTree = ""; }; + FCAEBA250836CDEE970A451D990A7DE0 /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + B858D65B72F9ECCC2FDA4E4117D0F6B0 /* UMFaceDetectorManager.h */, + 6EE4B15CE3F0C04296F28031DD3EFCAB /* UMFaceDetectorManagerProvider.h */, + 2F8944B9C1E58526E98BFB86452FCEE6 /* Pod */, + 596850BDA09F8EA404BEA8700C9C8F60 /* Support Files */, + ); + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; + sourceTree = ""; + }; FCFC61C90C577CDF662B11CD4C0493E6 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -5753,69 +5821,144 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - FEF04B9996F4183AD762A48574EE4622 /* RCTActionSheet */ = { + FF95C3FFA2A75EC3C1A9BBCC3DACE1A5 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - A1907356219DADF412EC02A7D00E72F9 /* RCTActionSheetManager.h */, - 9242F98B3232A9C1F29F0C766644AA6F /* RCTActionSheetManager.m */, + 41967FED9B51CDE9F07AE089E8659392 /* RCTSurfaceHostingProxyRootView.h */, + 5ACCCE0F667432DE30108EFC5FEA0F34 /* RCTSurfaceHostingProxyRootView.mm */, + 59FB9F33868CAB17638055C7934E4EE2 /* RCTSurfaceHostingView.h */, + E39027A4C027F40F932C0B3B372FF435 /* RCTSurfaceHostingView.mm */, + 31CE63845539D86DE8CE4A6C8B377076 /* RCTSurfaceSizeMeasureMode.h */, + 1F810D692381A33A2CEC30F4E7FDA2A0 /* RCTSurfaceSizeMeasureMode.mm */, ); - name = RCTActionSheet; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 029C524AB3BEC8ABAAD983C05FEA8B27 /* Headers */ = { + 02DE3190B20BF1974373B344574C34CD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 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; + }; + 07EA496922703B388FA6473ED46A4F8D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1214CCAB39D3FB142B55E86487498F5E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + AA765915F7DBEE9C811DCD04B3B89255 /* CompactValue.h in Headers */, + 86A8C2CC47B3F2D44AE6CB5D761C63EC /* instrumentation.h in Headers */, + C4676DCAC70454E941499297FC775526 /* Utils.h in Headers */, + C08E4C8138813525A78FDCB6B3E5CB29 /* YGConfig.h in Headers */, + FACFEF91810308CBD49B9EA8568E582F /* YGEnums.h in Headers */, + 9F33DF87C2E0C16FC679196B9784809D /* YGFloatOptional.h in Headers */, + BDDA9126BB85AE326C6FD44DF4ABF115 /* YGLayout.h in Headers */, + 1CF6E74B068BEAAEAE16A9C6D0AF9473 /* YGMacros.h in Headers */, + 0382161F2C3D6D01A94B118C2295C126 /* YGMarker.h in Headers */, + 115DFB3AA8F66D3A7139D37FEC05B270 /* YGNode.h in Headers */, + 02AD9CDEC93DFAC2C48E42123B215276 /* YGNodePrint.h in Headers */, + C744F2212F1B5B7C1491FBC1A5B84BC3 /* YGStyle.h in Headers */, + 047D0B25A834E49C911B7FF4C3212260 /* YGValue.h in Headers */, + B69F26B8E55FCEF87C05C36F2B8BE38A /* Yoga-internal.h in Headers */, + 6706524B56ACFDA2540AD65DE183A4B5 /* Yoga.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2421B2BEB31793521AF7BB2ED8723279 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9B2736325EE8D42AD7C71E2015BE415E /* RNCUIWebView.h in Headers */, - 2A5606225C37333A52B2528E12FA7128 /* RNCUIWebViewManager.h in Headers */, - 6047C84A410D1A5644CB285592DDA5BE /* RNCWKProcessPoolManager.h in Headers */, - 970B820D4216EFF678B82E8281F53B05 /* RNCWKWebView.h in Headers */, - C97C080557D1C0D7F31948D60F7A1F51 /* RNCWKWebViewManager.h in Headers */, + 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; }; - 0E96AC29E4425A68227A380021E382A2 /* Headers */ = { + 28C0FE9F39F041633D81AF2A2E904905 /* 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 */, + A882E119717C37376298AAD257A6A96B /* RNSplashScreen.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 20A773A94981A047B301978EC7DA12D3 /* Headers */ = { + 293B9443ABE5647E0C19B7F8F4F00245 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - DF224277E1F9E9EE830F5A92DDB280B6 /* Compression.h in Headers */, - CB6B2DB3E82ACE6F9833CDB278F542BD /* ImageCropPicker.h in Headers */, - 8A6FD68E9F2F1C24520DE69BDA7A2FAE /* UIImage+Resize.h in Headers */, + 4D2B7471E1DEFB9FCA40493371A110BE /* CGGeometry+RSKImageCropper.h in Headers */, + 099D04D422C7D37A83C0CB1C16A4437A /* RSKImageCropper.h in Headers */, + 2ED483F4E25CA6CE0E707A19519A3932 /* RSKImageCropViewController+Protected.h in Headers */, + DC93CD87AE5234A0FFCC3DF3E75DF4D2 /* RSKImageCropViewController.h in Headers */, + 08F5859959A583AE0145C4DA8A6D7857 /* RSKImageScrollView.h in Headers */, + 7BE5382F9577383A8D12A9449D0979AB /* RSKInternalUtility.h in Headers */, + 28ED695F268AB094B59F5E8A02D83CBF /* RSKTouchView.h in Headers */, + C7C4A0F9D763E48C3D873DDFD24FB3E9 /* UIApplication+RSKImageCropper.h in Headers */, + 593A4EBA1173D25632E2A07FD8197686 /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2203AB066D4CD3F505DFCC82F2AE8D25 /* Headers */ = { + 298C0CE98B729D8E1E994DEBA733ECD2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 3E7118452B13CF336A4C2F4C65E0F6B2 /* RNRealmPath.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3931CE772F17ABD849815CEE69EA536D /* Headers */ = { + 30D5AB2192ECAE8D3C5B2CF5D14AC5C7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 8A78F6525B0B706FB3CAF33DDA6A023A /* EXHapticsModule.h in Headers */, + 82AB5187CB86FEA3C1FDCF99D84917AC /* Orientation.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 384D3C61C649B71D86ED10F3583FAAF6 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 41F4969C4656FFFDCEFA09D9CE6D1E73 /* RNSScreen.h in Headers */, + 2630845AB60716C700B2A172A8E7696E /* RNSScreenContainer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5847,94 +5990,63 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 40026B8E37697B584FAC8C1498C4E639 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 3DEFEA836C5504C6F943130B3E301D5A /* RNSScreen.h in Headers */, - BB733B5DFABEB7639CF560E3A2B5FD6C /* RNSScreenContainer.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4220C7C88D1F7B6469D417B967F8F972 /* Headers */ = { + 3B9140D1B1106D8FC5F565E624716394 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3F7CD0EC5EA6EFA71775000D8683E5C3 /* CGGeometry+RSKImageCropper.h in Headers */, - E098598F1DF94163B7B16498CC201847 /* RSKImageCropper.h in Headers */, - D0D60DE080C6E14799B2BE60EAA2D6CC /* RSKImageCropViewController+Protected.h in Headers */, - D4D6A75FC0A089D60A71FD950BB93868 /* RSKImageCropViewController.h in Headers */, - 01B1C53DC9DD22B04EE64A9604F95EC7 /* RSKImageScrollView.h in Headers */, - DCA64B36514C5F646F8997BB80E2D026 /* RSKInternalUtility.h in Headers */, - 2F106CA61FE17CF4D772B91EFEE5289D /* RSKTouchView.h in Headers */, - C600DDE3E3F83087492AA68DCB37DDCF /* UIApplication+RSKImageCropper.h in Headers */, - C45CDD1534900153D1403CF4BF988397 /* UIImage+RSKImageCropper.h in Headers */, + 51D3A0538BB2CAD9581798E78842DBFB /* QBAlbumCell.h in Headers */, + B3C1245860FADFEE2257C5D046A50939 /* QBAlbumsViewController.h in Headers */, + 9CDD2B86B2F780B03A1FEF006BA41EB8 /* QBAssetCell.h in Headers */, + EF49B1ACABCFA73186A54194F39E5191 /* QBAssetsViewController.h in Headers */, + C02FC28F0E098264F74DF4442DEC7802 /* QBCheckmarkView.h in Headers */, + 1FE81B5026FBEAFA138AD1D683AFC2B4 /* QBImagePickerController.h in Headers */, + D360241DA04A5E9CE9229DBACABC8F7B /* QBSlomoIconView.h in Headers */, + F8FB2AD0FBC228D28DB2A3819C91351B /* QBVideoIconView.h in Headers */, + EE66861EBCF0E30FFBC50D10CDEE43F9 /* QBVideoIndicatorView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5DB237F8776D02244E1A0C926180DA1A /* Headers */ = { + 518F87C7550A05382BB3F806F296BBB3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 11DA689255A097509015A43A92607F00 /* RNDocumentPicker.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F581F0323AF3FAB9C3E31E837326583 /* Headers */ = { + 542A3DC9BB384F68645D6B8FF41DE648 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - FE1BA6CF59B74CDB7A9CA0DA5CA101FF /* GTMDefines.h in Headers */, - C695C216632743B623F06BF40207ED94 /* GTMLogger.h in Headers */, - 05753D9606AF2B7EE9248F144B12C078 /* GTMNSData+zlib.h in Headers */, + 4B988A007FCE03DC053E93F061AF221D /* RNDocumentPicker.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7A6DDAC54258F84F29BCA3C4BDA9A22F /* Headers */ = { + 565F2E5B02106DDD0BA01EE3E45AAAB6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F04888FD61AB5F283469064F8AD87763 /* Orientation.h in Headers */, + 3A8997132AEDB739413F8EABB8BD3EBD /* Compression.h in Headers */, + 708AF60B6E91F618D72939CE739B1B37 /* ImageCropPicker.h in Headers */, + 69D6B7DE938FAE6E0B771D303C40A4B9 /* UIImage+Resize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7BCE6740C1956DB89891BD6F4A6AE044 /* Headers */ = { + 6199E50C54AD2932637DF85DC60C569F /* 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 */, + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */, + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7C75A1195B3633120859FD542309A28F /* Headers */ = { + 6F581F0323AF3FAB9C3E31E837326583 /* 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 */, + FE1BA6CF59B74CDB7A9CA0DA5CA101FF /* GTMDefines.h in Headers */, + C695C216632743B623F06BF40207ED94 /* GTMLogger.h in Headers */, + 05753D9606AF2B7EE9248F144B12C078 /* GTMNSData+zlib.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -5949,45 +6061,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 7DF7DDBC1A94D5E78B218AC66C765F79 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - FFBD268FDFE09AD431CB9526E21BA6F5 /* QBAlbumCell.h in Headers */, - 3117C61FEC528E0EBBD0D7C45B9B97EA /* QBAlbumsViewController.h in Headers */, - 5EB91821D47776A42C401D05BB09BEF9 /* QBAssetCell.h in Headers */, - 17B4C9BC716FE23E66FB42B9D28EFE62 /* QBAssetsViewController.h in Headers */, - 95E8C384B4BE0633CB4B67F322B3D446 /* QBCheckmarkView.h in Headers */, - FDC687E81AA6F4FD5B0BD374225B2FD6 /* QBImagePickerController.h in Headers */, - D4096560F497EB181944847636505199 /* QBSlomoIconView.h in Headers */, - 5061609B99240490B2DAC5E44E415119 /* QBVideoIconView.h in Headers */, - B81C681930D090CFCEE3C434C1EEB542 /* QBVideoIndicatorView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 87E85186DFF11944B3248C8DAE1847D4 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - BF9316C844399A1FE5D153EA6C1C4912 /* RNSplashScreen.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9308D3939AFAB2C5117CBAD222E15FE1 /* Headers */ = { + 83CEBBF4A074B52388AE20E208889CAA /* 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 */, + 18F37AFD3B1AEF9DAC492DEC75617BAF /* RNCUIWebView.h in Headers */, + F5EDCD19092AD6CFA61E9A1CE93ED4A3 /* RNCUIWebViewManager.h in Headers */, + E5E847EA5C7686D0222C414DC33AC4CA /* RNCWKProcessPoolManager.h in Headers */, + DB7F6A8D4FC7B17A47154065C5600C10 /* RNCWKWebView.h in Headers */, + FDF5B1756DC69DD3A735782BB2FEBE19 /* RNCWKWebViewManager.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6036,6 +6118,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 983D893D55CE7B265711016DE372DB73 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A686F787786DACEB84FABB108904556B /* DeviceUID.h in Headers */, + 30742F2855420CDF782A467A075F60CA /* RNDeviceInfo.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; A87EBDA49D64961D27A0F520F2FF3DA6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6089,27 +6180,44 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - ADC08E05FE6E0ED4713C744D7774C375 /* Headers */ = { + AF57E42464E79A25FA46933B81663583 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B1D5051568743298F39DAE80DD5B460C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C3F8F8EE70554E1ECD56A50A3486000E /* RNLocalize.h in Headers */, + 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; }; - 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; }; - C702F77F187EF14D3605A1BA98C831A4 /* Headers */ = { + 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; }; @@ -6141,218 +6249,190 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D3C80A69FD8637D7FFA2D225D39393C1 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D63ECA07A565083B8EB425A47D7A4FCB /* Headers */ = { + D9137D2CF43CE4730D585B5A9E680002 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B6367A2D6515DCE4371879DC2D88A204 /* DeviceUID.h in Headers */, - 634166859E266DFB3F47EFEA72FD7880 /* RNDeviceInfo.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - D8EA0827550C23140C98968468EDC7E9 /* Headers */ = { + E3A3AE612C12145C49599E8ECEE3C309 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - E5C78C3F9E84B81F5C85D96A0DFB1C16 /* CompactValue.h in Headers */, - 8590DA3DB23E0F53A30DB88B37031BBE /* instrumentation.h in Headers */, - 3998B98BA57ED5413CD8AD8C3500DAFA /* Utils.h in Headers */, - 82C5864995854D27F45A00C26263D7AC /* YGConfig.h in Headers */, - 82B5B05123C3A6BC9375B8259AB0EEDC /* YGEnums.h in Headers */, - 6F86591135242AEE9AC8189FCFB65897 /* YGFloatOptional.h in Headers */, - AFBF4BC2D81FB77F344D6382753F6A9F /* YGLayout.h in Headers */, - 631A9753D07F8F083584F2C7FF894B0A /* YGMacros.h in Headers */, - 178A8BC83DD960839E99C065B46D317C /* YGMarker.h in Headers */, - 1BDA4C9EBF6F3C8771E64B209D570E12 /* YGNode.h in Headers */, - E23D0F82C3E76392DBCDF812FC20E0EE /* YGNodePrint.h in Headers */, - FDB7A96FDA09C96FEC3DF9F58F44CD9B /* YGStyle.h in Headers */, - FD58F45695564409C85EA74A08F9F6E3 /* YGValue.h in Headers */, - B86C14FC91833D8EA31EEC85A9483435 /* Yoga-internal.h in Headers */, - A0C17C0FA5F6A0061BE501E09B88BE60 /* Yoga.h in Headers */, + AB938B4ED33744020BF7430D7496E852 /* RNLocalize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - E2080F763498E7306A1CD805F9A653FB /* Headers */ = { + E4D17E96D903B293E993863B6F717145 /* 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 */, + 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; }; - FCB5BE3FB2ED720DC04BF2DDD0BDA3D7 /* Headers */ = { + E766D3CD96138CF5BE414713DCA78211 /* 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 */, + 96C34F4DCC151882C125476F326B30BE /* UMBridgeModule.h in Headers */, + CBF7BD62C1FC8137737176A02F10E0A4 /* UMModuleRegistryAdapter.h in Headers */, + D6932D9FB82CFAB525C43AE9001B29F9 /* UMNativeModulesProxy.h in Headers */, + E1E102E0E08987DCC15BBB7A2FE50E1F /* UMReactFontManager.h in Headers */, + 96CE3864AB8632CB9267895611BDEEE0 /* UMReactLogHandler.h in Headers */, + E35CE23A614A29D4FF359AB5D2D202CE /* UMReactNativeAdapter.h in Headers */, + E5BDF37A7F8B4B60D487F3B82855A60E /* UMReactNativeEventEmitter.h in Headers */, + A6EA2CE9DE236725BBB21F19EC00340C /* UMViewManagerAdapter.h in Headers */, + EAB32AE0E6A4AAEBCE4E6DBABAD9FC74 /* UMViewManagerAdapterClassesRegistry.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - FE7EA97DB65C17D4C0C1F4DFBCC09B12 /* Headers */ = { + E878A576929A6F843017ABC6ECDC8E42 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2CCD6BFDFD2913A1A6B4980991813C87 /* UMBridgeModule.h in Headers */, - 4EAC5E92EBFEC9D791FD90D0328F7984 /* UMModuleRegistryAdapter.h in Headers */, - B15D078E71F9E5A59DE1F881534FAAA2 /* UMNativeModulesProxy.h in Headers */, - D64CE04FE3D59383F0C0243DD2C4443B /* UMReactFontManager.h in Headers */, - F3532D8ECA09A852127FB4FAF775DF2E /* UMReactLogHandler.h in Headers */, - E49A7CE7BC62D1B1531953AD36C19774 /* UMReactNativeAdapter.h in Headers */, - 2F81FAD66DB037E6F97EDB9CF61BA5A8 /* UMReactNativeEventEmitter.h in Headers */, - 44FF34A9AA9EBBD28CF69AF588D4F729 /* UMViewManagerAdapter.h in Headers */, - 97693B12E1DCDCEDA3A52AE017B83882 /* UMViewManagerAdapterClassesRegistry.h in Headers */, + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */ = { + 0FB41CE4381552CA15BC78737D4C350D /* RNScreens */ = { isa = PBXNativeTarget; - buildConfigurationList = 3252239A3789995739FB7B8C8A95B493 /* Build configuration list for PBXNativeTarget "DoubleConversion" */; + buildConfigurationList = 17B931885220D30F91AF7221EE5A9642 /* Build configuration list for PBXNativeTarget "RNScreens" */; buildPhases = ( - 0E96AC29E4425A68227A380021E382A2 /* Headers */, - 975735BF1F5E2C092FB2A8E783C373C7 /* Sources */, - 977B34A80819F5A745CF5B52D9236AFD /* Frameworks */, + 384D3C61C649B71D86ED10F3583FAAF6 /* Headers */, + 14FDD66EBFE7902E95A286560FA1337F /* Sources */, + D6B0F2FA3B7EF33B7F8F60D4673FF30F /* Frameworks */, ); buildRules = ( ); dependencies = ( + 80231C5AB2A69305BB489B210C60AC8C /* PBXTargetDependency */, ); - name = DoubleConversion; - productName = DoubleConversion; - productReference = 0F9D32450BA4C90E1EC2C7DDCD91DEC5 /* libDoubleConversion.a */; + name = RNScreens; + productName = RNScreens; + productReference = 35D64FD4EA6D92431EB73684DC2C82E3 /* libRNScreens.a */; productType = "com.apple.product-type.library.static"; }; - 1BF2913C5EC8E56B198C82312CA178BF /* RNDeviceInfo */ = { + 135D3E6523830EF3D6030BF433E40372 /* yoga */ = { isa = PBXNativeTarget; - buildConfigurationList = 4DD499D1D3294D3BBA21D0F0D83A3DE1 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; + buildConfigurationList = 2A788C2108A4C3061F6BBE6BE6F6BE15 /* Build configuration list for PBXNativeTarget "yoga" */; buildPhases = ( - D63ECA07A565083B8EB425A47D7A4FCB /* Headers */, - EB8921EA3665CF987A545417AF099A84 /* Sources */, - D100155194F71BF5B9E52467DB055F5D /* Frameworks */, + 1214CCAB39D3FB142B55E86487498F5E /* Headers */, + 529ECFD34EB290F4D54D1BD9A5E5A3D5 /* Sources */, + F72325E5CCDFB27EEF112687770B1088 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 5FB67ABCEE5A23A975B8A75B04BCB3E0 /* PBXTargetDependency */, ); - name = RNDeviceInfo; - productName = RNDeviceInfo; - productReference = 4D2DA5811BC85AF3E1B3107B9EB5F285 /* libRNDeviceInfo.a */; + name = yoga; + productName = yoga; + productReference = 6D5C418B5EEC894AA078554767CE3DDC /* libyoga.a */; productType = "com.apple.product-type.library.static"; }; - 2028458048597D68A7298BB3C8C1E9BB /* RNImageCropPicker */ = { + 1DBC3090C8BE77C9F4202B0421E0791E /* glog */ = { isa = PBXNativeTarget; - buildConfigurationList = 1308304AB64134360973186EF2D9BFC7 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; + buildConfigurationList = 30E42B671739C46568E4210EC736D325 /* Build configuration list for PBXNativeTarget "glog" */; buildPhases = ( - 20A773A94981A047B301978EC7DA12D3 /* Headers */, - AA93C0886CBDE6F80796D554B98AE227 /* Sources */, - F61E36D0F06C5DA300A84CAEF30C6428 /* Frameworks */, + B1D5051568743298F39DAE80DD5B460C /* Headers */, + 9ED7695E4EDA6926DEE64D2BE78207DA /* Sources */, + B8165C55B9049D277EC22BB093B9FBD5 /* Frameworks */, ); buildRules = ( ); dependencies = ( - A3E6DF9BD967FA290184844DA45E2BFA /* PBXTargetDependency */, - B10343AFE78662A3CF65F600C523CB21 /* PBXTargetDependency */, - E90E23501E5301770C44885045B4AE06 /* PBXTargetDependency */, ); - name = RNImageCropPicker; - productName = RNImageCropPicker; - productReference = 9A505FEE16C4CA075A3CA8CF51C59E00 /* libRNImageCropPicker.a */; + name = glog; + productName = glog; + productReference = C4D3D2C6049772A96AA81EDCFF2EA170 /* libglog.a */; productType = "com.apple.product-type.library.static"; }; - 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */ = { + 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */ = { isa = PBXNativeTarget; - buildConfigurationList = CC3B8958A2965669C0A321A46414DD85 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */; + buildConfigurationList = CF773BF3AB5B99203184D051A085CCDC /* Build configuration list for PBXNativeTarget "Folly" */; buildPhases = ( - 931B91D60A10F80CF19EB7C72867F774 /* Headers */, - D8BADC07DACE496C6A1D36DECF9264FB /* Sources */, - 86975FA8969769E1025A58E3FEA10506 /* Frameworks */, + 518F87C7550A05382BB3F806F296BBB3 /* Headers */, + 73763C6E7BD2820F0CD7E11ECAE71AF2 /* Sources */, + E9F22D6501C6AEB59FD7D4E41CAF3D58 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 88F4CBC37EDC22A18C73D6723A7C8552 /* PBXTargetDependency */, + 18A0E09FE601E01C0D44FC1CEB9A9F12 /* PBXTargetDependency */, + 5F3518D836F3905EBFCBE88425EE90B6 /* PBXTargetDependency */, + 26514345C480A4C45F1045D773CE3CBE /* PBXTargetDependency */, ); - name = EXWebBrowser; - productName = EXWebBrowser; - productReference = 1954559BB85761360B4335D2246E6816 /* libEXWebBrowser.a */; + name = Folly; + productName = Folly; + productReference = 650F1F89B44BDADA600F9DD8034D21E5 /* libFolly.a */; productType = "com.apple.product-type.library.static"; }; - 2543734D0A332B2588202904B99CC151 /* nanopb */ = { + 23FF201B9797478F2F3250595974DE03 /* react-native-document-picker */ = { isa = PBXNativeTarget; - buildConfigurationList = DDD1BD1ECC5150DB309F7D7A3EA53B56 /* Build configuration list for PBXNativeTarget "nanopb" */; + buildConfigurationList = A00E566D82D062ECA93C1223CB13A83E /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; buildPhases = ( - 7D84B09D3167FE4A0C99340E50FE3484 /* Headers */, - 2114D9C20C46F701BEB76345C5B53F04 /* Sources */, - 9D0797DF1C3A79CCD8F04FB6609B1262 /* Frameworks */, + 542A3DC9BB384F68645D6B8FF41DE648 /* Headers */, + A72511B819400C5A896743A02500FB41 /* Sources */, + 22D7AA6FEB69A8DE43D0C20D5CBDF124 /* Frameworks */, ); buildRules = ( ); dependencies = ( + 43232CE3008160AB0AA0D1F4F66DB94B /* PBXTargetDependency */, ); - name = nanopb; - productName = nanopb; - productReference = F89B0F9050EDACD0D09D26FCFC6E751F /* libnanopb.a */; + name = "react-native-document-picker"; + productName = "react-native-document-picker"; + productReference = CB2F572C6E5E8BE17CBF38A2A93AAC07 /* libreact-native-document-picker.a */; productType = "com.apple.product-type.library.static"; }; - 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */ = { + 2543734D0A332B2588202904B99CC151 /* nanopb */ = { isa = PBXNativeTarget; - buildConfigurationList = 3D743A9AAF6ED7D9DB954EDB605D83CF /* Build configuration list for PBXNativeTarget "glog" */; + buildConfigurationList = DDD1BD1ECC5150DB309F7D7A3EA53B56 /* Build configuration list for PBXNativeTarget "nanopb" */; buildPhases = ( - E2080F763498E7306A1CD805F9A653FB /* Headers */, - B0332E51FEAABE23FBE9EDEF7DAE717D /* Sources */, - 933DA3B844AA36790E1184CF33F53746 /* Frameworks */, + 7D84B09D3167FE4A0C99340E50FE3484 /* Headers */, + 2114D9C20C46F701BEB76345C5B53F04 /* Sources */, + 9D0797DF1C3A79CCD8F04FB6609B1262 /* Frameworks */, ); buildRules = ( ); dependencies = ( ); - name = glog; - productName = glog; - productReference = 862BE059FBA2420B43E3FDA164484F62 /* libglog.a */; + name = nanopb; + productName = nanopb; + productReference = 38B5379326830579CE5929312968EED4 /* libnanopb.a */; productType = "com.apple.product-type.library.static"; }; - 2F8CF410B0326B6DEB5A2CDA4E2A2D8B /* EXConstants */ = { + 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */ = { isa = PBXNativeTarget; - buildConfigurationList = 8BB472139D3ECDA53A44FD1DBBB24808 /* Build configuration list for PBXNativeTarget "EXConstants" */; + buildConfigurationList = 6E7B377EF94A3DF3F96B0A8A749E5673 /* Build configuration list for PBXNativeTarget "RNLocalize" */; buildPhases = ( - C63381F4C23B52A79B281F62EDAEBFAC /* Headers */, - A6C5040BCE203F411247AC644E4ECCA8 /* Sources */, - EC3F1E53CF0CD26EF63ACE35EEDCDC87 /* Frameworks */, + E3A3AE612C12145C49599E8ECEE3C309 /* Headers */, + 7B2064515B5ED192AB985AB805EAC3EE /* Sources */, + 29D2CD0D5FAD26CF8EEE5C7B411DCFB0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 902BB8686A0FE9AA3973C9B0A3563691 /* PBXTargetDependency */, - FF684D0FC6B49662CAC11992F333F7B4 /* PBXTargetDependency */, + 937633048AE4F69B9F397E1C5B238AF9 /* PBXTargetDependency */, ); - name = EXConstants; - productName = EXConstants; - productReference = 3138C521EF7F36EE8AED50D94C5EE882 /* libEXConstants.a */; + name = RNLocalize; + productName = RNLocalize; + productReference = 4C2E17571810B87B9073CBD85639CAF4 /* libRNLocalize.a */; productType = "com.apple.product-type.library.static"; }; 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */ = { @@ -6369,7 +6449,7 @@ ); name = GoogleToolboxForMac; productName = GoogleToolboxForMac; - productReference = 3E1BFD391AF5C7C626832E6E549629B2 /* libGoogleToolboxForMac.a */; + productReference = 97CD684EF2CE8DF8291020F2DE149B00 /* libGoogleToolboxForMac.a */; productType = "com.apple.product-type.library.static"; }; 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */ = { @@ -6387,42 +6467,83 @@ ); name = FirebaseCore; productName = FirebaseCore; - productReference = 58706CC7A8E0E0F55DD79B0A97259068 /* libFirebaseCore.a */; + productReference = 9DDAE6A5A841F6A1CBCAC6B0A54AC509 /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; - 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */ = { + 4AF1C7BAEFCE2A32C72F1AABAF74AA00 /* Pods-ShareRocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = CB97C076225DC55B9B4D746BCDD41E96 /* Build configuration list for PBXNativeTarget "UMCore" */; + buildConfigurationList = EC53BAB1E23B45D0F550498FF8960B51 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; buildPhases = ( - 7C75A1195B3633120859FD542309A28F /* Headers */, - A02A2E9F7389315B01604240D3D927B8 /* Sources */, - 61756F3B6B9110FB5A6EF1095BF8F721 /* Frameworks */, + D9137D2CF43CE4730D585B5A9E680002 /* Headers */, + 4222174B5D431DA8313C71C24717DC41 /* Sources */, + 51165801A7AF675E12E317A5B86C75F9 /* Frameworks */, ); buildRules = ( ); dependencies = ( + BA7F2E02425504FD66FF96EC1AD00D7D /* PBXTargetDependency */, + 82652CE30CF96001F0E77085D4EEAF85 /* PBXTargetDependency */, + 515E131115CAD41B5AFB09FAC3295722 /* PBXTargetDependency */, + 156C51256C0E6BF3406DFD70C84CF30B /* PBXTargetDependency */, + 3981F6B25A5281D5D5F11320205AD8F7 /* PBXTargetDependency */, + 7061FCB729CBF838DDE02088BB50A272 /* PBXTargetDependency */, + B2924FDDFB445084FCA45C581F2A7721 /* PBXTargetDependency */, + 80926E72D43F59F2E6412AFA1BA73425 /* PBXTargetDependency */, + 355F5296A38F514AA0697865A001FDC0 /* PBXTargetDependency */, + 12FCE190F30535B0E26D16475614334C /* PBXTargetDependency */, + 63F10C439748EE2A6393092EBEC15269 /* PBXTargetDependency */, + E4C176B5257F774FF5A76681500E224A /* PBXTargetDependency */, + 8AA4FC913B7AEE9436E9689D139EB609 /* PBXTargetDependency */, + 92F43D4CF8BE3A5ECB550939832F4F0D /* PBXTargetDependency */, + 66961F37938A041C8ACEA8626B04CE43 /* PBXTargetDependency */, + 05DC270E09EE5BC9E109E84BCE26885A /* PBXTargetDependency */, + C29BA1E354E50925D3D695468A87778A /* PBXTargetDependency */, + AFB2C43023C7F12DEB6D8106283A08D1 /* PBXTargetDependency */, + 0D23E31FE61765C060513EF894BEFC1F /* PBXTargetDependency */, + CD8431C9BABA48C0C73FD2E26EE908D9 /* PBXTargetDependency */, + 1C9D60F94C44973489D2998E6355A134 /* PBXTargetDependency */, + 72FEF033FFC2B6B38B7BC99C56CE6AE2 /* PBXTargetDependency */, + DC9D4A837F44A83FD52CBCE2C15524C0 /* PBXTargetDependency */, + 3564B69A1C503366BACE5FC87D262333 /* PBXTargetDependency */, + 2CAAC3DDB567FBAC78F00C9AA4974FB4 /* PBXTargetDependency */, ); - name = UMCore; - productName = UMCore; - productReference = F2FEB3C94FB011CDD44E1EE957EB5BB5 /* libUMCore.a */; + name = "Pods-ShareRocketChatRN"; + productName = "Pods-ShareRocketChatRN"; + productReference = 3DEEC8163F843FED9B19708AD5E1533B /* libPods-ShareRocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; - 45018F5317EE8A727FB05D4B61A678A6 /* EXHaptics */ = { + 4AF5E628EAB736BEF1F7FD9320938BD2 /* QBImagePickerController-QBImagePicker */ = { isa = PBXNativeTarget; - buildConfigurationList = 0B02CA2BF83F91E03F27D2A61E8A7DC9 /* Build configuration list for PBXNativeTarget "EXHaptics" */; + buildConfigurationList = BFA9240A78045029A78D0AD94862A456 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; buildPhases = ( - 3931CE772F17ABD849815CEE69EA536D /* Headers */, - 7626A7BB2A7AF80AE33C0010A5BC2CE9 /* Sources */, - 473A8110860C0093E3A3B485287B1D20 /* Frameworks */, + 09D825D04275B9AA0887F0B176B5FCB5 /* Sources */, + F37773B5A9A89E53F1DE137421232104 /* Frameworks */, + BB1962C47F058612234F8E417D92B699 /* Resources */, ); buildRules = ( ); dependencies = ( - 22441E5AFBE737F69854BEFE69E9F1B0 /* PBXTargetDependency */, ); - name = EXHaptics; - productName = EXHaptics; - productReference = 1557F6150561AE28AD419B52693092AE /* libEXHaptics.a */; + name = "QBImagePickerController-QBImagePicker"; + productName = "QBImagePickerController-QBImagePicker"; + productReference = 92EFFC5DCEABAA1F19A0EA043792A75A /* QBImagePicker.bundle */; + productType = "com.apple.product-type.bundle"; + }; + 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */ = { + isa = PBXNativeTarget; + buildConfigurationList = 097AF50B67E3908773078466CE352AD4 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */; + buildPhases = ( + C8F51655E8DC48BAB3B0C28BA2D5CD9D /* Headers */, + 95AA49EBDF2DA6FE542B14055FAE3440 /* Sources */, + 9CAAEBC5F620E83BD5CB56084AC45E09 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = EXAppLoaderProvider; + productName = EXAppLoaderProvider; + productReference = CEF911BCB17DBFF64FEB78BD39119AEE /* libEXAppLoaderProvider.a */; productType = "com.apple.product-type.library.static"; }; 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */ = { @@ -6441,351 +6562,347 @@ ); name = FirebaseInstanceID; productName = FirebaseInstanceID; - productReference = EE9C4EBC9A59FF6B05161BE9B1A4D074 /* libFirebaseInstanceID.a */; + productReference = B145628F76E71EBC32DE310DF90FEA08 /* libFirebaseInstanceID.a */; productType = "com.apple.product-type.library.static"; }; - 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */ = { + 59C1091111E1D9F774B8BBDFD529A0CD /* react-native-webview */ = { isa = PBXNativeTarget; - buildConfigurationList = 6938A94AF739B9819D20E572908D3D5E /* Build configuration list for PBXNativeTarget "EXPermissions" */; + buildConfigurationList = A1B4747D5D93197637D93E3A0398D431 /* Build configuration list for PBXNativeTarget "react-native-webview" */; buildPhases = ( - FCB5BE3FB2ED720DC04BF2DDD0BDA3D7 /* Headers */, - AF7E2A8BB3196AB169293F1A66B46A56 /* Sources */, - 9C1143E77695FB4B58AA5D992DD06087 /* Frameworks */, + 83CEBBF4A074B52388AE20E208889CAA /* Headers */, + 6C4C435603FCB8767E754C4E20AB9C10 /* Sources */, + A6103F82654B30871489E20D356DD648 /* Frameworks */, ); buildRules = ( ); dependencies = ( - FBF22B08572B8004330FD47E0D07AC6F /* PBXTargetDependency */, - 1C7BC65EE5D0AE985F3F9D390F082C25 /* PBXTargetDependency */, + 6F4D5767618C5165B39951C9446CC674 /* PBXTargetDependency */, ); - name = EXPermissions; - productName = EXPermissions; - productReference = FFA97571FC551CF180C13F1C2589FA74 /* libEXPermissions.a */; + name = "react-native-webview"; + productName = "react-native-webview"; + productReference = 40AAD9902F8CFC8829E817508F6DC261 /* libreact-native-webview.a */; productType = "com.apple.product-type.library.static"; }; - 6653EE6BC241DCDF86799473CF05303F /* RNLocalize */ = { + 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */ = { isa = PBXNativeTarget; - buildConfigurationList = 1EEC5E134E8D86F4C8B903623AD141DC /* Build configuration list for PBXNativeTarget "RNLocalize" */; + buildConfigurationList = 22051F6710614105BA04E0EF4915F952 /* Build configuration list for PBXNativeTarget "EXHaptics" */; buildPhases = ( - ADC08E05FE6E0ED4713C744D7774C375 /* Headers */, - 2ECD582BCB640BDFDC55376471386363 /* Sources */, - 02782D275524BCADDC5000A96D780FAF /* Frameworks */, + E878A576929A6F843017ABC6ECDC8E42 /* Headers */, + BCDCD0C34A5BF68884EE50161FA4DE35 /* Sources */, + 29DDCCCAF9B1EDCC9998ECDADEFF7D8A /* Frameworks */, ); buildRules = ( ); dependencies = ( - 69E4A3EC26D8F5FF081E8C0E0FFB43D7 /* PBXTargetDependency */, + 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */, ); - name = RNLocalize; - productName = RNLocalize; - productReference = 9379920E557C34F5428A22260CA77634 /* libRNLocalize.a */; + name = EXHaptics; + productName = EXHaptics; + productReference = BDCA46324A975C7FC1D9310BFB70F8FA /* libEXHaptics.a */; productType = "com.apple.product-type.library.static"; }; - 78C72C16EF60158FECF52B5762368F44 /* RNScreens */ = { + 617459C51E8685DC1604FE74E1E93024 /* react-native-orientation-locker */ = { isa = PBXNativeTarget; - buildConfigurationList = DA90CF0FFEE6657AF917E75FEFC2456A /* Build configuration list for PBXNativeTarget "RNScreens" */; + buildConfigurationList = 909B61B59B97BC88A0A5B03AC7F0345F /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; buildPhases = ( - 40026B8E37697B584FAC8C1498C4E639 /* Headers */, - 4D5055F433A220384E59965EA89C7389 /* Sources */, - D64D13615B17402931D05489E18A4E4A /* Frameworks */, + 30D5AB2192ECAE8D3C5B2CF5D14AC5C7 /* Headers */, + 38D5D45120CCB27ED9E19FB030631774 /* Sources */, + ED444851A24CF3192623CF7327003467 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 312C2A524CE4F237E951670A83B23413 /* PBXTargetDependency */, + 7C3BBDE8D8ABF5A613DA8AB38CE53D37 /* PBXTargetDependency */, ); - name = RNScreens; - productName = RNScreens; - productReference = 1E43EB2AFBD804F643193AB4A506FDD2 /* libRNScreens.a */; + name = "react-native-orientation-locker"; + productName = "react-native-orientation-locker"; + productReference = 7EBB09FA3648B85F3F0BC62F81786778 /* libreact-native-orientation-locker.a */; productType = "com.apple.product-type.library.static"; }; - 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */ = { + 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */ = { isa = PBXNativeTarget; - buildConfigurationList = F84B7C34B5C42B3E1A56DAC5E2FC6AB4 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; + buildConfigurationList = 0569CCDF3B3B687CF01EE8D4001AA7CC /* Build configuration list for PBXNativeTarget "DoubleConversion" */; buildPhases = ( - CBAFC640E318399F635F45C49CE21EB8 /* Headers */, - 332A9012E8FCD1A50BBA951526029AB9 /* Sources */, - E4D6B45A3EE55BAE914203B76C79D247 /* Frameworks */, + 2421B2BEB31793521AF7BB2ED8723279 /* Headers */, + 061DACD6DFC3EBD596A23786331E4418 /* Sources */, + 68E4DC721715B13364B7CFA56B002488 /* Frameworks */, ); buildRules = ( ); dependencies = ( ); - name = GoogleUtilities; - productName = GoogleUtilities; - productReference = 0E1B1F60A9524A572FA1164AE4EF3BB5 /* libGoogleUtilities.a */; + name = DoubleConversion; + productName = DoubleConversion; + productReference = 60584D3AA8192A7EB3622726C89CAB29 /* libDoubleConversion.a */; productType = "com.apple.product-type.library.static"; }; - 803BEC492C34A471892F5E1B8EF9DFB1 /* react-native-splash-screen */ = { + 7576203C2856D63CE7ACAEB26FDDFB6B /* QBImagePickerController */ = { isa = PBXNativeTarget; - buildConfigurationList = CCD0A61C46BE3DDF6B000B95F2C6EF54 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; + buildConfigurationList = 3D504693706D06D7DD1A31676C2B1D1A /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; buildPhases = ( - 87E85186DFF11944B3248C8DAE1847D4 /* Headers */, - 1556CF231485381A5AB8A5A8ED12D454 /* Sources */, - EB469E21EBE88EFD146AF9598B548FFE /* Frameworks */, + 3B9140D1B1106D8FC5F565E624716394 /* Headers */, + 3645D9856A200032AA8C2E8B1313331A /* Sources */, + A533EFD394BF22B2529C3B7CEBEEEAD3 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 57A9A063B5F36ECD4637424F7253F3D1 /* PBXTargetDependency */, + AF9E4B4DEB4F9BC8911C71DB2A37F2CA /* PBXTargetDependency */, ); - name = "react-native-splash-screen"; - productName = "react-native-splash-screen"; - productReference = 6842129DEE9BB42323033ABD94A828E1 /* libreact-native-splash-screen.a */; + name = QBImagePickerController; + productName = QBImagePickerController; + productReference = 96CBF7B1D6A377DE0ADE741A58B3E116 /* libQBImagePickerController.a */; productType = "com.apple.product-type.library.static"; }; - 809B32A1AFD7C6F0D8E7A0E42D21B56A /* RSKImageCropper */ = { + 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */ = { isa = PBXNativeTarget; - buildConfigurationList = 8AF4C8BFB57540898C77D03BD49AD7F4 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildConfigurationList = F84B7C34B5C42B3E1A56DAC5E2FC6AB4 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */; buildPhases = ( - 4220C7C88D1F7B6469D417B967F8F972 /* Headers */, - AF79C27E186ECD23F4886459F14405D1 /* Sources */, - C3319CD601ADB1B7DF3895DFAEE76DDB /* Frameworks */, + CBAFC640E318399F635F45C49CE21EB8 /* Headers */, + 332A9012E8FCD1A50BBA951526029AB9 /* Sources */, + E4D6B45A3EE55BAE914203B76C79D247 /* Frameworks */, ); buildRules = ( ); dependencies = ( ); - name = RSKImageCropper; - productName = RSKImageCropper; - productReference = 3FAFEC3BA6F7A549C49CE3DF0456769F /* libRSKImageCropper.a */; + name = GoogleUtilities; + productName = GoogleUtilities; + productReference = 24172F1F2D1120AE004421165710D403 /* libGoogleUtilities.a */; productType = "com.apple.product-type.library.static"; }; - 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */ = { + 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */ = { isa = PBXNativeTarget; - buildConfigurationList = 126AE8970754A6BA5FE9DA02CA010B2A /* Build configuration list for PBXNativeTarget "EXFileSystem" */; + buildConfigurationList = EBDB015CA972DF0F3394BC91D53B44FC /* Build configuration list for PBXNativeTarget "react-native-realm-path" */; buildPhases = ( - 7BCE6740C1956DB89891BD6F4A6AE044 /* Headers */, - 7CD392B2F5800AD37DD5DCE1C984884E /* Sources */, - 70DCC08B264C6FCAAF9029986DC4F583 /* Frameworks */, + 298C0CE98B729D8E1E994DEBA733ECD2 /* Headers */, + A1CEE05B7650F20AFD7CA6419496BB8C /* Sources */, + BC0A997A230B11D755F02ED4C1609F39 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 2FA54EC112515E4A3EF63E83EBC8D733 /* PBXTargetDependency */, - 3E56B5BEA3C0A0A4A52D8A2EDD469759 /* PBXTargetDependency */, + 8C2E0DEC239014CB5C75B879F52B2591 /* PBXTargetDependency */, ); - name = EXFileSystem; - productName = EXFileSystem; - productReference = C75CFB8C53569F6F250A620965F0D3C8 /* libEXFileSystem.a */; + name = "react-native-realm-path"; + productName = "react-native-realm-path"; + productReference = 22B1D6FD8E5BFE1294F9BF136FD98AE5 /* libreact-native-realm-path.a */; productType = "com.apple.product-type.library.static"; }; - A81A76054DDFFB213887570FBA0C500B /* react-native-document-picker */ = { + 81C054123AFD73E9DFE7239A455A404E /* react-native-splash-screen */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D896C2A29F30E86DB319B206D193892 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */; + buildConfigurationList = 5AA998BF6A868E7A7727E9ACADC3C30E /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; buildPhases = ( - 5DB237F8776D02244E1A0C926180DA1A /* Headers */, - 72D1B94D49B7BE31D50F2C90BDFB35F0 /* Sources */, - 0DBB9BFADB586D178E668C6FF46634C6 /* Frameworks */, + 28C0FE9F39F041633D81AF2A2E904905 /* Headers */, + ABD2FBA0E77B06B753088EBD9888F5E5 /* Sources */, + E60740D3DEC2E6DD066A74059B2B775E /* Frameworks */, ); buildRules = ( ); dependencies = ( - 946D0EFC24545D02A980A1130B8ACA69 /* PBXTargetDependency */, + EF48500E8F1E9750F9F76CCBBD1F091F /* PBXTargetDependency */, ); - name = "react-native-document-picker"; - productName = "react-native-document-picker"; - productReference = ADC7A95508C1CAB312ECA1B9A5E00CF2 /* libreact-native-document-picker.a */; + name = "react-native-splash-screen"; + productName = "react-native-splash-screen"; + productReference = 8B3C7D3B1BE1479AAEE455CF7FCFB931 /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; - B121AEB49B7BCB7BA05F2305488DFCD6 /* Pods-RocketChatRN */ = { + 8601F7B19425496C5312C6F111D6E777 /* UMCore */ = { isa = PBXNativeTarget; - buildConfigurationList = 0FC78364EF42E45D34DEA86B8E23CC0B /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = 86FB6036B4221D1FE19A24194599B43C /* Build configuration list for PBXNativeTarget "UMCore" */; buildPhases = ( - C702F77F187EF14D3605A1BA98C831A4 /* Headers */, - 8C32F3E0A67B24AF464ADC58B0BE112F /* Sources */, - 72E1F873F1C79F0826A44EE5F959756B /* Frameworks */, + 02DE3190B20BF1974373B344574C34CD /* Headers */, + 63B5C59657683A239FEB79ACF5597581 /* Sources */, + 03E04BE339D7014A9B11F8DD9200C161 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 42D1AFF2B6C5704E02CF9DAE113F2BD9 /* PBXTargetDependency */, - 27D2D1773275AB2A9FA5951630BB42EE /* PBXTargetDependency */, - 62F3CF367305C8CE5F8D644EDD05CAAC /* PBXTargetDependency */, - 661A408FB871FD4918850AEEEF512EA6 /* PBXTargetDependency */, - 315B0CFA94E789308C3E33481E04DDA2 /* PBXTargetDependency */, - 418D06AD77752FCDA6C52C4BD77E65E0 /* PBXTargetDependency */, - 89CBF831C4432784678DB5ED9B411682 /* PBXTargetDependency */, - 92D17714F82DB8DAB2D42CBE9F36A0AB /* PBXTargetDependency */, - F8F677D53EA57B1F3042177F25B528E1 /* PBXTargetDependency */, - A08030A8CD7BAC8D7575C8C909818456 /* PBXTargetDependency */, - 8ABFCEFB63550F2A67DAE3D2C03F0929 /* PBXTargetDependency */, - 4E7FB57F044F42CD14B868E20EE700AC /* PBXTargetDependency */, - 0828803F3A97E6C61441E496CE0720AD /* PBXTargetDependency */, - 69AC560D423D510C9D952CCF655DA790 /* PBXTargetDependency */, - B1D316D2F2547CB13CB55DDAD4363BE2 /* PBXTargetDependency */, - 16AC675FAD7761E55E75F0E58A5C7592 /* PBXTargetDependency */, - 660C8670E2CFDB50ED0CDC5A6A234449 /* PBXTargetDependency */, - 2D38DFB081585228340A47365325660F /* PBXTargetDependency */, - A6611202097D5BAE3FF101BC7F6270E0 /* PBXTargetDependency */, - 9BC5D4817775B93F6AB7B39BBC1F4478 /* PBXTargetDependency */, - B758C106C4B08407A71DF4221E584B1C /* PBXTargetDependency */, - F9CF08FA9AD826A591F409FC3A03FA2B /* PBXTargetDependency */, - FA89FC977B8E31642C47B76AD67160B8 /* PBXTargetDependency */, - E01C26D060D5521DAB450B370FAE9CBF /* PBXTargetDependency */, - 10555C1878E912D9ADCC834B955E9DA7 /* PBXTargetDependency */, - 068DD7020CD7E02ACE1DCFAD9B5029C6 /* PBXTargetDependency */, - 5D4356CC6E5DBCAFE4C9FB48B9C8CF70 /* PBXTargetDependency */, - 0DD9708C7EEE027F678098AA08361AE7 /* PBXTargetDependency */, - 5970A3E240B10AA6B3E62815BCB7D86B /* PBXTargetDependency */, - 0045830760D82A17533D54D75A66258C /* PBXTargetDependency */, - 6B9529CCD483E27C8EE6FDC526365424 /* PBXTargetDependency */, - 62D88790A4BEC54C715861BBC512333A /* PBXTargetDependency */, - 380DEAC308F60DF213ECA1949D06E062 /* PBXTargetDependency */, - 9B67F1299CC4D41DDAA28365464B1971 /* PBXTargetDependency */, - 1BC425E57B5CB088BDA03EC217C4A296 /* PBXTargetDependency */, - EDC882F5A9E319FC89FF52A0006F1633 /* PBXTargetDependency */, - DAE1E2D997B20AE36F8FB3900FA1FB57 /* PBXTargetDependency */, - A8C4AF0D9864FACFD5F243F9EAC093D8 /* PBXTargetDependency */, - 66ECF9A30CDDCC992481301AD8288786 /* PBXTargetDependency */, - C99EEDE6A2E44D9DC5B3C0E9EE3F5DFC /* PBXTargetDependency */, - 23BBCCB52ED02E574E5807A022A2950C /* PBXTargetDependency */, - B7B4406C3DB3D8B4CC6B30FF160AB4B3 /* PBXTargetDependency */, - 891AAD2BEBCF9E03ECEDFAA0991361DE /* PBXTargetDependency */, - 2DA99CD96852B810D71949FDA8169DAF /* PBXTargetDependency */, - 2B49F9D88F3F9C4E9F3DBDB41D84E377 /* PBXTargetDependency */, - 0B1D374AC4810842C3B0136CD0531937 /* PBXTargetDependency */, - 605FE16E6F26B35C7ABAA8D0857567AE /* PBXTargetDependency */, - 6686E7BD8A13A125D9947CBFE9C013D7 /* PBXTargetDependency */, - 89A7890476B5AE6C3726DDBAA68550C6 /* PBXTargetDependency */, - D10BAF2FF27E86E0F470C63A7010D213 /* PBXTargetDependency */, ); - name = "Pods-RocketChatRN"; - productName = "Pods-RocketChatRN"; - productReference = 1E5177A82CD7E641E7A8F69772502085 /* libPods-RocketChatRN.a */; + name = UMCore; + productName = UMCore; + productReference = 7419615BE9C77060447B9498E8C5BC09 /* libUMCore.a */; productType = "com.apple.product-type.library.static"; }; - C516F6986B4E98C691493A983C65836A /* Pods-ShareRocketChatRN */ = { + A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */ = { isa = PBXNativeTarget; - buildConfigurationList = C17E95474DFD4744F303DF1A172EE04D /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildConfigurationList = C70B8DD136F9BAD341C1B40C899208EC /* Build configuration list for PBXNativeTarget "EXConstants" */; buildPhases = ( - D3C80A69FD8637D7FFA2D225D39393C1 /* Headers */, - 8917A097523E7A1950A41F6811843308 /* Sources */, - E9D1E527EF36358AE5E04CDA9A6C8FE5 /* Frameworks */, + 6199E50C54AD2932637DF85DC60C569F /* Headers */, + 292310AC1ACDD8EBFEF69008F27A606E /* Sources */, + 3A98B18BFA5EB2FE5C28511CAD147EDA /* Frameworks */, ); buildRules = ( ); dependencies = ( - 37DB5812F740435D90FCCA90032219FB /* PBXTargetDependency */, - 46863444D0E23AC8B1CF7B7C8B910433 /* PBXTargetDependency */, - 05C89B6C1BE5FE91FDDEB8EB5C1BA44B /* PBXTargetDependency */, - 8F2C91B7919966A47AA9D927BB60246C /* PBXTargetDependency */, - 9E099EBD75D158A7E7830D1FA23E46AC /* PBXTargetDependency */, - 38D3D258DCBDF1CBFC7CDADA153D7383 /* PBXTargetDependency */, - 6699AE00379F9C74FDBA4F2E584B751C /* PBXTargetDependency */, - D0DDE63CCB40AC1D1EDC62F38272350A /* PBXTargetDependency */, - D83C59C3D9203EB5C575C4A18BDBA479 /* PBXTargetDependency */, - E746E052EB8148F7064F84213C57D431 /* PBXTargetDependency */, - D6A17C7DC9891472CC8351DBEA099EFA /* PBXTargetDependency */, - D2CC37CB7C02F79E7DBC114548D24528 /* PBXTargetDependency */, - A42277DA8D5BC91B8F8DB952C6A3D9C4 /* PBXTargetDependency */, - A392910936219059F3ED28880AF1C13A /* PBXTargetDependency */, - B7AB41C3FDAF4673AADB790C8F0BCC3C /* PBXTargetDependency */, - 50CA16A64704AAE681626B776F1AABB2 /* PBXTargetDependency */, - 685B2D4184701D5B96D93EBC2F1C44B1 /* PBXTargetDependency */, - 2C14876F09F7E9DECAF3D1FE4CEB4FB4 /* PBXTargetDependency */, - FED11351F5321E7FE895DDEB3821C23A /* PBXTargetDependency */, - 06181EA460B49767F55FF4BBA05EDEE9 /* PBXTargetDependency */, - 4DEA24791A465444E9D845F75E361863 /* PBXTargetDependency */, - E2E8B7E5570DBFA2F2B9047DCBB120E6 /* PBXTargetDependency */, - 37D83D34B286E0CCC7C664F547036D15 /* PBXTargetDependency */, - 19212AE74C9DBD0933AD81C516F62459 /* PBXTargetDependency */, + BE70AB1116776A9F90A3C783B9F1769B /* PBXTargetDependency */, + C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */, ); - name = "Pods-ShareRocketChatRN"; - productName = "Pods-ShareRocketChatRN"; - productReference = 5A0FFFD4ADE7F817295DDA4CECEAD0FD /* libPods-ShareRocketChatRN.a */; + name = EXConstants; + productName = EXConstants; + productReference = C2E6BCF8D456455BD75D2FD735C2B056 /* libEXConstants.a */; productType = "com.apple.product-type.library.static"; }; - CF4FAC9A5886DAE63CE6D224BC85857E /* UMReactNativeAdapter */ = { + AFC189D722BE42FA3301F2DA83928057 /* RNImageCropPicker */ = { isa = PBXNativeTarget; - buildConfigurationList = A5304CEF10E405886D10D99C2FA2AFF2 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; + buildConfigurationList = 29B2BBE9E8771E28C82401E9EF47BA1E /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; buildPhases = ( - FE7EA97DB65C17D4C0C1F4DFBCC09B12 /* Headers */, - 05F8EB656A58AB8F49EC782CFCF9BA32 /* Sources */, - 235CA429352C1209F4E79AF27A53A43A /* Frameworks */, + 565F2E5B02106DDD0BA01EE3E45AAAB6 /* Headers */, + BB140CA630716843384F663A3660BFAB /* Sources */, + 24B3152E63BED4DA7289563A67E96534 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 29F40AAFEC753D9C37EAECAD37F77DD5 /* PBXTargetDependency */, - 7428429E26AF9D83B63D9AA557AFD12F /* PBXTargetDependency */, - E09B74773B253BDE1C63EBF5963AFE94 /* PBXTargetDependency */, + ABBECEA325377188E3443869D25E7B03 /* PBXTargetDependency */, + A3147D507CA5E32B09D417EE18DC19F5 /* PBXTargetDependency */, + 174391C05A1567D7B577CB95B8AA2E51 /* PBXTargetDependency */, ); - name = UMReactNativeAdapter; - productName = UMReactNativeAdapter; - productReference = EAFC6D9406D8C0A4E110816512C968BB /* libUMReactNativeAdapter.a */; + name = RNImageCropPicker; + productName = RNImageCropPicker; + productReference = 7FE734CD6E27A147E8CD7BF2385CAB68 /* libRNImageCropPicker.a */; productType = "com.apple.product-type.library.static"; }; - D4C80D428A6706DF21E9315400ECC2AB /* yoga */ = { + B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */ = { isa = PBXNativeTarget; - buildConfigurationList = 3A1CDEE3462A54ADD98D7F944698F23B /* Build configuration list for PBXNativeTarget "yoga" */; + buildConfigurationList = 08C4767D793682C307862495EDFC6F37 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */; buildPhases = ( - D8EA0827550C23140C98968468EDC7E9 /* Headers */, - A8A81394CCEC860149D0A352397116AE /* Sources */, - 2460DD4A0DDE5BC6371C669E94E6DE5F /* Frameworks */, + 07EA496922703B388FA6473ED46A4F8D /* Headers */, + D89D7FE949ACB9856F33FBF82572B196 /* Sources */, + 9A22F16A5E9D7F5EA2A5F36905D8D1DD /* Frameworks */, ); buildRules = ( ); dependencies = ( + 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */, ); - name = yoga; - productName = yoga; - productReference = C94C33640551DD7413CC81126420CC13 /* libyoga.a */; + name = EXWebBrowser; + productName = EXWebBrowser; + productReference = 48EE6575C1CFEA2AEDE0D19DF8D79F0E /* libEXWebBrowser.a */; productType = "com.apple.product-type.library.static"; }; - DD927FD31886A98DF6F8FCEE90BD0139 /* QBImagePickerController-QBImagePicker */ = { + CAFCB38ADB763972D323BBBC5D20EEF7 /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 7BBBE3D346CB97840699AD93A3D62A47 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildConfigurationList = E8761BAA05C69BC596B176C709D64DCF /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - 92CF4F0B759D5DA3F19B119ABD694402 /* Sources */, - C9485CC9CB23AB40A5D61E18EAE9B6D6 /* Frameworks */, - CC871E56639FC510DD869B2E7A9EECB7 /* Resources */, + AF57E42464E79A25FA46933B81663583 /* Headers */, + E902228C56BF17ABCECB54AD85BF8D0F /* Sources */, + FA91271D5E28DFE1FE11DA33F273027C /* Frameworks */, ); buildRules = ( ); dependencies = ( + 5FD8A5B32D955598C166731689D43BB3 /* PBXTargetDependency */, + C0DE95101474CE581AAB481D216AE6CA /* PBXTargetDependency */, + 551C7801DC43DC6B080B23ADC24D1BE6 /* PBXTargetDependency */, + F6F6970B3BDA41EFD0FD5EE94F062825 /* PBXTargetDependency */, + A49D2EECB107A1C97F1CD4F173CACC82 /* PBXTargetDependency */, + C6A970C7BD45A0A3617A568FFC03967B /* PBXTargetDependency */, + 0FC411D7B8C423005F6C30684DB7480E /* PBXTargetDependency */, + 7613AA847FD8B3185C0A55E1EF39BE31 /* PBXTargetDependency */, + 06EACC7C05FB48DF953A96D69ECFB108 /* PBXTargetDependency */, + B872B9130B4FBA0C21D898DF3872DF22 /* PBXTargetDependency */, + 58F065B042F6CCC3F3411EB8C3220948 /* PBXTargetDependency */, + 2D8E53337BD4BCDD2B269DFEC2331E51 /* PBXTargetDependency */, + 87ED9D95B656E086B2F0C1CC1A8BFAED /* PBXTargetDependency */, + F59CC7FEA272F92FAE17CA0A9D25106E /* PBXTargetDependency */, + 6A1ABF14CE329B9F6FE8D06ECF6171CE /* PBXTargetDependency */, + 9AE519A6378F356EBEE89C7F8BEFF4AF /* PBXTargetDependency */, + 568CE235946B6E6F5AB1A08373A1002D /* PBXTargetDependency */, + D2320FE685BEA142AF4DA738949E8D1D /* PBXTargetDependency */, + B9F516CB01BFCACEC895FC70CCC25829 /* PBXTargetDependency */, + 317A130975305E93F2566374B9201742 /* PBXTargetDependency */, + 10B865951A1E1D3CEF7C63DC0C91E05D /* PBXTargetDependency */, + 66BAE87543C14805E01D84493EE37510 /* PBXTargetDependency */, + 860FB484027B723D65E32C10C827B09E /* PBXTargetDependency */, + 75C254D2DAAA204A5E9EACE5D2DD9B5D /* PBXTargetDependency */, + C6E04EB2D9133A003848E238C21552C1 /* PBXTargetDependency */, + 7D42A130104A015504A5663E68DF7A95 /* PBXTargetDependency */, + CEC3CD2B0CF40C8F4B7BA03F56EE8AD5 /* PBXTargetDependency */, + 32078457FA820005D94207972EE95CAF /* PBXTargetDependency */, + D4937CE0036CC44441FAA56DD70715BD /* PBXTargetDependency */, + 8474AEC0830DC2720D3D683831E6FCD1 /* PBXTargetDependency */, + D7E8DBBB62EE2657681CFD787DB70FEC /* PBXTargetDependency */, + B0EAF6F36E43BB21244B2F0B5E346EE1 /* PBXTargetDependency */, + 888501E5F5D8E1D5E57D1720C068D599 /* PBXTargetDependency */, + BBD4886151789AB6623BC62B6C4E8EF8 /* PBXTargetDependency */, + A2F8CA90F13A11B87A927769D272D25A /* PBXTargetDependency */, + 7806EA7FB8CB21EBE80CCDD0040DCC00 /* PBXTargetDependency */, + 0CB3D3F6FD4BACDFA3570825B5E7ACA4 /* PBXTargetDependency */, + 2BCA19842454328D83258587C047C25E /* PBXTargetDependency */, + 59EBF269602E8CC09674E2B83044CFB2 /* PBXTargetDependency */, + 5AC91A598C47D3587CF64971CA254B8B /* PBXTargetDependency */, + 3135780B753B9236ADAF63B31BAA17D3 /* PBXTargetDependency */, + DC9CB8F78188E2EF85E16D35D1722A14 /* PBXTargetDependency */, + AAAC2BF342AEF0D920807BB739AE3DF5 /* PBXTargetDependency */, + 539549CEE257F5EA91A2C4155FDFE8A7 /* PBXTargetDependency */, + 00B46473E0D3A8CAE6E31EAE5D2B2FAA /* PBXTargetDependency */, + F2608C94A03B3959AA68658878830D26 /* PBXTargetDependency */, + 8587522030FEBE5FB40E53EB773E4A6F /* PBXTargetDependency */, + DFCCB9D82FD0CF87122DD1AA3F667125 /* PBXTargetDependency */, + 085EA91AB4EA1BBD60035AA14F6D972E /* PBXTargetDependency */, + 337453CE686077AE607E10B35CB56A32 /* PBXTargetDependency */, + D40F17B18FFCA2DD1425CBC587141D80 /* PBXTargetDependency */, ); - name = "QBImagePickerController-QBImagePicker"; - productName = "QBImagePickerController-QBImagePicker"; - productReference = 0FBB6CE2FC46A7EEE9B58139D2F6507F /* QBImagePicker.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Pods-RocketChatRN"; + productName = "Pods-RocketChatRN"; + productReference = 63A2C7F825019C2F37A3D5B672CCC93A /* libPods-RocketChatRN.a */; + productType = "com.apple.product-type.library.static"; }; - DF470A1028ED32C9E70DBDAA805F8802 /* Folly */ = { + DF4DC904616B1B1E4A07E8EC5F5EC979 /* UMReactNativeAdapter */ = { isa = PBXNativeTarget; - buildConfigurationList = 9811B54698490F73C0B6CC6E1889626F /* Build configuration list for PBXNativeTarget "Folly" */; + buildConfigurationList = A52B09CD2FF08F47D7B57854045891DE /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */; buildPhases = ( - 2203AB066D4CD3F505DFCC82F2AE8D25 /* Headers */, - 5FB00FA1F1269AE77FB2EAF6C8E61AD0 /* Sources */, - C09BF11F1881278EB1AC1B19C7436806 /* Frameworks */, + E766D3CD96138CF5BE414713DCA78211 /* Headers */, + 32780B74C6E1608FD9E15D152A50CDA8 /* Sources */, + 82AF551B92E3C5B5B4D03A85CCD7AD7C /* Frameworks */, ); buildRules = ( ); dependencies = ( - C83FC2C3E8CEC32DD8932E44896D7CFB /* PBXTargetDependency */, - BD2C22AF6121E6B72DFB98F8BBAB9A69 /* PBXTargetDependency */, - 8C00E3FF0B5CEFE1A868AC9062D115FF /* PBXTargetDependency */, + 54ACBB84936B96C82ECFA100E2B4F1D7 /* PBXTargetDependency */, + 451A9C0F112E5075971EA7A5E96A1405 /* PBXTargetDependency */, + 7A9B7A803D5FE0040DCEB20B409EF781 /* PBXTargetDependency */, ); - name = Folly; - productName = Folly; - productReference = EDEB5B9C8E9AE70B2B6EA2E2FEFC822E /* libFolly.a */; + name = UMReactNativeAdapter; + productName = UMReactNativeAdapter; + productReference = 004FA892142BC5EF9C7C3646A89CA8A8 /* libUMReactNativeAdapter.a */; productType = "com.apple.product-type.library.static"; }; - E08017052120BCA7B6CF9CEBD72E5B81 /* react-native-webview */ = { + E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */ = { isa = PBXNativeTarget; - buildConfigurationList = 10FA8A5D5C24D5658E3B08FAA4E334EF /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildConfigurationList = 694A8CE4B2F3D4A51F73B435FF654E3C /* Build configuration list for PBXNativeTarget "EXPermissions" */; buildPhases = ( - 029C524AB3BEC8ABAAD983C05FEA8B27 /* Headers */, - B47908F4B02362BF047D303FC13E7A55 /* Sources */, - 9CDC5E2E04D39CD0D05B3F091AF6EEDC /* Frameworks */, + E4D17E96D903B293E993863B6F717145 /* Headers */, + 9609AAA15E463B8786B346FAC04672A0 /* Sources */, + 7E45C3FC79B9029C8BDA87BBEF9B76A0 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 59FC780C05D3BDFAFDCE20667270F9DB /* PBXTargetDependency */, + EECEC39CD1A9AF30CCFCB71B11A14B7D /* PBXTargetDependency */, + B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */, ); - name = "react-native-webview"; - productName = "react-native-webview"; - productReference = 3997FC6F3D10DE3F652E3AD4AB9A980A /* libreact-native-webview.a */; + name = EXPermissions; + productName = EXPermissions; + productReference = 7D1572D0A81CB920AC0A5BEBE601742B /* libEXPermissions.a */; + productType = "com.apple.product-type.library.static"; + }; + E2BC182D60EBDE8BDC6D1715DE3A82AC /* RSKImageCropper */ = { + isa = PBXNativeTarget; + buildConfigurationList = B9C577A5808579DD1E74535030E5801F /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildPhases = ( + 293B9443ABE5647E0C19B7F8F4F00245 /* Headers */, + EC440821023ECD4134066CE4FE38E81C /* Sources */, + 770A3B329A0672EA9F52078201701847 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RSKImageCropper; + productName = RSKImageCropper; + productReference = 9C5AA37519C8C90BEE2FA16240662171 /* libRSKImageCropper.a */; productType = "com.apple.product-type.library.static"; }; E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */ = { @@ -6802,25 +6919,25 @@ ); name = GTMSessionFetcher; productName = GTMSessionFetcher; - productReference = 0224BFAC559A614A3E5BDB8591BCB8CD /* libGTMSessionFetcher.a */; + productReference = F4C480E1EF4112F2B28FCBE872E65262 /* libGTMSessionFetcher.a */; productType = "com.apple.product-type.library.static"; }; - F1B0EEC7C26C308083C4FBB35B19D550 /* QBImagePickerController */ = { + E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 7B3FF03EEBB90373683F314983B9E4D7 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; + buildConfigurationList = 7A0BB810D8382042FC5DDA38048DE154 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; buildPhases = ( - 7DF7DDBC1A94D5E78B218AC66C765F79 /* Headers */, - 92296131E515F97F802211FEFE577D80 /* Sources */, - D1CA28E63679FBDBC0A16BCB697FCE6A /* Frameworks */, + 983D893D55CE7B265711016DE372DB73 /* Headers */, + 11B0008A8B90D046F30160BBCE5D5EF9 /* Sources */, + 5F1B77A5C07FE0E10C95C80ADB62F375 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 396FA3804EA9940F50B76DB4535343AA /* PBXTargetDependency */, + 984F7CC406925ED778B868443B6B3CB6 /* PBXTargetDependency */, ); - name = QBImagePickerController; - productName = QBImagePickerController; - productReference = 828F786006E9475A8F48D9903907BF7D /* libQBImagePickerController.a */; + name = RNDeviceInfo; + productName = RNDeviceInfo; + productReference = BAE447C41D111839BA0F623B729945BD /* libRNDeviceInfo.a */; productType = "com.apple.product-type.library.static"; }; F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */ = { @@ -6837,42 +6954,26 @@ ); name = Protobuf; productName = Protobuf; - productReference = 1ABD1C4A2F2C3C0271F1F0C1B7DDBA59 /* libProtobuf.a */; - productType = "com.apple.product-type.library.static"; - }; - F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1C32006CC07DA731A4A3EB74DE490502 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */; - buildPhases = ( - 9308D3939AFAB2C5117CBAD222E15FE1 /* Headers */, - 6B872F375232FDACC3D546EF9D28485C /* Sources */, - CEED69BFDF6A885185DB264BF3D59019 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = EXAppLoaderProvider; - productName = EXAppLoaderProvider; - productReference = 279714E82B7622AB40021F0705546733 /* libEXAppLoaderProvider.a */; + productReference = D3049A18CD3AC667DC38BCFEBD4E3A6C /* libProtobuf.a */; productType = "com.apple.product-type.library.static"; }; - F94AAE7B66066E8A00FEBE0CEDCB9096 /* react-native-orientation-locker */ = { + FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */ = { isa = PBXNativeTarget; - buildConfigurationList = 331FC6A6D0DA17367B896E7A3E2CFAA5 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildConfigurationList = FBC40A7F6CC2304CFC78A61E757FCC99 /* Build configuration list for PBXNativeTarget "EXFileSystem" */; buildPhases = ( - 7A6DDAC54258F84F29BCA3C4BDA9A22F /* Headers */, - 4388E696D15C92F0D8C6BE890E3AA51B /* Sources */, - 0478C04204243CF327D6DBED3E726CEF /* Frameworks */, + CA08E1126E2EED28DC45A14AE3200DDD /* Headers */, + B53F6EED305935D2B2365FE6336F4F34 /* Sources */, + B8E263271A672B5588806F2987A6EFCF /* Frameworks */, ); buildRules = ( ); dependencies = ( - FC76707EA656CF1C47E82BD2633A1D66 /* PBXTargetDependency */, + 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */, + 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */, ); - name = "react-native-orientation-locker"; - productName = "react-native-orientation-locker"; - productReference = B255B62845F95CEB6B65720585C04A60 /* libreact-native-orientation-locker.a */; + name = EXFileSystem; + productName = EXFileSystem; + productReference = 8FC09F8F473E743C692CF37481AD28EE /* libEXFileSystem.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ @@ -6881,8 +6982,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"; @@ -6892,19 +6993,19 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = A5972B97DEFFA9B251EE3E5699796075 /* Products */; + productRefGroup = 50FCEB63D541A827419E20E05EFA6AF5 /* 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 */, @@ -6913,56 +7014,57 @@ 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 */, - B121AEB49B7BCB7BA05F2305488DFCD6 /* Pods-RocketChatRN */, - C516F6986B4E98C691493A983C65836A /* Pods-ShareRocketChatRN */, + CAFCB38ADB763972D323BBBC5D20EEF7 /* Pods-RocketChatRN */, + 4AF1C7BAEFCE2A32C72F1AABAF74AA00 /* Pods-ShareRocketChatRN */, F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */, - F1B0EEC7C26C308083C4FBB35B19D550 /* QBImagePickerController */, - DD927FD31886A98DF6F8FCEE90BD0139 /* QBImagePickerController-QBImagePicker */, - A81A76054DDFFB213887570FBA0C500B /* react-native-document-picker */, - F94AAE7B66066E8A00FEBE0CEDCB9096 /* react-native-orientation-locker */, - 803BEC492C34A471892F5E1B8EF9DFB1 /* react-native-splash-screen */, - E08017052120BCA7B6CF9CEBD72E5B81 /* react-native-webview */, - 1BF2913C5EC8E56B198C82312CA178BF /* RNDeviceInfo */, - 2028458048597D68A7298BB3C8C1E9BB /* RNImageCropPicker */, - 6653EE6BC241DCDF86799473CF05303F /* RNLocalize */, - 78C72C16EF60158FECF52B5762368F44 /* RNScreens */, - 809B32A1AFD7C6F0D8E7A0E42D21B56A /* RSKImageCropper */, - 86D46B5F7EA763C3041CA2087A947D2E /* UMBarCodeScannerInterface */, - E44123D8CC993126C80CB5CA0A56B610 /* UMCameraInterface */, - D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */, - 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */, - E4BFA976B260562E97E7EFBDEFE87B72 /* UMFaceDetectorInterface */, - 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */, - 012EE4243226ABBB0BCDFF486045809E /* UMFontInterface */, - F3FBABCAF7437339A36C2DB10E815361 /* UMImageLoaderInterface */, - 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */, - CF4FAC9A5886DAE63CE6D224BC85857E /* UMReactNativeAdapter */, - 2EF7AAC4B473FC5EE7FAF38C422E42B2 /* UMSensorsInterface */, - 8512B7E98946D00581570BEAA92952AC /* UMTaskManagerInterface */, - D4C80D428A6706DF21E9315400ECC2AB /* yoga */, + 7576203C2856D63CE7ACAEB26FDDFB6B /* QBImagePickerController */, + 4AF5E628EAB736BEF1F7FD9320938BD2 /* QBImagePickerController-QBImagePicker */, + 23FF201B9797478F2F3250595974DE03 /* react-native-document-picker */, + 617459C51E8685DC1604FE74E1E93024 /* react-native-orientation-locker */, + 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */, + 81C054123AFD73E9DFE7239A455A404E /* react-native-splash-screen */, + 59C1091111E1D9F774B8BBDFD529A0CD /* react-native-webview */, + E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */, + AFC189D722BE42FA3301F2DA83928057 /* RNImageCropPicker */, + 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */, + 0FB41CE4381552CA15BC78737D4C350D /* RNScreens */, + E2BC182D60EBDE8BDC6D1715DE3A82AC /* RSKImageCropper */, + BA72812BDDB8AD27AC5EC609D0D5DAF3 /* UMBarCodeScannerInterface */, + B93FC7FBB72DC12DA58AC12DAD1125E8 /* UMCameraInterface */, + 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */, + 8601F7B19425496C5312C6F111D6E777 /* UMCore */, + 04F2065D21456DD872C5C43AB59ADD11 /* UMFaceDetectorInterface */, + 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */, + 61BBB5951F8410A3F291DFCFA7FBB0ED /* UMFontInterface */, + AD8E174269DB70F077106CD3E4799822 /* UMImageLoaderInterface */, + 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */, + DF4DC904616B1B1E4A07E8EC5F5EC979 /* UMReactNativeAdapter */, + EB92566E001FC40AD291F3CA77C5C2F4 /* UMSensorsInterface */, + D00660683B62A9AB32408C607FA0CC9A /* UMTaskManagerInterface */, + 135D3E6523830EF3D6030BF433E40372 /* yoga */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - CC871E56639FC510DD869B2E7A9EECB7 /* Resources */ = { + BB1962C47F058612234F8E417D92B699 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - BA6A227781EB55F4FB382A99E46E469B /* de.lproj in Resources */, - AC4F473510F2654C2CB7AA7D69DC7C5D /* en.lproj in Resources */, - FF6235825E3E9AED7ADB6D5960B51CDC /* es.lproj in Resources */, - C2C7D231CBBD8A092B7D2C522F8C1C5C /* ja.lproj in Resources */, - 07CE9BC85D70CB14707EB0B39EEB2899 /* QBImagePicker.storyboard in Resources */, - 347CCDA32A42CA2110C6032A54F3AD5E /* zh-Hans.lproj in Resources */, + 5F33A88AEB4882D9AB727CFB15FB1597 /* de.lproj in Resources */, + 5C30D2624E293669A20BA3D803D3C745 /* en.lproj in Resources */, + BACF4FF0242F8A8197F61D49824B72FB /* es.lproj in Resources */, + 382C2E817A391B9EC0D468297AA33846 /* ja.lproj in Resources */, + E34F577DE3C9965499AC5F9986DD356D /* QBImagePicker.storyboard in Resources */, + 857BE9AE3B5B0BBBA8EF4C47C677EE2A /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6979,28 +7081,46 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 05F8EB656A58AB8F49EC782CFCF9BA32 /* Sources */ = { + 061DACD6DFC3EBD596A23786331E4418 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 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; + }; + 09D825D04275B9AA0887F0B176B5FCB5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 11B0008A8B90D046F30160BBCE5D5EF9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E6CCC620483B29E129E7AE248BB26224 /* UMModuleRegistryAdapter.m in Sources */, - A3CDE5B1F040AC112D6432C8C6D56A9A /* UMNativeModulesProxy.m in Sources */, - 790E7703319FCB705DD53445D4F20ECA /* UMReactFontManager.m in Sources */, - D3F17A2332A6569967162E0CEE656426 /* UMReactLogHandler.m in Sources */, - 234AC94C983D2EEC4B16AD508709D19A /* UMReactNativeAdapter-dummy.m in Sources */, - C56138312E4048C515B782FB8E5A3C9E /* UMReactNativeAdapter.m in Sources */, - E5F1170EDE47B6CB9995A25E4E179E1A /* UMReactNativeEventEmitter.m in Sources */, - B740CD3D7FA44A84EA500186E1CF311D /* UMViewManagerAdapter.m in Sources */, - 7AF09D953D7D9747C10A9C2DD38B9997 /* UMViewManagerAdapterClassesRegistry.m in Sources */, + 19E5155555E497E6C27F66B0152E5AA4 /* DeviceUID.m in Sources */, + 488532CE86BAD8E19B9A30A2C246BA1F /* RNDeviceInfo-dummy.m in Sources */, + AD3B4AED29358109EE7F17CC861D9F50 /* RNDeviceInfo.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1556CF231485381A5AB8A5A8ED12D454 /* Sources */ = { + 14FDD66EBFE7902E95A286560FA1337F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9213722E8B9960FFB8C9392015DC916C /* react-native-splash-screen-dummy.m in Sources */, - F0B76175EE9F4A616590DAAFFD8B5C6B /* RNSplashScreen.m in Sources */, + C713862BFB8BD8F419D0523DD218EFF4 /* RNScreens-dummy.m in Sources */, + 27444D047FA570009E1F8AFB879D2C74 /* RNSScreen.m in Sources */, + 6246D907AD638D1DCD1A10AA988321F9 /* RNSScreenContainer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7015,12 +7135,29 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 2ECD582BCB640BDFDC55376471386363 /* 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; + }; + 32780B74C6E1608FD9E15D152A50CDA8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 87CB8A9C0258B48B9436BEFBFB936653 /* RNLocalize-dummy.m in Sources */, - 7182576D273881C060248D51100E0B44 /* RNLocalize.m in Sources */, + 21E73BD751F54484D260A00C2EB08783 /* UMModuleRegistryAdapter.m in Sources */, + 58379115C0327DDFD8C31B29DCF1958F /* UMNativeModulesProxy.m in Sources */, + 28F6B70B530EF918D1026D647DED9DFB /* UMReactFontManager.m in Sources */, + D6D21D3FAA227E859502F142FFF7CEF7 /* UMReactLogHandler.m in Sources */, + C9AED5204E9C1D908636C7AB8DC0A32C /* UMReactNativeAdapter-dummy.m in Sources */, + 661C4FBAC64C5BC556613D4080641615 /* UMReactNativeAdapter.m in Sources */, + 144625E3202F45C2D373617B09801847 /* UMReactNativeEventEmitter.m in Sources */, + 9DB428AA527C1B3B1A608160B85AA511 /* UMViewManagerAdapter.m in Sources */, + BFD147ED924833657BDB46E2BBA9BBCF /* UMViewManagerAdapterClassesRegistry.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7045,12 +7182,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4388E696D15C92F0D8C6BE890E3AA51B /* Sources */ = { + 3645D9856A200032AA8C2E8B1313331A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C4024044D07F6FCB65B481E2909B8666 /* QBAlbumCell.m in Sources */, + C47137D6FE0E5C9E31C8EF10D27F24D9 /* QBAlbumsViewController.m in Sources */, + 424BAC2369E5A6E1072264D09811FB53 /* QBAssetCell.m in Sources */, + C2DD92B1A0CD3C57411E1C9663446CF6 /* QBAssetsViewController.m in Sources */, + 7BF3C30444FA62FAE5D7474ADB477551 /* QBCheckmarkView.m in Sources */, + FD4273F2F0ADDAA1C4821FC9955DDF4D /* QBImagePickerController-dummy.m in Sources */, + EFEB6DAC9B9C1EA0F694A2A1760A1A94 /* QBImagePickerController.m in Sources */, + B0058808A2C8B7E7B45022E30EA79AAE /* QBSlomoIconView.m in Sources */, + A59EE24E45C9D907CD700EB242C98360 /* QBVideoIconView.m in Sources */, + 48454372DE951FB7EC3677D15B3A171D /* QBVideoIndicatorView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 38D5D45120CCB27ED9E19FB030631774 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 484E3AE09965FB061282B10034884EA8 /* Orientation.m in Sources */, + 046AE5C35766A231B0774F3A69DEB696 /* react-native-orientation-locker-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4222174B5D431DA8313C71C24717DC41 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F27351C5088180B6AE0411D78099299A /* Orientation.m in Sources */, - A449452709AA455CD3EBC541C4598B71 /* react-native-orientation-locker-dummy.m in Sources */, + 9FE61DB5E1DAF7047C2FA52A52E22450 /* Pods-ShareRocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7091,36 +7253,37 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4D5055F433A220384E59965EA89C7389 /* Sources */ = { + 529ECFD34EB290F4D54D1BD9A5E5A3D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C8E9ACDF5779C8F1FFDAF8F922DF1AA6 /* RNScreens-dummy.m in Sources */, - F624906D68F6CF2D9A5A54F21548EC1C /* RNSScreen.m in Sources */, - C7791EC8A9A197C5FCCDA9003C69155F /* RNSScreenContainer.m in Sources */, + 97E341A41481C3979C5728D79249CBB8 /* Utils.cpp in Sources */, + 9456AAC60228BC704FC87F9A339482A2 /* YGConfig.cpp in Sources */, + B6C35154DA281099C1AADEA1956E5EBA /* YGEnums.cpp in Sources */, + 395BBE16B196FE3396B41FD00CA6BB60 /* YGLayout.cpp in Sources */, + 4E73B7F00B095CD969E171249C320AC2 /* YGMarker.cpp in Sources */, + 3D5465DE2AED4D2553BB758CB24C2860 /* YGNode.cpp in Sources */, + 8A7A457B08A6B8FE5940709A20ADA564 /* YGNodePrint.cpp in Sources */, + D365350A1B2CFDAF96ADE09BD5D6CC8F /* YGStyle.cpp in Sources */, + A6CA29B0DA323A8DF688591BCFA181EF /* YGValue.cpp in Sources */, + D03EA48CEBE28E2BA6124B3F50BA2ABE /* yoga-dummy.m in Sources */, + 0A0A4705F5E9E9608ED13CCCA082AAF5 /* Yoga.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5FB00FA1F1269AE77FB2EAF6C8E61AD0 /* Sources */ = { + 63B5C59657683A239FEB79ACF5597581 /* 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 */, + 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; }; @@ -7136,217 +7299,152 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 6B872F375232FDACC3D546EF9D28485C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 307CB65169E8986E7C907168C1FDDF66 /* EXAppLoaderProvider-dummy.m in Sources */, - EFDFE7E1BAA482B57A5362F7936B8D96 /* EXAppLoaderProvider.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 72D1B94D49B7BE31D50F2C90BDFB35F0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9F52068CBD6B264524ACC79811E24A3B /* react-native-document-picker-dummy.m in Sources */, - 3B2D9B7C6D3737A877068C4BF9F7CD4F /* RNDocumentPicker.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7626A7BB2A7AF80AE33C0010A5BC2CE9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DA9405922A91004A0BF6AF5F3574BE81 /* EXHaptics-dummy.m in Sources */, - CC7E5E3068B8A7F3A12B2BDBCB96E302 /* EXHapticsModule.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7CD392B2F5800AD37DD5DCE1C984884E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 741BE50BA5F881A3983CB7F192225344 /* EXDownloadDelegate.m in Sources */, - C63ACD8218A2D9E10EE682934D0F4CFC /* EXFilePermissionModule.m in Sources */, - C18ABBF4D019811130D472686862B429 /* EXFileSystem-dummy.m in Sources */, - 8D47D902B89DCD2A92DEDDE21C74D541 /* EXFileSystem.m in Sources */, - F9A5B02F41A79DC79E3279F53783AF90 /* EXFileSystemAssetLibraryHandler.m in Sources */, - 6B31930D61CE82588E6115C8E41479CA /* EXFileSystemLocalFileHandler.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8917A097523E7A1950A41F6811843308 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - CF115387312D6FA99DE9939069FF05AE /* Pods-ShareRocketChatRN-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8C32F3E0A67B24AF464ADC58B0BE112F /* Sources */ = { + 6C4C435603FCB8767E754C4E20AB9C10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 61DB05B676737659776E885C28CE048A /* Pods-RocketChatRN-dummy.m in Sources */, + F6722F4300CAABD36CE79FBC941150A3 /* react-native-webview-dummy.m in Sources */, + B4FAAC2A1A9373B7A90BB2EB37CA1FDA /* RNCUIWebView.m in Sources */, + 0F0200D8E9C231DBA8137D0D27D76D2E /* RNCUIWebViewManager.m in Sources */, + 9BCC719F1610955DDC1E8AE9211F5425 /* RNCWKProcessPoolManager.m in Sources */, + 4C132CE26DC00D614C9AB9663046FDBA /* RNCWKWebView.m in Sources */, + CF01A7DD41A80BF04211064007C07813 /* RNCWKWebViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 92296131E515F97F802211FEFE577D80 /* Sources */ = { + 73763C6E7BD2820F0CD7E11ECAE71AF2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EBB0A14EED369E5D875F7A33E026093B /* QBAlbumCell.m in Sources */, - 31633FC371A071149454AEAC01E9F010 /* QBAlbumsViewController.m in Sources */, - B1B699973163D0FEBD6DB8324533A332 /* QBAssetCell.m in Sources */, - AA46AEB8799E314092D94CBB27673B52 /* QBAssetsViewController.m in Sources */, - 739E77E2361476B8217F0421D35BBFE0 /* QBCheckmarkView.m in Sources */, - C62F5B82673DD842849F296E580F3190 /* QBImagePickerController-dummy.m in Sources */, - CA91BCDB91EF4F9CCBA4F6DB07C5B3FA /* QBImagePickerController.m in Sources */, - 9512EA9BB55A06CC797DFC909248FA1E /* QBSlomoIconView.m in Sources */, - 3962D48BD20C18F08BFC6CA224575675 /* QBVideoIconView.m in Sources */, - 0D7F803B04F7A1EF34D708876C2E0B6D /* QBVideoIndicatorView.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; }; - 92CF4F0B759D5DA3F19B119ABD694402 /* Sources */ = { + 7B2064515B5ED192AB985AB805EAC3EE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 580240B0622D11D27185586F62C95571 /* RNLocalize-dummy.m in Sources */, + 0B0C9CDB3BB27422996599F53E7CFC09 /* RNLocalize.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; }; - A6C5040BCE203F411247AC644E4ECCA8 /* Sources */ = { + 9ED7695E4EDA6926DEE64D2BE78207DA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F691D9FA47A573CADDCF5584D7D693DE /* EXConstants-dummy.m in Sources */, - 5DBBB91027255885AAE7B300C895779A /* EXConstants.m in Sources */, - CDBC59077AD1D33760F3265595534A61 /* EXConstantsService.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; }; - A8A81394CCEC860149D0A352397116AE /* Sources */ = { + A1CEE05B7650F20AFD7CA6419496BB8C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E24C96A45214932F5813325CD7FAD029 /* Utils.cpp in Sources */, - 8BB5822FD7CF2A2291B737D33B151A92 /* YGConfig.cpp in Sources */, - 96617F911787BA297A9AD3981EC8FE9E /* YGEnums.cpp in Sources */, - 772126D4771EAFD51E5E12C9FDBE4E87 /* YGLayout.cpp in Sources */, - 764C31AFF3F81F08B6C5E4053CE2A8C5 /* YGMarker.cpp in Sources */, - 8A14297183A4EF597DBF42B4758709AA /* YGNode.cpp in Sources */, - 6CB8A47FF17CCE72FF0EE0B5EBBBA2CA /* YGNodePrint.cpp in Sources */, - 55D8DFF2A980C8550C02EB12F4FDB220 /* YGStyle.cpp in Sources */, - FD2F58177DD348FAF4BB96BB8D0B55EC /* YGValue.cpp in Sources */, - 4D5D82F1954C11BD3FD51638583AA8C8 /* yoga-dummy.m in Sources */, - 2C242328AE492F316131B4CAE16D735D /* Yoga.cpp in Sources */, + 80C4F646F8963D04605290ED96E3BB1A /* react-native-realm-path-dummy.m in Sources */, + 98DFFF21AB4C960BBEA949E6C225EA88 /* RNRealmPath.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AA93C0886CBDE6F80796D554B98AE227 /* Sources */ = { + A72511B819400C5A896743A02500FB41 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7DC7D7C5C0B8A2A90FCB0E2DF710E02B /* Compression.m in Sources */, - 06DB97AA4D51ABEB05E39B082642D45B /* ImageCropPicker.m in Sources */, - 03264F83F234779E6370451AC35D74C8 /* RNImageCropPicker-dummy.m in Sources */, - 74FF7CB7C93351A8D717E704F9059414 /* UIImage+Resize.m in Sources */, + 3A317AFB452DD05A3096E391D4FA8CC8 /* react-native-document-picker-dummy.m in Sources */, + B805785A2E43EA6DED4169A6012303F4 /* RNDocumentPicker.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AF79C27E186ECD23F4886459F14405D1 /* Sources */ = { + ABD2FBA0E77B06B753088EBD9888F5E5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8A8DF976B1ABA03165E5872A8D69DAE3 /* CGGeometry+RSKImageCropper.m in Sources */, - F832ADCA7DD100A09A841ECF40AA394C /* RSKImageCropper-dummy.m in Sources */, - 1741B97F01C40A8B14D79E0F5E2BDBD6 /* RSKImageCropViewController.m in Sources */, - E9657D26ADDCA8998C03510740D93925 /* RSKImageScrollView.m in Sources */, - 04E29AD06C09CF741C3CB9BA91A55CF4 /* RSKInternalUtility.m in Sources */, - F2A4F0169186E97D7A2DA0D1ADAF91DA /* RSKTouchView.m in Sources */, - C921A97BE4DFFC75AA0315E19BEDD74D /* UIApplication+RSKImageCropper.m in Sources */, - C01CA5C2FEA36F50AF0787C97DD0A059 /* UIImage+RSKImageCropper.m in Sources */, + 7FD38A141A665260CBDBC2A484CEB790 /* react-native-splash-screen-dummy.m in Sources */, + 2C7098145D910ED0119861F24D099EC3 /* RNSplashScreen.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AF7E2A8BB3196AB169293F1A66B46A56 /* Sources */ = { + B53F6EED305935D2B2365FE6336F4F34 /* 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 */, + 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; }; - B0332E51FEAABE23FBE9EDEF7DAE717D /* Sources */ = { + BB140CA630716843384F663A3660BFAB /* 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 */, + F3E985434924E8CF026DDB0415E12F07 /* Compression.m in Sources */, + 7D17F0ED308D3AC97B4AE80395628A3C /* ImageCropPicker.m in Sources */, + B9A2DCD11C948D6821607F5584A88486 /* RNImageCropPicker-dummy.m in Sources */, + 2FF30E634BB47222F4A50057C7A69207 /* UIImage+Resize.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B47908F4B02362BF047D303FC13E7A55 /* Sources */ = { + BCDCD0C34A5BF68884EE50161FA4DE35 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BB8CE023847F33673B684E7D212EDD03 /* react-native-webview-dummy.m in Sources */, - 4E4C434AF0295132859806A02E412BAA /* RNCUIWebView.m in Sources */, - AD3B75C8BF214E7A0C9ABA02CA9A544C /* RNCUIWebViewManager.m in Sources */, - 20D75267ED04465BFD9BDCD9D5BC9C57 /* RNCWKProcessPoolManager.m in Sources */, - CE7867F4A1D925B90477DAFC4159A3E5 /* RNCWKWebView.m in Sources */, - B416C7DC6B6F9701C2FB6281F6E44F7A /* RNCWKWebViewManager.m in Sources */, + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */, + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7382,22 +7480,35 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D8BADC07DACE496C6A1D36DECF9264FB /* Sources */ = { + D89D7FE949ACB9856F33FBF82572B196 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */, + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E902228C56BF17ABCECB54AD85BF8D0F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 590169C3BE81E6FE9B67E19D5DCFC107 /* EXWebBrowser-dummy.m in Sources */, - FAF6B57EDEE412A783FD3FD64B4DBF17 /* EXWebBrowser.m in Sources */, + 2D11C20D8BC0B5A08C5034CEF1D6E126 /* Pods-RocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EB8921EA3665CF987A545417AF099A84 /* Sources */ = { + EC440821023ECD4134066CE4FE38E81C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 24BB91403D6BE1CF5A0B280D86C22B71 /* DeviceUID.m in Sources */, - EA2FBAEA9DF440C9AE427449D212AC67 /* RNDeviceInfo-dummy.m in Sources */, - EF6D81B76EB3866BFE3069C11C1EFFDE /* RNDeviceInfo.m in Sources */, + 3AA53AF15F15E8753345353A0A837F0A /* CGGeometry+RSKImageCropper.m in Sources */, + 8E72A08495A84744B8F6B5B7E4FA2451 /* RSKImageCropper-dummy.m in Sources */, + 26F9F2B542B9BA73FB684BF67B874579 /* RSKImageCropViewController.m in Sources */, + 7F2D0829939B0940DDD1C8400B979C8E /* RSKImageScrollView.m in Sources */, + 26EF38C55EA1EB9A2D377EB54A15F63B /* RSKInternalUtility.m in Sources */, + FB47898131567EF31FDCB674A07EAEDF /* RSKTouchView.m in Sources */, + 9FAFB2E4473C23CE1CD770D0BFE27CF7 /* UIApplication+RSKImageCropper.m in Sources */, + BACC7B01572F7FD2BF250AA2DF3A4E06 /* UIImage+RSKImageCropper.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7425,33 +7536,29 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0045830760D82A17533D54D75A66258C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 05F2B12CCBD5077F5206A05854D1A04A /* PBXContainerItemProxy */; - }; - 05C89B6C1BE5FE91FDDEB8EB5C1BA44B /* PBXTargetDependency */ = { + 00B46473E0D3A8CAE6E31EAE5D2B2FAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = B1A8886696827E049A32FEC96C61DDA5 /* PBXContainerItemProxy */; + name = nanopb; + target = 2543734D0A332B2588202904B99CC151 /* nanopb */; + targetProxy = E436B6DC396658B681C57F3B847AF7B9 /* PBXContainerItemProxy */; }; - 06181EA460B49767F55FF4BBA05EDEE9 /* PBXTargetDependency */ = { + 05DC270E09EE5BC9E109E84BCE26885A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = AE0BA90FA1ED54B13ED8985808FB69EE /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; + targetProxy = 72DC5089D7015830BBCDBDF27FAFC96E /* PBXContainerItemProxy */; }; - 068DD7020CD7E02ACE1DCFAD9B5029C6 /* PBXTargetDependency */ = { + 06EACC7C05FB48DF953A96D69ECFB108 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 2028458048597D68A7298BB3C8C1E9BB /* RNImageCropPicker */; - targetProxy = C6E5AD4E64AFB12E6E988DD8A4C84F45 /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 37DC019AFABA0B108DA744E227249BAC /* PBXContainerItemProxy */; }; - 0828803F3A97E6C61441E496CE0720AD /* PBXTargetDependency */ = { + 085EA91AB4EA1BBD60035AA14F6D972E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; - targetProxy = 636B2409BC85BCED8787E89990BEA431 /* PBXContainerItemProxy */; + name = "react-native-splash-screen"; + target = 81C054123AFD73E9DFE7239A455A404E /* react-native-splash-screen */; + targetProxy = 700FF290AC594D6B978C0A991E347B6F /* PBXContainerItemProxy */; }; 08E6B860862204A263BA88F85507831A /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7459,17 +7566,17 @@ target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; targetProxy = 5B65179DE5276B59CE042E73FDDA241B /* PBXContainerItemProxy */; }; - 0B1D374AC4810842C3B0136CD0531937 /* PBXTargetDependency */ = { + 0CB3D3F6FD4BACDFA3570825B5E7ACA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-document-picker"; - target = A81A76054DDFFB213887570FBA0C500B /* react-native-document-picker */; - targetProxy = C3F908AC2DD5C8939EE36F8EE1092DDB /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 61BBB5951F8410A3F291DFCFA7FBB0ED /* UMFontInterface */; + targetProxy = A36D2F569C38D8B17E2534B08579C039 /* PBXContainerItemProxy */; }; - 0DD9708C7EEE027F678098AA08361AE7 /* PBXTargetDependency */ = { + 0D23E31FE61765C060513EF894BEFC1F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = 78C72C16EF60158FECF52B5762368F44 /* RNScreens */; - targetProxy = 5BFBF01F776A0AB7D0159BD242AC8FAB /* PBXContainerItemProxy */; + name = RNLocalize; + target = 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */; + targetProxy = 2983B09D3E9AC3BA6506F2EE94BE176B /* PBXContainerItemProxy */; }; 0F0A8B73246A3F2340DC1E516950CCBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7477,17 +7584,35 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = D1D3303C3AD8C1B99F2E4AF4B23DCEB2 /* PBXContainerItemProxy */; }; + 0FC411D7B8C423005F6C30684DB7480E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXPermissions; + target = E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */; + targetProxy = 506F52052455D56219ABB63CC3B42251 /* PBXContainerItemProxy */; + }; 10173A91591A0BB5F8FBBE26505497A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */; }; - 10555C1878E912D9ADCC834B955E9DA7 /* PBXTargetDependency */ = { + 10B865951A1E1D3CEF7C63DC0C91E05D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 1BF2913C5EC8E56B198C82312CA178BF /* RNDeviceInfo */; - targetProxy = 2B0023264553DA0C17A2822B690233D1 /* PBXContainerItemProxy */; + name = GoogleToolboxForMac; + target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; + targetProxy = 5744754DDDFB2AEEC56F1B7BDEC645FC /* PBXContainerItemProxy */; + }; + 12FCE190F30535B0E26D16475614334C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseRemoteConfig; + target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; + targetProxy = DAD95BEEF63491B2F10C991A7F06C621 /* PBXContainerItemProxy */; + }; + 156C51256C0E6BF3406DFD70C84CF30B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; + targetProxy = 7FD5404087F77FD99F6BC1EBC9567BAE /* PBXContainerItemProxy */; }; 15D5DC6D54EDFCCE801AF55317683059 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7495,29 +7620,28 @@ target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; targetProxy = D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */; }; - 16AC675FAD7761E55E75F0E58A5C7592 /* PBXTargetDependency */ = { + 174391C05A1567D7B577CB95B8AA2E51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseRemoteConfig; - target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; - targetProxy = DA1EB595AA0DF1259D566CF1F792D0C2 /* PBXContainerItemProxy */; + name = React; + targetProxy = FC68BCC44D8C5727004EC721EC176FB5 /* PBXContainerItemProxy */; }; - 19212AE74C9DBD0933AD81C516F62459 /* PBXTargetDependency */ = { + 17B0305E08C7EF9ED292AA9014450AF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = yoga; - target = D4C80D428A6706DF21E9315400ECC2AB /* yoga */; - targetProxy = 079DD563B155F61559051A0AB3CDB5E8 /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 9A2D94180C1D8549B209C4F116F4FC88 /* PBXContainerItemProxy */; }; - 1BC425E57B5CB088BDA03EC217C4A296 /* PBXTargetDependency */ = { + 18A0E09FE601E01C0D44FC1CEB9A9F12 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFaceDetectorInterface; - target = E4BFA976B260562E97E7EFBDEFE87B72 /* UMFaceDetectorInterface */; - targetProxy = FF02B7979C4699C72336D242A5C8BBEE /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; + targetProxy = 3CC2EA99A4F73187F7A2CD42265AD7C9 /* PBXContainerItemProxy */; }; - 1C7BC65EE5D0AE985F3F9D390F082C25 /* PBXTargetDependency */ = { + 1C9D60F94C44973489D2998E6355A134 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */; - targetProxy = 70F37C141BA487162A565A5A71134D97 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = EE427B1B4E78C41D489DA719CA6ED496 /* PBXContainerItemProxy */; }; 1D189DA7DFB1A6568E971F9A6DAA9E87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7525,69 +7649,59 @@ target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; targetProxy = 87D02EAE1DD3CC8AB9B8D646D27548A4 /* PBXContainerItemProxy */; }; - 22441E5AFBE737F69854BEFE69E9F1B0 /* PBXTargetDependency */ = { + 25FF94CB1F0E40824E1E6AF9F1F0421A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = E59574394782182AD725C4A25B1370F3 /* PBXContainerItemProxy */; - }; - 23BBCCB52ED02E574E5807A022A2950C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMSensorsInterface; - target = 2EF7AAC4B473FC5EE7FAF38C422E42B2 /* UMSensorsInterface */; - targetProxy = 284DA118236FA40DFE6F9F5B75E4F35E /* PBXContainerItemProxy */; - }; - 27D2D1773275AB2A9FA5951630BB42EE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; - targetProxy = 65547C980BBA94B15988413D34993B90 /* PBXContainerItemProxy */; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 113CDDB809E5888DDC4ACE47ACB7FEB3 /* PBXContainerItemProxy */; }; - 29F40AAFEC753D9C37EAECAD37F77DD5 /* PBXTargetDependency */ = { + 26514345C480A4C45F1045D773CE3CBE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = B2F216FE57BD14B4B3FAF4DF6EA38D0B /* PBXContainerItemProxy */; + name = glog; + target = 1DBC3090C8BE77C9F4202B0421E0791E /* glog */; + targetProxy = 213564F23047B277074FF21BECE2730B /* PBXContainerItemProxy */; }; - 2B49F9D88F3F9C4E9F3DBDB41D84E377 /* PBXTargetDependency */ = { + 2BCA19842454328D83258587C047C25E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 2543734D0A332B2588202904B99CC151 /* nanopb */; - targetProxy = E4D9F6D7F5F8FF95123D92E6BAD83C17 /* PBXContainerItemProxy */; + name = UMImageLoaderInterface; + target = AD8E174269DB70F077106CD3E4799822 /* UMImageLoaderInterface */; + targetProxy = A44A7A5827E52DEF38891CA928DA2769 /* PBXContainerItemProxy */; }; - 2C14876F09F7E9DECAF3D1FE4CEB4FB4 /* PBXTargetDependency */ = { + 2CAAC3DDB567FBAC78F00C9AA4974FB4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 1BF2913C5EC8E56B198C82312CA178BF /* RNDeviceInfo */; - targetProxy = D68FB8ADB4C2F16933D16D1B7D3D01D2 /* PBXContainerItemProxy */; + name = yoga; + target = 135D3E6523830EF3D6030BF433E40372 /* yoga */; + targetProxy = D542C9898F15CAE736F218FA34F44C60 /* PBXContainerItemProxy */; }; - 2D38DFB081585228340A47365325660F /* PBXTargetDependency */ = { + 2D8E53337BD4BCDD2B269DFEC2331E51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; - targetProxy = C1CE1E8C4F8EE7DBCBE8AE422071DEBF /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; + targetProxy = ED5550F400E3A19DB8EEE7C7F35F7227 /* PBXContainerItemProxy */; }; - 2DA99CD96852B810D71949FDA8169DAF /* PBXTargetDependency */ = { + 3135780B753B9236ADAF63B31BAA17D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; - targetProxy = EBCE17E29FC780E74B0DBCB32BAD93FF /* PBXContainerItemProxy */; + name = UMSensorsInterface; + target = EB92566E001FC40AD291F3CA77C5C2F4 /* UMSensorsInterface */; + targetProxy = F4A7019787B2C68AB06172B2DF9C1FA5 /* PBXContainerItemProxy */; }; - 2FA54EC112515E4A3EF63E83EBC8D733 /* PBXTargetDependency */ = { + 317A130975305E93F2566374B9201742 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = A7C477F16F437F0AFFBF067E258EB1E4 /* PBXContainerItemProxy */; + name = GoogleIDFASupport; + target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; + targetProxy = 371A8EF26379607DD47210A5645AA680 /* PBXContainerItemProxy */; }; - 312C2A524CE4F237E951670A83B23413 /* PBXTargetDependency */ = { + 32078457FA820005D94207972EE95CAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = 7A15FCB6A4BF13879F465F48CB8B888D /* PBXContainerItemProxy */; + name = RNScreens; + target = 0FB41CE4381552CA15BC78737D4C350D /* RNScreens */; + targetProxy = 275D5944D4E9DEDFF928C0833A9C22EB /* PBXContainerItemProxy */; }; - 315B0CFA94E789308C3E33481E04DDA2 /* PBXTargetDependency */ = { + 337453CE686077AE607E10B35CB56A32 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXFileSystem; - target = 8F9FB30742F24E06348CA6BB7BE816B4 /* EXFileSystem */; - targetProxy = 9475C27C245079677A4C178FC0396FF0 /* PBXContainerItemProxy */; + name = "react-native-webview"; + target = 59C1091111E1D9F774B8BBDFD529A0CD /* react-native-webview */; + targetProxy = 84E8980FCCB36E7CD26DA230A574E569 /* PBXContainerItemProxy */; }; 346905C1D5815D2D235745231BC39BD4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7595,6 +7709,18 @@ target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; targetProxy = 1CE3E751E533C71A2F0C6903F97BFDE8 /* PBXContainerItemProxy */; }; + 355F5296A38F514AA0697865A001FDC0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebasePerformance; + target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; + targetProxy = 1BB7BA8D5AB15D02C96722FAA92673E7 /* PBXContainerItemProxy */; + }; + 3564B69A1C503366BACE5FC87D262333 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-realm-path"; + target = 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */; + targetProxy = F97763298CEF81309A9AF83CF3E4BEF8 /* PBXContainerItemProxy */; + }; 36CD4D8E0E797C66E5A80685E8F52205 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -7607,41 +7733,11 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = A07A8F019F42721442DA50F68DCECAFB /* PBXContainerItemProxy */; }; - 37D83D34B286E0CCC7C664F547036D15 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = 2543734D0A332B2588202904B99CC151 /* nanopb */; - targetProxy = 545A4BC910ACF774C7D1B3898D69BE10 /* PBXContainerItemProxy */; - }; - 37DB5812F740435D90FCCA90032219FB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = F63BAD00A77209AE9E709CB7B69913E0 /* PBXContainerItemProxy */; - }; - 380DEAC308F60DF213ECA1949D06E062 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = UMConstantsInterface; - target = D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */; - targetProxy = 6D4CEA60298C8C4012E08EFDFC17F1A9 /* PBXContainerItemProxy */; - }; - 38D3D258DCBDF1CBFC7CDADA153D7383 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; - targetProxy = 8315DDACCEA8C95A382D0B06171F592E /* PBXContainerItemProxy */; - }; - 396FA3804EA9940F50B76DB4535343AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "QBImagePickerController-QBImagePicker"; - target = DD927FD31886A98DF6F8FCEE90BD0139 /* QBImagePickerController-QBImagePicker */; - targetProxy = 7A48F73BBB5D0FF1BBD8B794129AF602 /* PBXContainerItemProxy */; - }; - 3E56B5BEA3C0A0A4A52D8A2EDD469759 /* PBXTargetDependency */ = { + 3981F6B25A5281D5D5F11320205AD8F7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */; - targetProxy = 4D868DD673E0BCD75FCE3AD3B286CA4F /* PBXContainerItemProxy */; + name = FirebaseABTesting; + target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; + targetProxy = 39A0F904829CB76B90D5C6B0017D742F /* PBXContainerItemProxy */; }; 3FD0607DDBDC01E6CFDA9FFAD045CA25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7655,23 +7751,16 @@ target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; targetProxy = EEBBFE74636D6BC7E8D380B4DBDBC621 /* PBXContainerItemProxy */; }; - 418D06AD77752FCDA6C52C4BD77E65E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = EXHaptics; - target = 45018F5317EE8A727FB05D4B61A678A6 /* EXHaptics */; - targetProxy = 786742BF817D3A2E1B42B112F4D4D1E2 /* PBXContainerItemProxy */; - }; 41E729F98A51CA2192BC60C83870A12D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 9D25F24407F3DB7F8037248B4DA8103D /* PBXContainerItemProxy */; }; - 42D1AFF2B6C5704E02CF9DAE113F2BD9 /* PBXTargetDependency */ = { + 43232CE3008160AB0AA0D1F4F66DB94B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = F74A952D19CA208DC7A5870F689DCE96 /* PBXContainerItemProxy */; + name = React; + targetProxy = 2FC7AB9630737D89CC5F76C5A46464C8 /* PBXContainerItemProxy */; }; 437B0F97998657B6786A27AF6A5D1A59 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7679,34 +7768,52 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */; }; - 46863444D0E23AC8B1CF7B7C8B910433 /* PBXTargetDependency */ = { + 451A9C0F112E5075971EA7A5E96A1405 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; - targetProxy = BC90676054F6FB36FB066904374641EC /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 4F52E96A961F5AF7436A79481EB95CE0 /* PBXContainerItemProxy */; }; - 4DEA24791A465444E9D845F75E361863 /* PBXTargetDependency */ = { + 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = 5CC1BA1ACB007EE6BC3605F7D410E95B /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; + targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 4E7FB57F044F42CD14B868E20EE700AC /* PBXTargetDependency */ = { + 515E131115CAD41B5AFB09FAC3295722 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; - targetProxy = DDE01DC76116A713480C66CB8C245DFA /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 39799A6DAB8568994F771B7CAB2A5AAA /* PBXContainerItemProxy */; }; - 50CA16A64704AAE681626B776F1AABB2 /* PBXTargetDependency */ = { + 539549CEE257F5EA91A2C4155FDFE8A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; - targetProxy = A9F8BE267C4E2014D37069D20710DA93 /* PBXContainerItemProxy */; + name = glog; + target = 1DBC3090C8BE77C9F4202B0421E0791E /* glog */; + targetProxy = 762AAA2B37858242E366805E3D42698A /* PBXContainerItemProxy */; }; - 57A9A063B5F36ECD4637424F7253F3D1 /* PBXTargetDependency */ = { + 54ACBB84936B96C82ECFA100E2B4F1D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = E52AD35543AC0324F4DD8E89DC2259C2 /* PBXContainerItemProxy */; + targetProxy = F0D231D5A9118E7A7D9418A4405ABED7 /* PBXContainerItemProxy */; + }; + 551C7801DC43DC6B080B23ADC24D1BE6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXAppLoaderProvider; + target = 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */; + targetProxy = F7E9060797EC9942911E6A31FC5978F2 /* PBXContainerItemProxy */; + }; + 568CE235946B6E6F5AB1A08373A1002D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */; + targetProxy = C15A4D32BA16FEB5B67427B9D0B73E19 /* PBXContainerItemProxy */; + }; + 58F065B042F6CCC3F3411EB8C3220948 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseABTesting; + target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; + targetProxy = B7A7401145DCA3B779EBBCD909756643 /* PBXContainerItemProxy */; }; 59054A7FA3AB60507B8236E0964559D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7714,27 +7821,29 @@ target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 30E4AFE91AFE993916F5FF5C06DD35DD /* PBXContainerItemProxy */; }; - 5970A3E240B10AA6B3E62815BCB7D86B /* PBXTargetDependency */ = { + 59EBF269602E8CC09674E2B83044CFB2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 809B32A1AFD7C6F0D8E7A0E42D21B56A /* RSKImageCropper */; - targetProxy = E5DEA174AB46FED88A15053D852D125A /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */; + targetProxy = B4489FF2F4937B0B87050357EB3E65E6 /* PBXContainerItemProxy */; }; - 59FC780C05D3BDFAFDCE20667270F9DB /* PBXTargetDependency */ = { + 5AC91A598C47D3587CF64971CA254B8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = 928B7C9776B0EEA71BC214E16417BEED /* PBXContainerItemProxy */; + name = UMReactNativeAdapter; + target = DF4DC904616B1B1E4A07E8EC5F5EC979 /* UMReactNativeAdapter */; + targetProxy = 3E9FE0018CEFB861F7F5F417A133EB77 /* PBXContainerItemProxy */; }; - 5D4356CC6E5DBCAFE4C9FB48B9C8CF70 /* PBXTargetDependency */ = { + 5F3518D836F3905EBFCBE88425EE90B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = 6653EE6BC241DCDF86799473CF05303F /* RNLocalize */; - targetProxy = 8F8F2774BC86372D3716F69F7F804387 /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = F90AB3538C448A960F8448CF412AB769 /* PBXContainerItemProxy */; }; - 5FB67ABCEE5A23A975B8A75B04BCB3E0 /* PBXTargetDependency */ = { + 5FD8A5B32D955598C166731689D43BB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = B98472E1EC3F8F0A307CC3DAC3E33C23 /* PBXContainerItemProxy */; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = 2910073AB6C6DE35588115EB50141CDE /* PBXContainerItemProxy */; }; 5FDFBD6CCE0D066C9CAC81B3BB271825 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7742,112 +7851,122 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */; }; - 605FE16E6F26B35C7ABAA8D0857567AE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = F94AAE7B66066E8A00FEBE0CEDCB9096 /* react-native-orientation-locker */; - targetProxy = E64C4A5E286078F9045165712ED89E39 /* PBXContainerItemProxy */; - }; 62609725AFE0040B619D312D29D0BB45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = CDF9E4862D1A69A546518D09BF29A96E /* PBXContainerItemProxy */; }; - 62D88790A4BEC54C715861BBC512333A /* PBXTargetDependency */ = { + 63F10C439748EE2A6393092EBEC15269 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCameraInterface; - target = E44123D8CC993126C80CB5CA0A56B610 /* UMCameraInterface */; - targetProxy = 1DE43774B6000419AD8896C09E2AF610 /* PBXContainerItemProxy */; + name = Folly; + target = 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */; + targetProxy = F16D85BF10A150F2EB5F72DCD49C0A28 /* PBXContainerItemProxy */; }; - 62F3CF367305C8CE5F8D644EDD05CAAC /* PBXTargetDependency */ = { + 66961F37938A041C8ACEA8626B04CE43 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXAppLoaderProvider; - target = F42432668A0F81BE898F1FEA0D6A83B7 /* EXAppLoaderProvider */; - targetProxy = 266F38FE30CC51DE411C1C3155EC8FF9 /* PBXContainerItemProxy */; + name = GoogleToolboxForMac; + target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; + targetProxy = 2385313AF5A872CD60E1D2BFB52FAA21 /* PBXContainerItemProxy */; }; - 660C8670E2CFDB50ED0CDC5A6A234449 /* PBXTargetDependency */ = { + 66BAE87543C14805E01D84493EE37510 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Folly; - target = DF470A1028ED32C9E70DBDAA805F8802 /* Folly */; - targetProxy = 0279CF96F0E6B30B19069BE999F4A2AB /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; + targetProxy = 2216019AFB150A6C3CB9430F3ECFECE9 /* PBXContainerItemProxy */; }; - 661A408FB871FD4918850AEEEF512EA6 /* PBXTargetDependency */ = { + 67D8E107060139EAB29430B4C73FE111 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXConstants; - target = 2F8CF410B0326B6DEB5A2CDA4E2A2D8B /* EXConstants */; - targetProxy = C6F9E06054EE3EF7A66F9E9516F8F038 /* PBXContainerItemProxy */; + name = FirebasePerformance; + target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; + targetProxy = CD235DDD6ED40AF6628D34E57EB6B2EE /* PBXContainerItemProxy */; }; - 6686E7BD8A13A125D9947CBFE9C013D7 /* PBXTargetDependency */ = { + 6A1ABF14CE329B9F6FE8D06ECF6171CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-splash-screen"; - target = 803BEC492C34A471892F5E1B8EF9DFB1 /* react-native-splash-screen */; - targetProxy = 8B97FD8BB3EDC2ED5E192DAE4A5C5FA8 /* PBXContainerItemProxy */; - }; - 6699AE00379F9C74FDBA4F2E584B751C /* PBXTargetDependency */ = { + name = FirebasePerformance; + target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; + targetProxy = F9440B625E803766A0AF6DA1BFF0E36C /* PBXContainerItemProxy */; + }; + 6B65871E9787D7423E4371A9FD5F46AB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; - targetProxy = 5B8C76C45A2136665C0571CC3F9AC091 /* PBXContainerItemProxy */; + targetProxy = C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */; }; - 66ECF9A30CDDCC992481301AD8288786 /* PBXTargetDependency */ = { + 6D9EE29F2686B731008A3C1A8046196A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMPermissionsInterface; - target = 037B3080D17C0918F3E81F3A1BC9210D /* UMPermissionsInterface */; - targetProxy = 62904A352E9BDD7C12A9F0F243DEDB37 /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; + targetProxy = C7B780F3B34321F634A645A383811CDE /* PBXContainerItemProxy */; }; - 67D8E107060139EAB29430B4C73FE111 /* PBXTargetDependency */ = { + 6F4D5767618C5165B39951C9446CC674 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebasePerformance; - target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; - targetProxy = CD235DDD6ED40AF6628D34E57EB6B2EE /* PBXContainerItemProxy */; + name = React; + targetProxy = 4A63E1C410E51622BD0A118A052F2C91 /* PBXContainerItemProxy */; }; - 685B2D4184701D5B96D93EBC2F1C44B1 /* PBXTargetDependency */ = { + 7061FCB729CBF838DDE02088BB50A272 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Protobuf; - target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; - targetProxy = D435D7CC29C198156EAA2FD534ED2A4E /* PBXContainerItemProxy */; + name = FirebaseAnalytics; + target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; + targetProxy = 359FAC0A48EACB6ECF48EF71B274C6A7 /* PBXContainerItemProxy */; }; - 69AC560D423D510C9D952CCF655DA790 /* PBXTargetDependency */ = { + 719CF049AEB9960AE8779693E1EFE7E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; - targetProxy = A161FE1267D341AC56435F1D6519CCC3 /* PBXContainerItemProxy */; + name = GoogleUtilities; + target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; + targetProxy = B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */; }; - 69E4A3EC26D8F5FF081E8C0E0FFB43D7 /* PBXTargetDependency */ = { + 72FEF033FFC2B6B38B7BC99C56CE6AE2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = 7F51F43672871374159A538ABABB9378 /* PBXContainerItemProxy */; + name = glog; + target = 1DBC3090C8BE77C9F4202B0421E0791E /* glog */; + targetProxy = 167724BE8CCBFDC74CD239959356A59C /* PBXContainerItemProxy */; }; - 6B65871E9787D7423E4371A9FD5F46AB /* PBXTargetDependency */ = { + 75C254D2DAAA204A5E9EACE5D2DD9B5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; - targetProxy = C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = 7576203C2856D63CE7ACAEB26FDDFB6B /* QBImagePickerController */; + targetProxy = 2A90DD5E3B186CFBB5114C2CEE4229EC /* PBXContainerItemProxy */; }; - 6B9529CCD483E27C8EE6FDC526365424 /* PBXTargetDependency */ = { + 7613AA847FD8B3185C0A55E1EF39BE31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMBarCodeScannerInterface; - target = 86D46B5F7EA763C3041CA2087A947D2E /* UMBarCodeScannerInterface */; - targetProxy = 156B5AEF4A8EED57D41D3B01D9685A14 /* PBXContainerItemProxy */; + name = EXWebBrowser; + target = B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */; + targetProxy = EE5E225899838EEF1E6E32B77A70761F /* PBXContainerItemProxy */; }; - 6D9EE29F2686B731008A3C1A8046196A /* PBXTargetDependency */ = { + 7806EA7FB8CB21EBE80CCDD0040DCC00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; - targetProxy = C7B780F3B34321F634A645A383811CDE /* PBXContainerItemProxy */; + name = UMFileSystemInterface; + target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; + targetProxy = 8C47412223509C5695149990BBEE4F52 /* PBXContainerItemProxy */; }; - 719CF049AEB9960AE8779693E1EFE7E9 /* PBXTargetDependency */ = { + 7A9B7A803D5FE0040DCEB20B409EF781 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; - targetProxy = B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */; + name = UMFontInterface; + target = 61BBB5951F8410A3F291DFCFA7FBB0ED /* UMFontInterface */; + targetProxy = 07C41619A6909308DFC8F3763BFC9F3E /* PBXContainerItemProxy */; }; - 7428429E26AF9D83B63D9AA557AFD12F /* PBXTargetDependency */ = { + 7C3BBDE8D8ABF5A613DA8AB38CE53D37 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = A7BA364FA94E21CD657005A5A07C522B /* PBXContainerItemProxy */; + name = React; + targetProxy = 9C31A485C410A54AB22FF118128FEE51 /* PBXContainerItemProxy */; + }; + 7D42A130104A015504A5663E68DF7A95 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = AFC189D722BE42FA3301F2DA83928057 /* RNImageCropPicker */; + targetProxy = C9F655210DCC9BBECDC3E2551CA749C9 /* PBXContainerItemProxy */; + }; + 80231C5AB2A69305BB489B210C60AC8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = F4BEE2076A9B86B580CCE1E09DACE3FF /* PBXContainerItemProxy */; + }; + 80926E72D43F59F2E6412AFA1BA73425 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; + targetProxy = F2F228AE683105704395ACD52FBF2DCD /* PBXContainerItemProxy */; }; 815248D0F2DBD89170D5E591539DF287 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7855,59 +7974,57 @@ target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */; }; - 8882760E90572404776E5D760A37F4EF /* PBXTargetDependency */ = { + 82652CE30CF96001F0E77085D4EEAF85 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = nanopb; - target = 2543734D0A332B2588202904B99CC151 /* nanopb */; - targetProxy = 33B78007BAC95CB937CF2DFE82E76C79 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; + targetProxy = 68DE229480D96DE348D64E9E776BE932 /* PBXContainerItemProxy */; }; - 88F4CBC37EDC22A18C73D6723A7C8552 /* PBXTargetDependency */ = { + 8474AEC0830DC2720D3D683831E6FCD1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = F694606F8A3B5D15625E633C00EB1AC8 /* PBXContainerItemProxy */; + name = React; + targetProxy = A448C7DD26F5E1EBBD5637CDDA4E386B /* PBXContainerItemProxy */; }; - 891AAD2BEBCF9E03ECEDFAA0991361DE /* PBXTargetDependency */ = { + 8587522030FEBE5FB40E53EB773E4A6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = A0CF8691920552928933F2E0C85ED9F6 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = 617459C51E8685DC1604FE74E1E93024 /* react-native-orientation-locker */; + targetProxy = D9CEADD0A5BF85990F08AB70288A4EF4 /* PBXContainerItemProxy */; }; - 89A7890476B5AE6C3726DDBAA68550C6 /* PBXTargetDependency */ = { + 860FB484027B723D65E32C10C827B09E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "react-native-webview"; - target = E08017052120BCA7B6CF9CEBD72E5B81 /* react-native-webview */; - targetProxy = 5D1AD928A6543B19561055CA123DFF53 /* PBXContainerItemProxy */; + name = Protobuf; + target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; + targetProxy = 2DB08B659A2F308FFCB15ACCA0D10197 /* PBXContainerItemProxy */; }; - 89CBF831C4432784678DB5ED9B411682 /* PBXTargetDependency */ = { + 87ED9D95B656E086B2F0C1CC1A8BFAED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXPermissions; - target = 5ED05858D3E3C1599A062FB1C45FE359 /* EXPermissions */; - targetProxy = F4F0A4ABB3DF78A5745825EA12C13965 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; + targetProxy = D5A52B1624B1534A68F744000EA30087 /* PBXContainerItemProxy */; }; - 8ABFCEFB63550F2A67DAE3D2C03F0929 /* PBXTargetDependency */ = { + 8882760E90572404776E5D760A37F4EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseABTesting; - target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; - targetProxy = 812DFDCD9048F08F69F05534AFE885F5 /* PBXContainerItemProxy */; + name = nanopb; + target = 2543734D0A332B2588202904B99CC151 /* nanopb */; + targetProxy = 33B78007BAC95CB937CF2DFE82E76C79 /* PBXContainerItemProxy */; }; - 8C00E3FF0B5CEFE1A868AC9062D115FF /* PBXTargetDependency */ = { + 888501E5F5D8E1D5E57D1720C068D599 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; - targetProxy = AADD210D1F940E270E559A5AE73B7D04 /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; + targetProxy = C02513E6525B1C18032BC93E0A7BDFE8 /* PBXContainerItemProxy */; }; - 8F2C91B7919966A47AA9D927BB60246C /* PBXTargetDependency */ = { + 8AA4FC913B7AEE9436E9689D139EB609 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; - targetProxy = D8DBA83FFFD144D24C14992C75E709A4 /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; + targetProxy = B76384D7C3DA6D95F986CDB18CBC2A6D /* PBXContainerItemProxy */; }; - 902BB8686A0FE9AA3973C9B0A3563691 /* PBXTargetDependency */ = { + 8C2E0DEC239014CB5C75B879F52B2591 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMConstantsInterface; - target = D6CDBA4F567B018F442382D2520D6D27 /* UMConstantsInterface */; - targetProxy = A57FA5C40A1BE5F5C481358F3D88E137 /* PBXContainerItemProxy */; + name = React; + targetProxy = C434376D1D4A02741732BA8877E03D64 /* PBXContainerItemProxy */; }; 904DE3584EB00D12608E1233E5B029A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7921,58 +8038,51 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94E9A5D5D73EADA398147912908A9311 /* PBXContainerItemProxy */; }; - 92D17714F82DB8DAB2D42CBE9F36A0AB /* PBXTargetDependency */ = { + 92F43D4CF8BE3A5ECB550939832F4F0D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = EXWebBrowser; - target = 240504C276270018DE05B3D0F038B1E5 /* EXWebBrowser */; - targetProxy = FA944219433ADF06588994778EB923C1 /* PBXContainerItemProxy */; + name = GoogleIDFASupport; + target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; + targetProxy = BAFA61E9079850A994F5762B6F154206 /* PBXContainerItemProxy */; }; - 946D0EFC24545D02A980A1130B8ACA69 /* PBXTargetDependency */ = { + 937633048AE4F69B9F397E1C5B238AF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; - targetProxy = 6C89FC23A5F66D3640E38053C2A0A202 /* PBXContainerItemProxy */; + targetProxy = 8232CB33EE4E725E39E19514E823CDDA /* PBXContainerItemProxy */; }; - 9B67F1299CC4D41DDAA28365464B1971 /* PBXTargetDependency */ = { + 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = 555A65E7837B1D026AA9456B02E5BC3B /* PBXContainerItemProxy */; - }; - 9BC5D4817775B93F6AB7B39BBC1F4478 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleIDFASupport; - target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; - targetProxy = 775132A53E1277ABBE9E412EC173B332 /* PBXContainerItemProxy */; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */; }; - 9E099EBD75D158A7E7830D1FA23E46AC /* PBXTargetDependency */ = { + 984F7CC406925ED778B868443B6B3CB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseABTesting; - target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; - targetProxy = 1BE37072EED6A7F6DC4DACE2E5874457 /* PBXContainerItemProxy */; + name = React; + targetProxy = 73F3E61E6A9590DA31CC24F1945C95D6 /* PBXContainerItemProxy */; }; - A08030A8CD7BAC8D7575C8C909818456 /* PBXTargetDependency */ = { + 9AE519A6378F356EBEE89C7F8BEFF4AF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Firebase; - target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; - targetProxy = D96509F89472049CDEE4F8807E7A16F7 /* PBXContainerItemProxy */; + name = FirebaseRemoteConfig; + target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; + targetProxy = B39EE80093E29C73C5DA1DCA89839DD4 /* PBXContainerItemProxy */; }; - A392910936219059F3ED28880AF1C13A /* PBXTargetDependency */ = { + A2F8CA90F13A11B87A927769D272D25A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleIDFASupport; - target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; - targetProxy = 67ED23A5BF71F7AE3FE6E11E75B1E03C /* PBXContainerItemProxy */; + name = UMFaceDetectorInterface; + target = 04F2065D21456DD872C5C43AB59ADD11 /* UMFaceDetectorInterface */; + targetProxy = B7E1F69D63F98F7F80CBE8798BE9E5AC /* PBXContainerItemProxy */; }; - A3E6DF9BD967FA290184844DA45E2BFA /* PBXTargetDependency */ = { + A3147D507CA5E32B09D417EE18DC19F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = F1B0EEC7C26C308083C4FBB35B19D550 /* QBImagePickerController */; - targetProxy = EA655D6AF0FE06BBD0F0B6642E88D5E9 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = E2BC182D60EBDE8BDC6D1715DE3A82AC /* RSKImageCropper */; + targetProxy = F1AD971338B2DF6A807B98F709BA1D52 /* PBXContainerItemProxy */; }; - A42277DA8D5BC91B8F8DB952C6A3D9C4 /* PBXTargetDependency */ = { + A49D2EECB107A1C97F1CD4F173CACC82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; - targetProxy = 858BDA576DD1F18DF4CB1C8811669140 /* PBXContainerItemProxy */; + name = EXFileSystem; + target = FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */; + targetProxy = 67B13CB7A88B64715ED2420D783FE010 /* PBXContainerItemProxy */; }; A5544C8F397EAF94A9618C8BDFE832B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7980,296 +8090,229 @@ target = 2543734D0A332B2588202904B99CC151 /* nanopb */; targetProxy = E60C05616D024BAA46966F3E6B4EDC1B /* PBXContainerItemProxy */; }; - A6611202097D5BAE3FF101BC7F6270E0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; - targetProxy = 5A5C1B735366A67F195F66328EBAD183 /* PBXContainerItemProxy */; - }; A77F0B68567841AA6CC89B462D035C95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */; }; - A8C4AF0D9864FACFD5F243F9EAC093D8 /* PBXTargetDependency */ = { + AAAC2BF342AEF0D920807BB739AE3DF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMImageLoaderInterface; - target = F3FBABCAF7437339A36C2DB10E815361 /* UMImageLoaderInterface */; - targetProxy = E77BD93B8F6EA1DD7AF97E51EAEBAC1A /* PBXContainerItemProxy */; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = 3053AE07786CE1B44726EB78A90C6D69 /* PBXContainerItemProxy */; }; - B10343AFE78662A3CF65F600C523CB21 /* PBXTargetDependency */ = { + ABBECEA325377188E3443869D25E7B03 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RSKImageCropper; - target = 809B32A1AFD7C6F0D8E7A0E42D21B56A /* RSKImageCropper */; - targetProxy = 13A083049AFAA2BB11F76C3FA8292174 /* PBXContainerItemProxy */; + name = QBImagePickerController; + target = 7576203C2856D63CE7ACAEB26FDDFB6B /* QBImagePickerController */; + targetProxy = 08D6DEDCEF085E9C17B9619744FBCD3B /* PBXContainerItemProxy */; }; - B1D316D2F2547CB13CB55DDAD4363BE2 /* PBXTargetDependency */ = { + AF9E4B4DEB4F9BC8911C71DB2A37F2CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebasePerformance; - target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; - targetProxy = 84B3D8E7C8B06F649E467DC4E37CAC60 /* PBXContainerItemProxy */; + name = "QBImagePickerController-QBImagePicker"; + target = 4AF5E628EAB736BEF1F7FD9320938BD2 /* QBImagePickerController-QBImagePicker */; + targetProxy = 7386848E6D802B7B06413C92F8B56C4D /* PBXContainerItemProxy */; }; - B758C106C4B08407A71DF4221E584B1C /* PBXTargetDependency */ = { + AFB2C43023C7F12DEB6D8106283A08D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; - targetProxy = C66EADD85C4434D9CE51D1DDAB7C6719 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */; + targetProxy = 631FD77A28B1BCDF4D45F41628BECCFE /* PBXContainerItemProxy */; }; - B7AB41C3FDAF4673AADB790C8F0BCC3C /* PBXTargetDependency */ = { + B0EAF6F36E43BB21244B2F0B5E346EE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; - targetProxy = 68B8E526790FE20F392E109CD0B77393 /* PBXContainerItemProxy */; + name = UMCameraInterface; + target = B93FC7FBB72DC12DA58AC12DAD1125E8 /* UMCameraInterface */; + targetProxy = 0603083579062A0E484C17840DAC57D4 /* PBXContainerItemProxy */; }; - B7B4406C3DB3D8B4CC6B30FF160AB4B3 /* PBXTargetDependency */ = { + B12997E3D5BE4F39EC03469A5CD99829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMTaskManagerInterface; - target = 8512B7E98946D00581570BEAA92952AC /* UMTaskManagerInterface */; - targetProxy = 301FD13D2A7EC0303ED795B810BF7647 /* PBXContainerItemProxy */; + name = UMPermissionsInterface; + target = 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */; + targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - BD2C22AF6121E6B72DFB98F8BBAB9A69 /* PBXTargetDependency */ = { + B2924FDDFB445084FCA45C581F2A7721 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = EB266CA52E321F1A5BD9E62115470A38 /* PBXContainerItemProxy */; + name = FirebaseCore; + target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; + targetProxy = 8034032320453D090C4663C66DAA3B29 /* PBXContainerItemProxy */; }; - C1B980A7F0177B327C6A07EFF5A60013 /* PBXTargetDependency */ = { + B872B9130B4FBA0C21D898DF3872DF22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; - targetProxy = A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */; + name = Firebase; + target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; + targetProxy = F368937BB792FB789468F75E9CF61132 /* PBXContainerItemProxy */; }; - C83FC2C3E8CEC32DD8932E44896D7CFB /* PBXTargetDependency */ = { + B9F516CB01BFCACEC895FC70CCC25829 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = DoubleConversion; - target = 1414ADEE4A421F3C5F9A229345CE3F61 /* DoubleConversion */; - targetProxy = CEE3627BDFC98BF4E34AB2269676FAFF /* PBXContainerItemProxy */; + name = GoogleAppMeasurement; + target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; + targetProxy = 0F97BFD45E71B2607F0E2D6BD5F81617 /* PBXContainerItemProxy */; }; - C99EEDE6A2E44D9DC5B3C0E9EE3F5DFC /* PBXTargetDependency */ = { + BA7F2E02425504FD66FF96EC1AD00D7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMReactNativeAdapter; - target = CF4FAC9A5886DAE63CE6D224BC85857E /* UMReactNativeAdapter */; - targetProxy = F3663456751D064F7E093CB672D760D5 /* PBXContainerItemProxy */; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = FCAD554FD7482E6FCCAF9742C73155D6 /* PBXContainerItemProxy */; }; - C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { + BBD4886151789AB6623BC62B6C4E8EF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 4F399CF6425EFFDE5D4551F87BFCA12E /* PBXContainerItemProxy */; }; - D0DDE63CCB40AC1D1EDC62F38272350A /* PBXTargetDependency */ = { + BE70AB1116776A9F90A3C783B9F1769B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; - targetProxy = E95BCD9CF05C5ADFD888F02BEEFEBBCB /* PBXContainerItemProxy */; + name = UMConstantsInterface; + target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; + targetProxy = 3CE12525FC73E81B8DC468274B077D13 /* PBXContainerItemProxy */; }; - D10BAF2FF27E86E0F470C63A7010D213 /* PBXTargetDependency */ = { + C0DE95101474CE581AAB481D216AE6CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = yoga; - target = D4C80D428A6706DF21E9315400ECC2AB /* yoga */; - targetProxy = 19952C7025B9E7B930FDF433845C8D60 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; + targetProxy = D8A10225A999F3F8C5534AA5457EDA18 /* PBXContainerItemProxy */; }; - D2CC37CB7C02F79E7DBC114548D24528 /* PBXTargetDependency */ = { + C1B980A7F0177B327C6A07EFF5A60013 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTMSessionFetcher; target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; - targetProxy = 16DDE719E35CFE85F743225FB10B5707 /* PBXContainerItemProxy */; - }; - D6A17C7DC9891472CC8351DBEA099EFA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = DF470A1028ED32C9E70DBDAA805F8802 /* Folly */; - targetProxy = 33F9A9605873A5A609A49C606F05E7D4 /* PBXContainerItemProxy */; + targetProxy = A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */; }; - D83C59C3D9203EB5C575C4A18BDBA479 /* PBXTargetDependency */ = { + C29BA1E354E50925D3D695468A87778A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebasePerformance; - target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; - targetProxy = E09E547C09587DE2571726618232E38A /* PBXContainerItemProxy */; + name = Protobuf; + target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; + targetProxy = 278BA50ACB18DDB3949BA8801EE10514 /* PBXContainerItemProxy */; }; - DAE1E2D997B20AE36F8FB3900FA1FB57 /* PBXTargetDependency */ = { + C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 012EE4243226ABBB0BCDFF486045809E /* UMFontInterface */; - targetProxy = 21E2CEA9BCAFDBBA54C6E585FDF11B86 /* PBXContainerItemProxy */; + name = UMCore; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */; }; - E01C26D060D5521DAB450B370FAE9CBF /* PBXTargetDependency */ = { + C6A970C7BD45A0A3617A568FFC03967B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = QBImagePickerController; - target = F1B0EEC7C26C308083C4FBB35B19D550 /* QBImagePickerController */; - targetProxy = 79A8F389DFC1FC1DDB3CF105B86F52FD /* PBXContainerItemProxy */; + name = EXHaptics; + target = 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */; + targetProxy = 4BDB52D20BEBA3EED21748D1127384AA /* PBXContainerItemProxy */; }; - E09B74773B253BDE1C63EBF5963AFE94 /* PBXTargetDependency */ = { + C6E04EB2D9133A003848E238C21552C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFontInterface; - target = 012EE4243226ABBB0BCDFF486045809E /* UMFontInterface */; - targetProxy = 205502DCC16A68E02B336B4F4B0DE755 /* PBXContainerItemProxy */; + name = RNDeviceInfo; + target = E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */; + targetProxy = 9774E0D25D90CF7D9500230ECA9096FA /* PBXContainerItemProxy */; }; - E2E8B7E5570DBFA2F2B9047DCBB120E6 /* PBXTargetDependency */ = { + C9CEFEFAAAEDB8CD947737FA56C849D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = glog; - target = 29FC2A0EC130F2F2AF7AC9AE94A583B4 /* glog */; - targetProxy = 90DBDDCAD64E987D02521F576616BE62 /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; }; - E2FBD41025C0CD2C30325C28D5CB7AC6 /* PBXTargetDependency */ = { + CD8431C9BABA48C0C73FD2E26EE908D9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; - targetProxy = 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */; + name = React; + targetProxy = B2026A1763363BD4448E48802860DD45 /* PBXContainerItemProxy */; }; - E746E052EB8148F7064F84213C57D431 /* PBXTargetDependency */ = { + CEC3CD2B0CF40C8F4B7BA03F56EE8AD5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseRemoteConfig; - target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; - targetProxy = F97DE72A3178E774FED93FB39DDDEAD1 /* PBXContainerItemProxy */; + name = RNLocalize; + target = 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */; + targetProxy = CE631DD21F23D1B55E24591202F7ACFF /* PBXContainerItemProxy */; }; - E90E23501E5301770C44885045B4AE06 /* PBXTargetDependency */ = { + D2320FE685BEA142AF4DA738949E8D1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = 63CC343CA180805876E85849C6D40C45 /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; + targetProxy = 6CA95E815EA2282FEF08226AAADC9AE4 /* PBXContainerItemProxy */; }; - EDC882F5A9E319FC89FF52A0006F1633 /* PBXTargetDependency */ = { + D40F17B18FFCA2DD1425CBC587141D80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMFileSystemInterface; - target = 031F6220C2D49E4AD5F61FAA0ECADF64 /* UMFileSystemInterface */; - targetProxy = 4AF55166CD00C99D7B0FA9C57A8DBB90 /* PBXContainerItemProxy */; + name = yoga; + target = 135D3E6523830EF3D6030BF433E40372 /* yoga */; + targetProxy = 6DE562E80BFFFFAC266CD3417322B8A6 /* PBXContainerItemProxy */; }; - F541B0BB5C228843BB87EB1868782C56 /* PBXTargetDependency */ = { + D4937CE0036CC44441FAA56DD70715BD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Protobuf; - target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; - targetProxy = 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */; + name = RSKImageCropper; + target = E2BC182D60EBDE8BDC6D1715DE3A82AC /* RSKImageCropper */; + targetProxy = B324CA5F3E8D31003D17C7B260AD47E7 /* PBXContainerItemProxy */; }; - F8F677D53EA57B1F3042177F25B528E1 /* PBXTargetDependency */ = { + D7E8DBBB62EE2657681CFD787DB70FEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 6775627146E44388CC4401C295AA7F67 /* PBXContainerItemProxy */; + name = UMBarCodeScannerInterface; + target = BA72812BDDB8AD27AC5EC609D0D5DAF3 /* UMBarCodeScannerInterface */; + targetProxy = 2C18D1B1DD1B3119B067603602E381CA /* PBXContainerItemProxy */; }; - F9CF08FA9AD826A591F409FC3A03FA2B /* PBXTargetDependency */ = { + DC9CB8F78188E2EF85E16D35D1722A14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleUtilities; - target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; - targetProxy = 341B458D9DE4CA0E8DF8B82F4B28C847 /* PBXContainerItemProxy */; + name = UMTaskManagerInterface; + target = D00660683B62A9AB32408C607FA0CC9A /* UMTaskManagerInterface */; + targetProxy = 60C8EBDB3239353733DC79441F742EA8 /* PBXContainerItemProxy */; }; - FA89FC977B8E31642C47B76AD67160B8 /* PBXTargetDependency */ = { + DC9D4A837F44A83FD52CBCE2C15524C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Protobuf; - target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; - targetProxy = 0EE7E307C7B55BA48D265575BB50913B /* PBXContainerItemProxy */; + name = nanopb; + target = 2543734D0A332B2588202904B99CC151 /* nanopb */; + targetProxy = A437FDD3F20793A5F6C525BD1FA4B8A6 /* PBXContainerItemProxy */; }; - FBF22B08572B8004330FD47E0D07AC6F /* PBXTargetDependency */ = { + DFCCB9D82FD0CF87122DD1AA3F667125 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = BE0D9CA338918985910CFAB12661D90F /* PBXContainerItemProxy */; + name = "react-native-realm-path"; + target = 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */; + targetProxy = F4AF8C90F0967533DF9D7910287AA3B3 /* PBXContainerItemProxy */; }; - FC76707EA656CF1C47E82BD2633A1D66 /* PBXTargetDependency */ = { + E2FBD41025C0CD2C30325C28D5CB7AC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = D5D475C90E270ED16B263A1AAF4F1EFB /* PBXContainerItemProxy */; + name = FirebaseInstanceID; + target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; + targetProxy = 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */; }; - FED11351F5321E7FE895DDEB3821C23A /* PBXTargetDependency */ = { + E4C176B5257F774FF5A76681500E224A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNLocalize; - target = 6653EE6BC241DCDF86799473CF05303F /* RNLocalize */; - targetProxy = 2565EB7D68EC6C4E0826B5CD02EBBF48 /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; + targetProxy = 7FD43C07AC1799929636BE8E0B84F326 /* PBXContainerItemProxy */; }; - FF684D0FC6B49662CAC11992F333F7B4 /* PBXTargetDependency */ = { + EECEC39CD1A9AF30CCFCB71B11A14B7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; - target = 4412C5F689DD128EFB8F42F11C502D2C /* UMCore */; - targetProxy = 5C18A82DEC1E4DFCD36BD4D17F0E9ED3 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 0367C7BB5CA326A3A35189EDB66172F4 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2997917581386E0D376C9CECDC2DA4B6 /* 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; + target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; + targetProxy = 5FDD7E408B08AF566972547CAF4A8B67 /* PBXContainerItemProxy */; }; - 040AFAABA162DF8986A7E1ADA6C8EAED /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E28F798E1880FEE8914722ED5DF671E4 /* RNImageCropPicker.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 05071DD7807EBFB6ECE15419451FE777 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E28F798E1880FEE8914722ED5DF671E4 /* RNImageCropPicker.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; + EF48500E8F1E9750F9F76CCBBD1F091F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = 376841D0E529BC7EE9A71885D09BEAA3 /* PBXContainerItemProxy */; }; - 064AC8AE8C4D1AD3C9FBF6CBB3CC0664 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = AB1A698F1F907582A61B5BB2DA65FA5F /* react-native-orientation-locker.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; + F2608C94A03B3959AA68658878830D26 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-document-picker"; + target = 23FF201B9797478F2F3250595974DE03 /* react-native-document-picker */; + targetProxy = A37C2CDC87CD6A0463BCAA475D16ABE1 /* PBXContainerItemProxy */; }; + F541B0BB5C228843BB87EB1868782C56 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Protobuf; + target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; + targetProxy = 3D342107E8BB2E1AAA760A57543C5A06 /* PBXContainerItemProxy */; + }; + F59CC7FEA272F92FAE17CA0A9D25106E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; + targetProxy = 84BC9F8510934058A37B8E0A22D70698 /* PBXContainerItemProxy */; + }; + F6F6970B3BDA41EFD0FD5EE94F062825 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = EXConstants; + target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; + targetProxy = 0EA49245A9259C0F60FC79E036EA1329 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ 0AC398FDF032A5846498C0072CC5A856 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */; @@ -8294,25 +8337,34 @@ }; name = Debug; }; - 0CA79FA51876E976DE454FE74499AC6C /* Release */ = { + 101EAC39F4AED946B5AFE500569B6FF7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + baseConfigurationReference = EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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; + "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"; - WRAPPER_EXTENSION = bundle; + VALIDATE_PRODUCT = YES; }; name = Release; }; - 116DD04455E1E1BA8C8FC4FE5091E82C /* Release */ = { + 104104334EF41564BF72E0CD55FCF77C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E7215EE1EA3893A6D751E761A1AEF679 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8340,23 +8392,33 @@ }; name = Release; }; - 163C07A735C49A34E18F7328AA4CB836 /* Debug */ = { + 13A043846FDF09B716F500AA14190CEA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */; + baseConfigurationReference = B75EA0185E2AF3117759FBC14CB029A4 /* RNImageCropPicker.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 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; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNImageCropPicker; + PRODUCT_NAME = RNImageCropPicker; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 163D04917BF62E6F13A300AF6CCC62C2 /* Debug */ = { + 159D1ECF5A75638796F4270CBDFCCB42 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 55A0E6C10311E44F2310CC18F81AFE38 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8365,6 +8427,21 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 163C07A735C49A34E18F7328AA4CB836 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; @@ -8462,54 +8539,28 @@ }; name = Debug; }; - 19DB840F05A7BE4C4A3CF5651C9C2A02 /* 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; - }; - 1C8606BF4E6EF908F5BAA29D6E73197A /* Release */ = { + 1A62388420AB0AFCD8E4B7CD186BCE62 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF61A8AF93D3A2374C87515F8890F4C7 /* EXPermissions.xcconfig */; + baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.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; + 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 = EXPermissions; - PRODUCT_NAME = EXPermissions; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; 2059489B7C209B44F49EB7E2574E7016 /* Release */ = { isa = XCBuildConfiguration; @@ -8526,94 +8577,36 @@ }; name = Release; }; - 22696B114E6C8650506840FDB63826FA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Protobuf/Protobuf-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = Protobuf; - PRODUCT_NAME = Protobuf; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 283807E41D3C76872CFBB620A3100D17 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FirebaseCore; - PRODUCT_NAME = FirebaseCore; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 2C3A15A969A41D47E6A955885C438B3D /* Debug */ = { + 21AD1FC5515DBCE74A54C976A7766204 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6B8CD52B030C2154E76262528A31E91 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.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/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 = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 2D8B2A21EDB816D077EDCF7C6C4B4BBA /* Release */ = { + 22696B114E6C8650506840FDB63826FA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */; + baseConfigurationReference = 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; 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/Protobuf/Protobuf-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = DoubleConversion; + PRODUCT_MODULE_NAME = Protobuf; + PRODUCT_NAME = Protobuf; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8623,44 +8616,22 @@ }; name = Release; }; - 2DB579D7CAD1C93D7A5123E27B5D1AC8 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 88E55F23E75BE70319158852ED65D130 /* 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; - }; - 32EF76DEEE113FCFF0551B2288C997E6 /* Release */ = { + 280B49BA50CF843754A91BDB0F018F92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; + baseConfigurationReference = CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + 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 = FirebaseInstanceID; - PRODUCT_NAME = FirebaseInstanceID; + PRODUCT_MODULE_NAME = RNLocalize; + PRODUCT_NAME = RNLocalize; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8670,64 +8641,32 @@ }; name = Release; }; - 343C9615EDAC74C6B01235F19C97AEEA /* Release */ = { + 283807E41D3C76872CFBB620A3100D17 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */; + baseConfigurationReference = 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; 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/GTMSessionFetcher/GTMSessionFetcher-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GTMSessionFetcher; - PRODUCT_NAME = GTMSessionFetcher; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 3994C7EED14E7E007F694DB62F037B7A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - 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; - }; - 3D16C4E3685B904478AC17D932EF75C6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = FirebaseCore; + PRODUCT_NAME = FirebaseCore; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 3E372BC825F4C30F2F072753CFF8AE3F /* Release */ = { + 2B634B26CE0600FBCB5EC600228EB11A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2C78BA1420B3F9F817AAF29DB5778B8 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8740,36 +8679,22 @@ }; name = Release; }; - 4299230F94D9CD47B09A68E027680B63 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */; - buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 45401995891A8A3CE32BBC3B55625A55 /* Debug */ = { + 2D5127D08DB362B955ACBA3DFA0CB89A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */; + baseConfigurationReference = FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; + 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/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + 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 = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + PRODUCT_MODULE_NAME = EXWebBrowser; + PRODUCT_NAME = EXWebBrowser; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8778,46 +8703,45 @@ }; name = Debug; }; - 458DFB50B9C7BFD244D3DF62123992B5 /* Release */ = { + 3066BCECBA7908E897F9E1738FEDD5AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95CAA4B7A252E4C463547F77C5D59AF7 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 414FA7C11012362AA14838182726322C /* 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/EXAppLoaderProvider/EXAppLoaderProvider-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 = EXAppLoaderProvider; - PRODUCT_NAME = EXAppLoaderProvider; + 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; + name = Debug; }; - 45984D3E5B02220EEFD421E0B749ACE0 /* Release */ = { + 32EF76DEEE113FCFF0551B2288C997E6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 88E55F23E75BE70319158852ED65D130 /* react-native-webview.xcconfig */; + baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_webview; - PRODUCT_NAME = "react-native-webview"; + PRODUCT_MODULE_NAME = FirebaseInstanceID; + PRODUCT_NAME = FirebaseInstanceID; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8827,38 +8751,47 @@ }; name = Release; }; - 4A8804DCACD355A73487EC0BC64A88CC /* Release */ = { + 337079FC0FB13C8C1A58CD13D46435CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7B08E6A94A4A0FD50688F4902280F237 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = FE9149882F1AA0961340D16718BBD529 /* EXPermissions.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/EXPermissions/EXPermissions-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 = 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; }; - 4B1EAD76C8D88B9548F05FDA75774D0F /* Release */ = { + 343C9615EDAC74C6B01235F19C97AEEA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; + baseConfigurationReference = AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; + GCC_PREFIX_HEADER = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = nanopb; - PRODUCT_NAME = nanopb; + PRODUCT_MODULE_NAME = GTMSessionFetcher; + PRODUCT_NAME = GTMSessionFetcher; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8868,36 +8801,46 @@ }; name = Release; }; - 4B2BB05B538EB6FE5878292C8F3FA203 /* Release */ = { + 36584281E95ABFCC3CF4AF5E7EF64C48 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB0FFA8C156FB7FA3BE165E37BDE50DE /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-realm-path/react-native-realm-path-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 = react_native_realm_path; + PRODUCT_NAME = "react-native-realm-path"; + 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; }; - 4DF8C4EF6A0678616E6874C6DA3B15E7 /* Debug */ = { + 36650635C38E1444CAED8BEB254EFDF5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AB1A698F1F907582A61B5BB2DA65FA5F /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 8F2E9FD2978F0A487CA5EB098EAA947C /* 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; @@ -8906,35 +8849,37 @@ }; name = Debug; }; - 4E6BCD26BFD2562EF801356564832C73 /* Debug */ = { + 3994C7EED14E7E007F694DB62F037B7A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E7215EE1EA3893A6D751E761A1AEF679 /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 4E902CBDD3F8805306A5A1ACB42C25EF /* Debug */ = { + 3B0D1B35645CEF598153702EE9DA30F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + baseConfigurationReference = 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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; + 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 = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8943,14 +8888,14 @@ }; name = Debug; }; - 538B9E8C86F4FDE56B1637AF319794AC /* Release */ = { + 3D16C4E3685B904478AC17D932EF75C6 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 199B4A5A6EAA07BC42A3B2AE3753F7F3 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; @@ -8958,23 +8903,36 @@ }; name = Release; }; - 53E1EA1958049C03AD743B851CD2AED8 /* Debug */ = { + 4299230F94D9CD47B09A68E027680B63 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; + baseConfigurationReference = B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 4397C7A5A646FDE12D074056A5EB9448 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; + 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 = nanopb; - PRODUCT_NAME = nanopb; + PRODUCT_MODULE_NAME = DoubleConversion; + PRODUCT_NAME = DoubleConversion; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -8983,47 +8941,45 @@ }; name = Debug; }; - 53F2B808EC92835F341EF359A50522DE /* Release */ = { + 44FA395AF82DD4C1E7B6B528BDF0538B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 062E08C4CCAEBC0976B7EFCBFDFA4A83 /* EXHaptics.xcconfig */; + baseConfigurationReference = FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.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; + 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 = EXHaptics; - PRODUCT_NAME = EXHaptics; + 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; + name = Debug; }; - 54D65C2A76FB9548CE50985F964BAC29 /* Debug */ = { + 45401995891A8A3CE32BBC3B55625A55 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */; + baseConfigurationReference = 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; 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/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = Folly; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9032,46 +8988,54 @@ }; name = Debug; }; - 55B233D535F044C11F2CE43DE855B4E9 /* Release */ = { + 45407845EAC6E73CCD9D3F7566D1A1C9 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */; + baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = YES; + 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; + }; + 45766AF4428B503FB2B8DEDA9B7AE19B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.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*]" = ""; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - 55C260A63870766A6223CE1541CAE9E7 /* Release */ = { + 4B1EAD76C8D88B9548F05FDA75774D0F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; + baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; + 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/glog/glog-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 4.3; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9081,128 +9045,128 @@ }; name = Release; }; - 5636A0A17C0A576101467026D536B928 /* Debug */ = { + 500E649DFF3551F30BAE11F5A7F2818C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; + baseConfigurationReference = CA93B2399BF1EC6C34D29DF06D6D07B0 /* UMReactNativeAdapter.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; + 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/glog/glog-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 = glog; - PRODUCT_NAME = glog; + 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 = Debug; + name = Release; }; - 59F161C6A237F4DC85258951DDA14C49 /* Release */ = { + 53E1EA1958049C03AD743B851CD2AED8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 847909C31AA7BA9BC2482692A6C17876 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; + 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; + GCC_PREFIX_HEADER = "Target Support Files/nanopb/nanopb-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 4.3; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; + PRODUCT_MODULE_NAME = nanopb; + PRODUCT_NAME = nanopb; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - 5ACC08C4320C32911681B22DFC4004C1 /* Release */ = { + 5552D80F1A4AE73A5BE6BD0AE4470EA2 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6D82F565EC3AB854EB6657E0657222C2 /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; + baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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/glog/glog-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + 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; + name = Debug; }; - 5DD7A420581673970DAEEB520AADC14A /* Release */ = { + 57E28E7D9E511956000935966D696B14 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D151B83252EE13207BB64977A1F09F2E /* react-native-document-picker.xcconfig */; + baseConfigurationReference = B75EA0185E2AF3117759FBC14CB029A4 /* 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/react-native-document-picker/react-native-document-picker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.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 = react_native_document_picker; - PRODUCT_NAME = "react-native-document-picker"; + 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; }; - 5DFD03D7C55CDFA43FC793A2C425E56E /* Release */ = { + 5BB9D9E7C75138BAB1D5EE6C22120C31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB9511B477BF224ED55533290775B989 /* EXFileSystem.xcconfig */; + baseConfigurationReference = FE9149882F1AA0961340D16718BBD529 /* 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/EXFileSystem/EXFileSystem-prefix.pch"; + 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 = EXFileSystem; - PRODUCT_NAME = EXFileSystem; + 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; + name = Debug; }; - 5F2F37CF67ACEE56C0422FEAF00EF63C /* Release */ = { + 5D07A722E7B5B395635307B740E13327 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */; buildSettings = { @@ -9241,80 +9205,128 @@ }; name = Debug; }; - 673DC2FFAFEE132263DD7296D3DDEEDB /* Debug */ = { + 60CA23954B92822ED0F56CE8855C958E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */; + baseConfigurationReference = 7C9619DE9593734D5AC0F94D7FDF851F /* react-native-orientation-locker.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 6.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/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 6A5F4BAEBCB22DEC168C1F26C8CA1A9C /* Debug */ = { + 65E92CD3A5E3549B3D4593078AB5BC2E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; + baseConfigurationReference = 414FA7C11012362AA14838182726322C /* 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; + }; + 673DC2FFAFEE132263DD7296D3DDEEDB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 6B12A26F53B37A8A0AEA7C236E964DB6 /* Debug */ = { + 680F93D5A24D17255248DBB963ACB412 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF62B3A6BFC54A8AD37C7035DF1535D0 /* EXConstants.xcconfig */; + baseConfigurationReference = 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */; buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = YES; 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; + MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXConstants; - PRODUCT_NAME = EXConstants; - 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; }; - 6B14B441C6ABABF6898A539F25B3A681 /* Debug */ = { + 6A5F4BAEBCB22DEC168C1F26C8CA1A9C /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6B2C960CEE24F29D82EEB9BDE2431D4D /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC7DA52B8283A3B3FE7B47F1373A2F40 /* react-native-splash-screen.xcconfig */; + 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/react-native-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + 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 = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; 6C3F9BDDC8034D1D547096E7BE61F20B /* Release */ = { isa = XCBuildConfiguration; @@ -9346,45 +9358,46 @@ }; name = Release; }; - 6D4EBC07283AE03FF66C0BDBC4A60EDF /* Debug */ = { + 6DC2380C45E94742E1855E23DCB30AB3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D151B83252EE13207BB64977A1F09F2E /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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-document-picker/react-native-document-picker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; + GCC_PREFIX_HEADER = "Target Support Files/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_document_picker; - PRODUCT_NAME = "react-native-document-picker"; + PRODUCT_MODULE_NAME = GoogleToolboxForMac; + PRODUCT_NAME = GoogleToolboxForMac; 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; }; - 6DC2380C45E94742E1855E23DCB30AB3 /* Release */ = { + 726509EC665712CCE69DA51B9C9650D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */; + baseConfigurationReference = FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; 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/GoogleToolboxForMac/GoogleToolboxForMac-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + 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 = GoogleToolboxForMac; - PRODUCT_NAME = GoogleToolboxForMac; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9394,28 +9407,28 @@ }; name = Release; }; - 72B3D220D5D3A3F719B20C81F052C256 /* Debug */ = { + 74A55BA63479B2B38F48C5593CB6F9C0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D2C78BA1420B3F9F817AAF29DB5778B8 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 74A55BA63479B2B38F48C5593CB6F9C0 /* Debug */ = { + 7510FF0C9BE53AC80F61C893FDD0171C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */; + baseConfigurationReference = 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; @@ -9446,9 +9459,58 @@ }; name = Release; }; - 79826A39633B1D81AD6550B713F47FB5 /* Release */ = { + 7AE7D40F89D77117732CD562570C3ACC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + 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; + }; + 7F35694A522E5A316EC063D31D71B4FD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 465361999C9275A0EB0D18E87ACF63BA /* 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; + }; + 81E00B3A56B081440C9397AADC410824 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22EDA30B64BE2E543DF1B0B3DAF34C19 /* yoga.xcconfig */; + baseConfigurationReference = B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9464,29 +9526,92 @@ PRODUCT_NAME = yoga; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 84656029028D7372794E55D736A7D365 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/EXFileSystem/EXFileSystem-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = EXFileSystem; + PRODUCT_NAME = EXFileSystem; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 84F1895A097C29D8537B1337DE063B57 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + 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"; + }; + name = Debug; + }; + 8AA28E783CA6FF152B1C07F759C5C0BF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CD43BC845F3312E0B19B9A512B7C1D8A /* 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; + name = Debug; }; - 7A1A2992DCDF44B8A1A9B692068EA1CD /* Release */ = { + 8B5C36EFC68AE33052BA69CB61540838 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0A8BE2F8329E1435E42FF893A2A90DC7 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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"; + GCC_PREFIX_HEADER = "Target Support Files/react-native-realm-path/react-native-realm-path-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = EXWebBrowser; - PRODUCT_NAME = EXWebBrowser; + PRODUCT_MODULE_NAME = react_native_realm_path; + PRODUCT_NAME = "react-native-realm-path"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9496,22 +9621,22 @@ }; name = Release; }; - 7CA5B14DEEEAAAE3A29DEF19951F0187 /* Debug */ = { + 93B94A4551FA5C855F12A56741D5FD48 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A5832B4F89CD47C76A02BD8150F0387 /* UMCore.xcconfig */; + baseConfigurationReference = CA93B2399BF1EC6C34D29DF06D6D07B0 /* 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/UMCore/UMCore-prefix.pch"; + 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 = UMCore; - PRODUCT_NAME = UMCore; + PRODUCT_MODULE_NAME = UMReactNativeAdapter; + PRODUCT_NAME = UMReactNativeAdapter; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9520,45 +9645,36 @@ }; name = Debug; }; - 7D39B2D05FF2EF202615DB5E7E6B6EA0 /* Debug */ = { + 98738AA5196D3CD9470645AA4DD748A3 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 847909C31AA7BA9BC2482692A6C17876 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 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 = ""; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 7DD9EAE879399F9B5E3C11A638C3AB0B /* Debug */ = { + 99D60E8BC0BAE2AD9B9295BAA8B4BCBD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */; + baseConfigurationReference = 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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/Folly/Folly-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RSKImageCropper; - PRODUCT_NAME = RSKImageCropper; + PRODUCT_MODULE_NAME = folly; + PRODUCT_NAME = Folly; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9567,22 +9683,21 @@ }; name = Debug; }; - 80C0B87BAE2B8E29B3BC313A2A65769F /* Debug */ = { + A05F9D3B51425D24D1A800E27318B863 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 95CAA4B7A252E4C463547F77C5D59AF7 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.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; + 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 = EXAppLoaderProvider; - PRODUCT_NAME = EXAppLoaderProvider; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9591,21 +9706,21 @@ }; name = Debug; }; - 84DB0783D74558968C858D17DDBBD31B /* Release */ = { + A9A1DAA271AA64ABBA41275DD8F036D5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EFB65EB9FC5E2B1F2BDB585D852E58B /* RNScreens.xcconfig */; + baseConfigurationReference = 7C9619DE9593734D5AC0F94D7FDF851F /* 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/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.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 = RNScreens; - PRODUCT_NAME = RNScreens; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9615,84 +9730,58 @@ }; name = Release; }; - 86B9B6708EA3628BB4B1CD17B2221667 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 17AC175BF97175222A6FF39520436A02 /* 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; - }; - 876DB18BEB9EAFEDE1F61A21897961E8 /* Release */ = { + AA5D2249BD8ABF32DBEAA73F2C95CF26 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + baseConfigurationReference = 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.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; + GCC_PREFIX_HEADER = "Target Support Files/react-native-document-picker/react-native-document-picker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; + PRODUCT_MODULE_NAME = react_native_document_picker; + PRODUCT_NAME = "react-native-document-picker"; 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; }; - 8D2503ADA0CD5B8003F93339087421B8 /* Debug */ = { + AE32BBE60C562E1B9AC64029E973EB86 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB9511B477BF224ED55533290775B989 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */; buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; + APPLICATION_EXTENSION_API_ONLY = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 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 = ""; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 94AAB7D0AD0D1FDC5A446C0609C40E71 /* Debug */ = { + AEA4CF8BD6C1573C4E5DE6860B03D2CE /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C430D6EEE35DFC1338F41478D200AC38 /* RNLocalize.xcconfig */; + baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; 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; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; + PRODUCT_MODULE_NAME = FirebaseInstanceID; + PRODUCT_NAME = FirebaseInstanceID; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9701,130 +9790,202 @@ }; name = Debug; }; - 98738AA5196D3CD9470645AA4DD748A3 /* Debug */ = { + B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + B16A03D0A5F6904FB27090924EDF2532 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5A601E6330B922C4911EB6709D982A87 /* boost-for-react-native.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - A47AFACAC9557EB9637D36E6DBA1C0DC /* Debug */ = { + B4EAB4281D83D1BD0899A2282A158C57 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */; + baseConfigurationReference = CD43BC845F3312E0B19B9A512B7C1D8A /* UMFaceDetectorInterface.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; + 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/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 = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - A8B8DF32475C6DB1ED0428F20B1D6BDE /* Debug */ = { + B6C7034271AD612C0CE2EE28606818D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91E6F0DDEECEA71B48EC90595495405D /* Pods-RocketChatRN.debug.xcconfig */; + baseConfigurationReference = 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.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/EXAppLoaderProvider/EXAppLoaderProvider-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + 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; }; - A9712A26E6F663C489E6FB3A63379388 /* Debug */ = { + BA0DBB4548A9A42290B21BB21D18548C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 22EDA30B64BE2E543DF1B0B3DAF34C19 /* yoga.xcconfig */; + baseConfigurationReference = D3697C3A80F55A1372F7514127AAE01A /* glog.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; 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"; + 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 = yoga; - PRODUCT_NAME = yoga; + 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 = Debug; + name = Release; }; - AE32BBE60C562E1B9AC64029E973EB86 /* Debug */ = { + BC476F2B7DC9C79FF226229A8D881D26 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */; + baseConfigurationReference = 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - AEA4CF8BD6C1573C4E5DE6860B03D2CE /* Debug */ = { + BEA641D5851D41F1304AEEF1C7EFC4F4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */; + baseConfigurationReference = 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; + 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 = 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 = FirebaseInstanceID; - PRODUCT_NAME = FirebaseInstanceID; + PRODUCT_MODULE_NAME = EXAppLoaderProvider; + PRODUCT_NAME = EXAppLoaderProvider; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + C1D448485CC981F9F935838C540C8548 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - B005C3CBF3ED5E899DA4BA59F7EC5096 /* Release */ = { + C69427B756502B702CFB5ADC7F970E6A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B40A5060BA1446A5F7473E4745CEB8EB /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9837,83 +9998,46 @@ }; name = Release; }; - B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */ = { + C6B875B2ECB4DCCE31B8E3AC9B0ECA44 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */; buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; + APPLICATION_EXTENSION_API_ONLY = YES; + 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; }; - B0CDB58A4FE9493FE170DD99BAE3B055 /* Debug */ = { + C75FF835076BCF2A78C2B8C38E4CC001 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 67DFE3C6D8C3CA832A5A9DE83A740C69 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 91E6F0DDEECEA71B48EC90595495405D /* Pods-RocketChatRN.debug.xcconfig */; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + 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; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + 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; }; - B114D86B34E63078164C7154A9D4575A /* Release */ = { + C790C892EEB6A7EE1258261B9BF2F0AF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 17AC175BF97175222A6FF39520436A02 /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9926,36 +10050,46 @@ }; name = Release; }; - B16A03D0A5F6904FB27090924EDF2532 /* Debug */ = { + D05EBE91886D7AEEFE4A15B428620B9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5A601E6330B922C4911EB6709D982A87 /* boost-for-react-native.xcconfig */; + baseConfigurationReference = B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.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/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; }; - B4B4A3E4A2578B4447654841476035A9 /* Release */ = { + D0C7F01684D24B1A9B9D5DAA081A67FF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C430D6EEE35DFC1338F41478D200AC38 /* RNLocalize.xcconfig */; + baseConfigurationReference = D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; 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; + GCC_PREFIX_HEADER = "Target Support Files/GoogleUtilities/GoogleUtilities-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNLocalize; - PRODUCT_NAME = RNLocalize; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9965,22 +10099,21 @@ }; name = Release; }; - BC218C2A14D7F9749C095CCFD4F611ED /* Release */ = { + D2EEBA11896F4DBF4CE2FDF4CA63F0C4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4A5832B4F89CD47C76A02BD8150F0387 /* UMCore.xcconfig */; + baseConfigurationReference = CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.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-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = UMCore; - PRODUCT_NAME = UMCore; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -9990,9 +10123,9 @@ }; name = Release; }; - C11A82974AA652DF512F69D81B612FF9 /* Release */ = { + D338DBE12EAEC66131F53EE4259FD4E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 55A0E6C10311E44F2310CC18F81AFE38 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10005,49 +10138,56 @@ }; name = Release; }; - C1D448485CC981F9F935838C540C8548 /* Release */ = { + D420A64138F36D470CD6A995F6529DF3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; + baseConfigurationReference = 6D82F565EC3AB854EB6657E0657222C2 /* Pods-RocketChatRN.release.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; SDKROOT = iphoneos; + SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - C4CDE7C4F8DD4914AE738C059C6A88AD /* Release */ = { + D504250D9B52F216E888065A6D6C14A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B6B8CD52B030C2154E76262528A31E91 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = F6334B5F131CDD267C933341A87CF382 /* 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/UMReactNativeAdapter/UMReactNativeAdapter-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 = UMReactNativeAdapter; - PRODUCT_NAME = UMReactNativeAdapter; + PRODUCT_MODULE_NAME = EXConstants; + PRODUCT_NAME = EXConstants; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - C5985D382B75AD7F1B44DDD5F68EB37A /* Release */ = { + D5822B28BCDFAE8628334E7A7DB75291 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 67DFE3C6D8C3CA832A5A9DE83A740C69 /* UMFontInterface.xcconfig */; + baseConfigurationReference = 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10056,69 +10196,73 @@ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - C6B875B2ECB4DCCE31B8E3AC9B0ECA44 /* Release */ = { + D5A5563D7CAAD8EC83C808470D1E628B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */; + baseConfigurationReference = 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.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/react-native-document-picker/react-native-document-picker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_document_picker; + PRODUCT_NAME = "react-native-document-picker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; }; name = Release; }; - C7062C626C1EACE06427B3F480DAD082 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7B08E6A94A4A0FD50688F4902280F237 /* 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; - }; - C76E0D0D75910F1C1281E8A7B2298ADF /* Release */ = { + D67F492D20BE2D9B1B95AB2AE57FC383 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2997917581386E0D376C9CECDC2DA4B6 /* UMCameraInterface.xcconfig */; + baseConfigurationReference = FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.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/EXWebBrowser/EXWebBrowser-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 = 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; }; - C9F774C2AF542580B4652E4D228B2D8E /* Release */ = { + D71DDCD8C42FD7AB7F57E212B3C3FC25 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC7DA52B8283A3B3FE7B47F1373A2F40 /* react-native-splash-screen.xcconfig */; + baseConfigurationReference = 8F2E9FD2978F0A487CA5EB098EAA947C /* 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-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.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_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -10128,58 +10272,47 @@ }; name = Release; }; - CDDE65688DB91C93DE4DA60BED6BDA7D /* Debug */ = { + D8BAF3F017AEA4A01DD01F699EAE2F95 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 062E08C4CCAEBC0976B7EFCBFDFA4A83 /* EXHaptics.xcconfig */; + baseConfigurationReference = FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.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/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 = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - D0C7F01684D24B1A9B9D5DAA081A67FF /* Release */ = { + D95A2809AB6B9B967AC20FE44D904515 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */; + baseConfigurationReference = AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/GoogleUtilities/GoogleUtilities-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + GCC_PREFIX_HEADER = "Target Support Files/GTMSessionFetcher/GTMSessionFetcher-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + PRODUCT_MODULE_NAME = GTMSessionFetcher; + PRODUCT_NAME = GTMSessionFetcher; 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; }; - D1DB0A54D32D6019590ED542D986592A /* Release */ = { + D98F3EF69A1D2D0B9B96719A0671EB37 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BF62B3A6BFC54A8AD37C7035DF1535D0 /* EXConstants.xcconfig */; + baseConfigurationReference = F6334B5F131CDD267C933341A87CF382 /* EXConstants.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -10195,28 +10328,43 @@ PRODUCT_NAME = EXConstants; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + DC7CABACF1C2008C1A1DFC15F44D706A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - D47C641158E1F882087D1CBD16364C0F /* Debug */ = { + DD2F2BBC438D52719583D1D1677C965B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7EFB65EB9FC5E2B1F2BDB585D852E58B /* RNScreens.xcconfig */; + baseConfigurationReference = D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */; buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; 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/GoogleUtilities/GoogleUtilities-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; + PRODUCT_MODULE_NAME = GoogleUtilities; + PRODUCT_NAME = GoogleUtilities; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -10225,9 +10373,9 @@ }; name = Debug; }; - D88DB7414BB7F5977CA22FBF3AF982EA /* Debug */ = { + DEDB20F1DFE3FC56596D33876204FC03 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 199B4A5A6EAA07BC42A3B2AE3753F7F3 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10239,87 +10387,88 @@ }; name = Debug; }; - D95A2809AB6B9B967AC20FE44D904515 /* Debug */ = { + E275D7FD7C386F8C792A2E8A4264D94C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */; + baseConfigurationReference = 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; + 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/GTMSessionFetcher/GTMSessionFetcher-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = GTMSessionFetcher; - PRODUCT_NAME = GTMSessionFetcher; - PUBLIC_HEADERS_FOLDER_PATH = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - DD2F2BBC438D52719583D1D1677C965B /* Debug */ = { + E74B6A61EBB9BA6F53DAD16B7E855B57 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D6CE75889A37BBAFA6619B2E2D0A9152 /* GoogleUtilities.xcconfig */; + baseConfigurationReference = 465361999C9275A0EB0D18E87ACF63BA /* EXHaptics.xcconfig */; buildSettings = { - APPLICATION_EXTENSION_API_ONLY = YES; + 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/GoogleUtilities/GoogleUtilities-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + 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 = GoogleUtilities; - PRODUCT_NAME = GoogleUtilities; + 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 = Debug; + name = Release; }; - E300F6FD3AC3BA66ED17ED0CE7A03659 /* Debug */ = { + EA6E0E8E737423BA9CD0FFD375E77B16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */; + baseConfigurationReference = C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; - INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = QBImagePicker; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; - E91BC3BE2BFCE56DEAB5D5B26C2D743E /* Debug */ = { + ED8F518E1C694F9B9EDA2BC86DA45B83 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B40A5060BA1446A5F7473E4745CEB8EB /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.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/EXFileSystem/EXFileSystem-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 = 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 = Debug; + name = Release; }; - EE367A9717B8C128A69AEF82674B46B5 /* Debug */ = { + F016E259B731D1734A4F476DDF7ABF6A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */; + baseConfigurationReference = 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; APPLICATION_EXTENSION_API_ONLY = YES; @@ -10337,8 +10486,9 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; F681428EF28343C1F2059CFF02D37BF7 /* Debug */ = { isa = XCBuildConfiguration; @@ -10354,64 +10504,93 @@ }; name = Debug; }; - FA2F95C9F876AF9A6BB216332B991CF2 /* Debug */ = { + F75FDE1A16D22290624E5963183A7F43 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0A8BE2F8329E1435E42FF893A2A90DC7 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.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/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 = ""; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - FC425346B597C5B1E88C183830F09539 /* Debug */ = { + F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CF61A8AF93D3A2374C87515F8890F4C7 /* EXPermissions.xcconfig */; + baseConfigurationReference = 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FA6C4E7413AC82E517C0A7B0944F5869 /* 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/EXPermissions/EXPermissions-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 10.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 = EXPermissions; - PRODUCT_NAME = EXPermissions; + 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; + }; + FC90A2479B39C8481D2967A5320FDCBB /* 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; }; - FEA78C29A9EF0705F7CC5E722CB2A155 /* Debug */ = { + FFC0C87B236C82EC701AFEE12BE4B415 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = BB0FFA8C156FB7FA3BE165E37BDE50DE /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.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/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; @@ -10419,434 +10598,443 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 010FECF0E1C4F6DFAE0E7910FE62609B /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { + 0569CCDF3B3B687CF01EE8D4001AA7CC /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { isa = XCConfigurationList; buildConfigurations = ( - 163D04917BF62E6F13A300AF6CCC62C2 /* Debug */, - C11A82974AA652DF512F69D81B612FF9 /* Release */, + 4397C7A5A646FDE12D074056A5EB9448 /* Debug */, + 101EAC39F4AED946B5AFE500569B6FF7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0AEE3B884AE65D5E5F077CCD06AD8643 /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { + 08C4767D793682C307862495EDFC6F37 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4E6BCD26BFD2562EF801356564832C73 /* Debug */, - 116DD04455E1E1BA8C8FC4FE5091E82C /* Release */, + 2D5127D08DB362B955ACBA3DFA0CB89A /* Debug */, + D67F492D20BE2D9B1B95AB2AE57FC383 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0B02CA2BF83F91E03F27D2A61E8A7DC9 /* Build configuration list for PBXNativeTarget "EXHaptics" */ = { + 097AF50B67E3908773078466CE352AD4 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */ = { isa = XCConfigurationList; buildConfigurations = ( - CDDE65688DB91C93DE4DA60BED6BDA7D /* Debug */, - 53F2B808EC92835F341EF359A50522DE /* Release */, + B6C7034271AD612C0CE2EE28606818D0 /* Debug */, + BEA641D5851D41F1304AEEF1C7EFC4F4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0D18ABC225F79D37B4189D36A905BD19 /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { + 0D1C58C4F3C697682657D483AF1081D3 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - D88DB7414BB7F5977CA22FBF3AF982EA /* Debug */, - 538B9E8C86F4FDE56B1637AF319794AC /* Release */, + DC7CABACF1C2008C1A1DFC15F44D706A /* Debug */, + 45766AF4428B503FB2B8DEDA9B7AE19B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0FC78364EF42E45D34DEA86B8E23CC0B /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + 13B185864087F75D556AC109B2D70BF7 /* Build configuration list for PBXAggregateTarget "Fabric" */ = { isa = XCConfigurationList; buildConfigurations = ( - A8B8DF32475C6DB1ED0428F20B1D6BDE /* Debug */, - 5ACC08C4320C32911681B22DFC4004C1 /* Release */, + 5FF66BD3AB155E0B131E624DEAC8D76C /* Debug */, + 6C3F9BDDC8034D1D547096E7BE61F20B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 10FA8A5D5C24D5658E3B08FAA4E334EF /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { + 14DC05D6DD2DB32247F6236BA580DBBC /* Build configuration list for PBXNativeTarget "Protobuf" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2DB579D7CAD1C93D7A5123E27B5D1AC8 /* Debug */, - 45984D3E5B02220EEFD421E0B749ACE0 /* Release */, + 0AC398FDF032A5846498C0072CC5A856 /* Debug */, + 22696B114E6C8650506840FDB63826FA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 120B9A626F190CC66D901ACC9F9F20D0 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { + 1517040FB8F3211E3574BAA7ECC7AA3A /* Build configuration list for PBXAggregateTarget "FirebasePerformance" */ = { isa = XCConfigurationList; buildConfigurations = ( - 72B3D220D5D3A3F719B20C81F052C256 /* Debug */, - 3E372BC825F4C30F2F072753CFF8AE3F /* Release */, + F681428EF28343C1F2059CFF02D37BF7 /* Debug */, + C6B875B2ECB4DCCE31B8E3AC9B0ECA44 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 126AE8970754A6BA5FE9DA02CA010B2A /* Build configuration list for PBXNativeTarget "EXFileSystem" */ = { + 17B931885220D30F91AF7221EE5A9642 /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8D2503ADA0CD5B8003F93339087421B8 /* Debug */, - 5DFD03D7C55CDFA43FC793A2C425E56E /* Release */, + 44FA395AF82DD4C1E7B6B528BDF0538B /* Debug */, + 726509EC665712CCE69DA51B9C9650D7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1308304AB64134360973186EF2D9BFC7 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + 19B649D415B23577700588DC3FB19565 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 05071DD7807EBFB6ECE15419451FE777 /* Debug */, - 040AFAABA162DF8986A7E1ADA6C8EAED /* Release */, + DEDB20F1DFE3FC56596D33876204FC03 /* Debug */, + 159D1ECF5A75638796F4270CBDFCCB42 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 13B185864087F75D556AC109B2D70BF7 /* Build configuration list for PBXAggregateTarget "Fabric" */ = { + 1CB324CFC7C9FDAD43D409360A8F980B /* Build configuration list for PBXAggregateTarget "UMFileSystemInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5FF66BD3AB155E0B131E624DEAC8D76C /* Debug */, - 6C3F9BDDC8034D1D547096E7BE61F20B /* Release */, + F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */, + D338DBE12EAEC66131F53EE4259FD4E3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 14DC05D6DD2DB32247F6236BA580DBBC /* Build configuration list for PBXNativeTarget "Protobuf" */ = { + 22051F6710614105BA04E0EF4915F952 /* Build configuration list for PBXNativeTarget "EXHaptics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0AC398FDF032A5846498C0072CC5A856 /* Debug */, - 22696B114E6C8650506840FDB63826FA /* Release */, + 7F35694A522E5A316EC063D31D71B4FD /* Debug */, + E74B6A61EBB9BA6F53DAD16B7E855B57 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1517040FB8F3211E3574BAA7ECC7AA3A /* Build configuration list for PBXAggregateTarget "FirebasePerformance" */ = { + 2814D5F6B46466474CE6DD5CE093DDB4 /* Build configuration list for PBXAggregateTarget "GoogleIDFASupport" */ = { isa = XCConfigurationList; buildConfigurations = ( - F681428EF28343C1F2059CFF02D37BF7 /* Debug */, - C6B875B2ECB4DCCE31B8E3AC9B0ECA44 /* Release */, + 98738AA5196D3CD9470645AA4DD748A3 /* Debug */, + 3D16C4E3685B904478AC17D932EF75C6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1C32006CC07DA731A4A3EB74DE490502 /* Build configuration list for PBXNativeTarget "EXAppLoaderProvider" */ = { + 29B2BBE9E8771E28C82401E9EF47BA1E /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 80C0B87BAE2B8E29B3BC313A2A65769F /* Debug */, - 458DFB50B9C7BFD244D3DF62123992B5 /* Release */, + 57E28E7D9E511956000935966D696B14 /* Debug */, + 13A043846FDF09B716F500AA14190CEA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1EEC5E134E8D86F4C8B903623AD141DC /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { + 2A788C2108A4C3061F6BBE6BE6F6BE15 /* Build configuration list for PBXNativeTarget "yoga" */ = { isa = XCConfigurationList; buildConfigurations = ( - 94AAB7D0AD0D1FDC5A446C0609C40E71 /* Debug */, - B4B4A3E4A2578B4447654841476035A9 /* Release */, + D05EBE91886D7AEEFE4A15B428620B9E /* Debug */, + 81E00B3A56B081440C9397AADC410824 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2814D5F6B46466474CE6DD5CE093DDB4 /* Build configuration list for PBXAggregateTarget "GoogleIDFASupport" */ = { + 30E42B671739C46568E4210EC736D325 /* Build configuration list for PBXNativeTarget "glog" */ = { isa = XCConfigurationList; buildConfigurations = ( - 98738AA5196D3CD9470645AA4DD748A3 /* Debug */, - 3D16C4E3685B904478AC17D932EF75C6 /* Release */, + 5552D80F1A4AE73A5BE6BD0AE4470EA2 /* Debug */, + BA0DBB4548A9A42290B21BB21D18548C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D896C2A29F30E86DB319B206D193892 /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { + 38EC704BA10E3FB0DC5FB8DF2FA59187 /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6D4EBC07283AE03FF66C0BDBC4A60EDF /* Debug */, - 5DD7A420581673970DAEEB520AADC14A /* Release */, + 45401995891A8A3CE32BBC3B55625A55 /* Debug */, + 6DC2380C45E94742E1855E23DCB30AB3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3252239A3789995739FB7B8C8A95B493 /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { + 3D504693706D06D7DD1A31676C2B1D1A /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { isa = XCConfigurationList; buildConfigurations = ( - A47AFACAC9557EB9637D36E6DBA1C0DC /* Debug */, - 2D8B2A21EDB816D077EDCF7C6C4B4BBA /* Release */, + 1A62388420AB0AFCD8E4B7CD186BCE62 /* Debug */, + 6B2C960CEE24F29D82EEB9BDE2431D4D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 331FC6A6D0DA17367B896E7A3E2CFAA5 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { + 3D8810E196AB78ED3123A01E8F97036C /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4DF8C4EF6A0678616E6874C6DA3B15E7 /* Debug */, - 064AC8AE8C4D1AD3C9FBF6CBB3CC0664 /* Release */, + 673DC2FFAFEE132263DD7296D3DDEEDB /* Debug */, + 2059489B7C209B44F49EB7E2574E7016 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 38EC704BA10E3FB0DC5FB8DF2FA59187 /* Build configuration list for PBXNativeTarget "GoogleToolboxForMac" */ = { + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 45401995891A8A3CE32BBC3B55625A55 /* Debug */, - 6DC2380C45E94742E1855E23DCB30AB3 /* Release */, + 196DFA3E4A09A28224918543529A1885 /* Debug */, + B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3A1CDEE3462A54ADD98D7F944698F23B /* Build configuration list for PBXNativeTarget "yoga" */ = { + 4884EF8472F29FED19791390956FA34E /* Build configuration list for PBXNativeTarget "FirebaseInstanceID" */ = { isa = XCConfigurationList; buildConfigurations = ( - A9712A26E6F663C489E6FB3A63379388 /* Debug */, - 79826A39633B1D81AD6550B713F47FB5 /* Release */, + AEA4CF8BD6C1573C4E5DE6860B03D2CE /* Debug */, + 32EF76DEEE113FCFF0551B2288C997E6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D743A9AAF6ED7D9DB954EDB605D83CF /* Build configuration list for PBXNativeTarget "glog" */ = { + 5AA998BF6A868E7A7727E9ACADC3C30E /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5636A0A17C0A576101467026D536B928 /* Debug */, - 55C260A63870766A6223CE1541CAE9E7 /* Release */, + A05F9D3B51425D24D1A800E27318B863 /* Debug */, + D2EEBA11896F4DBF4CE2FDF4CA63F0C4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D8810E196AB78ED3123A01E8F97036C /* Build configuration list for PBXAggregateTarget "GoogleAppMeasurement" */ = { + 5AE3722DD39C3B2C37D89B1AC2A0A4C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { isa = XCConfigurationList; buildConfigurations = ( - 673DC2FFAFEE132263DD7296D3DDEEDB /* Debug */, - 2059489B7C209B44F49EB7E2574E7016 /* Release */, + B16A03D0A5F6904FB27090924EDF2532 /* Debug */, + 17F925B91130B45ABACE5985A27C8FB3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + 5BEB1936C571C5CF86E8C7AA447F5F6C /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { isa = XCConfigurationList; buildConfigurations = ( - 196DFA3E4A09A28224918543529A1885 /* Debug */, - B01D14FDC83DCF9D4BE53066BEA96D05 /* Release */, + D95A2809AB6B9B967AC20FE44D904515 /* Debug */, + 343C9615EDAC74C6B01235F19C97AEEA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4884EF8472F29FED19791390956FA34E /* Build configuration list for PBXNativeTarget "FirebaseInstanceID" */ = { + 5D3CB9B809EC62E76C9CECAC507FE24E /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - AEA4CF8BD6C1573C4E5DE6860B03D2CE /* Debug */, - 32EF76DEEE113FCFF0551B2288C997E6 /* Release */, + 283807E41D3C76872CFBB620A3100D17 /* Debug */, + 78271FDE9E52DD291D46DDF4A7C01785 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4DD499D1D3294D3BBA21D0F0D83A3DE1 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + 5D667B4DA999A7C16C9786412E31BB39 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7D39B2D05FF2EF202615DB5E7E6B6EA0 /* Debug */, - 59F161C6A237F4DC85258951DDA14C49 /* Release */, + EA6E0E8E737423BA9CD0FFD375E77B16 /* Debug */, + C69427B756502B702CFB5ADC7F970E6A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 51C66BBB4BF416CDA4D6EB626E21DA79 /* Build configuration list for PBXAggregateTarget "UMConstantsInterface" */ = { + 694A8CE4B2F3D4A51F73B435FF654E3C /* Build configuration list for PBXNativeTarget "EXPermissions" */ = { isa = XCConfigurationList; buildConfigurations = ( - C7062C626C1EACE06427B3F480DAD082 /* Debug */, - 4A8804DCACD355A73487EC0BC64A88CC /* Release */, + 5BB9D9E7C75138BAB1D5EE6C22120C31 /* Debug */, + 337079FC0FB13C8C1A58CD13D46435CC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 59AA1F9B689EB2CF42A78BBFFD49A79A /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { + 6E7B377EF94A3DF3F96B0A8A749E5673 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { isa = XCConfigurationList; buildConfigurations = ( - E91BC3BE2BFCE56DEAB5D5B26C2D743E /* Debug */, - B005C3CBF3ED5E899DA4BA59F7EC5096 /* Release */, + 84F1895A097C29D8537B1337DE063B57 /* Debug */, + 280B49BA50CF843754A91BDB0F018F92 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5AE3722DD39C3B2C37D89B1AC2A0A4C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { + 72CEBDFC2EB6828CBAE65B250700632B /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - B16A03D0A5F6904FB27090924EDF2532 /* Debug */, - 17F925B91130B45ABACE5985A27C8FB3 /* Release */, + D8BAF3F017AEA4A01DD01F699EAE2F95 /* Debug */, + 104104334EF41564BF72E0CD55FCF77C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5BEB1936C571C5CF86E8C7AA447F5F6C /* Build configuration list for PBXNativeTarget "GTMSessionFetcher" */ = { + 7A0BB810D8382042FC5DDA38048DE154 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { isa = XCConfigurationList; buildConfigurations = ( - D95A2809AB6B9B967AC20FE44D904515 /* Debug */, - 343C9615EDAC74C6B01235F19C97AEEA /* Release */, + 3B0D1B35645CEF598153702EE9DA30F8 /* Debug */, + 7AE7D40F89D77117732CD562570C3ACC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5D3CB9B809EC62E76C9CECAC507FE24E /* Build configuration list for PBXNativeTarget "FirebaseCore" */ = { + 7F7FDC33629A1F45A656AEFE5F74180A /* Build configuration list for PBXAggregateTarget "UMImageLoaderInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 283807E41D3C76872CFBB620A3100D17 /* Debug */, - 78271FDE9E52DD291D46DDF4A7C01785 /* Release */, + 21AD1FC5515DBCE74A54C976A7766204 /* Debug */, + C790C892EEB6A7EE1258261B9BF2F0AF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6938A94AF739B9819D20E572908D3D5E /* Build configuration list for PBXNativeTarget "EXPermissions" */ = { + 86FB6036B4221D1FE19A24194599B43C /* Build configuration list for PBXNativeTarget "UMCore" */ = { isa = XCConfigurationList; buildConfigurations = ( - FC425346B597C5B1E88C183830F09539 /* Debug */, - 1C8606BF4E6EF908F5BAA29D6E73197A /* Release */, + 3066BCECBA7908E897F9E1738FEDD5AC /* Debug */, + 65E92CD3A5E3549B3D4593078AB5BC2E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6A15F9758EBBA3D16BB8C06AFE1A2386 /* Build configuration list for PBXAggregateTarget "UMFontInterface" */ = { + 8A4D0198025C738F7EEBA269AB094A84 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - B0CDB58A4FE9493FE170DD99BAE3B055 /* Debug */, - C5985D382B75AD7F1B44DDD5F68EB37A /* Release */, + 8AA28E783CA6FF152B1C07F759C5C0BF /* Debug */, + B4EAB4281D83D1BD0899A2282A158C57 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 74566EA55AFBA560F2ECF92B9E8233D3 /* Build configuration list for PBXAggregateTarget "UMPermissionsInterface" */ = { + 8D737EA61FBFEFB85394C3D203C4252A /* Build configuration list for PBXAggregateTarget "Firebase" */ = { isa = XCConfigurationList; buildConfigurations = ( - FEA78C29A9EF0705F7CC5E722CB2A155 /* Debug */, - 4B2BB05B538EB6FE5878292C8F3FA203 /* Release */, + AE32BBE60C562E1B9AC64029E973EB86 /* Debug */, + 3994C7EED14E7E007F694DB62F037B7A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7B3FF03EEBB90373683F314983B9E4D7 /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + 909B61B59B97BC88A0A5B03AC7F0345F /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4E902CBDD3F8805306A5A1ACB42C25EF /* Debug */, - 876DB18BEB9EAFEDE1F61A21897961E8 /* Release */, + 60CA23954B92822ED0F56CE8855C958E /* Debug */, + A9A1DAA271AA64ABBA41275DD8F036D5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7BBBE3D346CB97840699AD93A3D62A47 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + 9EC6E826B42909E982A2B43548E66129 /* Build configuration list for PBXAggregateTarget "UMSensorsInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - E300F6FD3AC3BA66ED17ED0CE7A03659 /* Debug */, - 0CA79FA51876E976DE454FE74499AC6C /* Release */, + 7510FF0C9BE53AC80F61C893FDD0171C /* Debug */, + BC476F2B7DC9C79FF226229A8D881D26 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 837096F0BCD0B9C0404702D05158B979 /* Build configuration list for PBXAggregateTarget "UMFaceDetectorInterface" */ = { + A00E566D82D062ECA93C1223CB13A83E /* Build configuration list for PBXNativeTarget "react-native-document-picker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 86B9B6708EA3628BB4B1CD17B2221667 /* Debug */, - B114D86B34E63078164C7154A9D4575A /* Release */, + AA5D2249BD8ABF32DBEAA73F2C95CF26 /* Debug */, + D5A5563D7CAAD8EC83C808470D1E628B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8AF4C8BFB57540898C77D03BD49AD7F4 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { + A084C0089544D8EEE7DA4C6D8EEEF9ED /* Build configuration list for PBXAggregateTarget "Crashlytics" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7DD9EAE879399F9B5E3C11A638C3AB0B /* Debug */, - 19DB840F05A7BE4C4A3CF5651C9C2A02 /* Release */, + 6A5F4BAEBCB22DEC168C1F26C8CA1A9C /* Debug */, + C1D448485CC981F9F935838C540C8548 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8BB472139D3ECDA53A44FD1DBBB24808 /* Build configuration list for PBXNativeTarget "EXConstants" */ = { + A1B4747D5D93197637D93E3A0398D431 /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6B12A26F53B37A8A0AEA7C236E964DB6 /* Debug */, - D1DB0A54D32D6019590ED542D986592A /* Release */, + 36650635C38E1444CAED8BEB254EFDF5 /* Debug */, + D71DDCD8C42FD7AB7F57E212B3C3FC25 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8D737EA61FBFEFB85394C3D203C4252A /* Build configuration list for PBXAggregateTarget "Firebase" */ = { + A52B09CD2FF08F47D7B57854045891DE /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { isa = XCConfigurationList; buildConfigurations = ( - AE32BBE60C562E1B9AC64029E973EB86 /* Debug */, - 3994C7EED14E7E007F694DB62F037B7A /* Release */, + 93B94A4551FA5C855F12A56741D5FD48 /* Debug */, + 500E649DFF3551F30BAE11F5A7F2818C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9811B54698490F73C0B6CC6E1889626F /* Build configuration list for PBXNativeTarget "Folly" */ = { + B9C577A5808579DD1E74535030E5801F /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 54D65C2A76FB9548CE50985F964BAC29 /* Debug */, - 5F2F37CF67ACEE56C0422FEAF00EF63C /* Release */, + FFC0C87B236C82EC701AFEE12BE4B415 /* Debug */, + FA6C4E7413AC82E517C0A7B0944F5869 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A084C0089544D8EEE7DA4C6D8EEEF9ED /* Build configuration list for PBXAggregateTarget "Crashlytics" */ = { + BE20EBE9B903C4CE185EA77974922A5B /* Build configuration list for PBXAggregateTarget "UMTaskManagerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6A5F4BAEBCB22DEC168C1F26C8CA1A9C /* Debug */, - C1D448485CC981F9F935838C540C8548 /* Release */, + D5822B28BCDFAE8628334E7A7DB75291 /* Debug */, + 2B634B26CE0600FBCB5EC600228EB11A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BFA9240A78045029A78D0AD94862A456 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 45407845EAC6E73CCD9D3F7566D1A1C9 /* Debug */, + FC90A2479B39C8481D2967A5320FDCBB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A5304CEF10E405886D10D99C2FA2AFF2 /* Build configuration list for PBXNativeTarget "UMReactNativeAdapter" */ = { + C70B8DD136F9BAD341C1B40C899208EC /* Build configuration list for PBXNativeTarget "EXConstants" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2C3A15A969A41D47E6A955885C438B3D /* Debug */, - C4CDE7C4F8DD4914AE738C059C6A88AD /* Release */, + D504250D9B52F216E888065A6D6C14A7 /* Debug */, + D98F3EF69A1D2D0B9B96719A0671EB37 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C17E95474DFD4744F303DF1A172EE04D /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + CF0F0F2A858BD25613E3D295B7A6EAED /* Build configuration list for PBXAggregateTarget "UMBarCodeScannerInterface" */ = { isa = XCConfigurationList; buildConfigurations = ( - EE367A9717B8C128A69AEF82674B46B5 /* Debug */, - 55B233D535F044C11F2CE43DE855B4E9 /* Release */, + F75FDE1A16D22290624E5963183A7F43 /* Debug */, + E275D7FD7C386F8C792A2E8A4264D94C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CB97C076225DC55B9B4D746BCDD41E96 /* Build configuration list for PBXNativeTarget "UMCore" */ = { + CF773BF3AB5B99203184D051A085CCDC /* Build configuration list for PBXNativeTarget "Folly" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7CA5B14DEEEAAAE3A29DEF19951F0187 /* Debug */, - BC218C2A14D7F9749C095CCFD4F611ED /* Release */, + 99D60E8BC0BAE2AD9B9295BAA8B4BCBD /* Debug */, + 5D07A722E7B5B395635307B740E13327 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CC3B8958A2965669C0A321A46414DD85 /* Build configuration list for PBXNativeTarget "EXWebBrowser" */ = { + DDD1BD1ECC5150DB309F7D7A3EA53B56 /* Build configuration list for PBXNativeTarget "nanopb" */ = { isa = XCConfigurationList; buildConfigurations = ( - FA2F95C9F876AF9A6BB216332B991CF2 /* Debug */, - 7A1A2992DCDF44B8A1A9B692068EA1CD /* Release */, + 53E1EA1958049C03AD743B851CD2AED8 /* Debug */, + 4B1EAD76C8D88B9548F05FDA75774D0F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CCD0A61C46BE3DDF6B000B95F2C6EF54 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { + E8761BAA05C69BC596B176C709D64DCF /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6B14B441C6ABABF6898A539F25B3A681 /* Debug */, - C9F774C2AF542580B4652E4D228B2D8E /* Release */, + C75FF835076BCF2A78C2B8C38E4CC001 /* Debug */, + D420A64138F36D470CD6A995F6529DF3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DA90CF0FFEE6657AF917E75FEFC2456A /* Build configuration list for PBXNativeTarget "RNScreens" */ = { + EBDB015CA972DF0F3394BC91D53B44FC /* Build configuration list for PBXNativeTarget "react-native-realm-path" */ = { isa = XCConfigurationList; buildConfigurations = ( - D47C641158E1F882087D1CBD16364C0F /* Debug */, - 84DB0783D74558968C858D17DDBBD31B /* Release */, + 36584281E95ABFCC3CF4AF5E7EF64C48 /* Debug */, + 8B5C36EFC68AE33052BA69CB61540838 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DDD1BD1ECC5150DB309F7D7A3EA53B56 /* Build configuration list for PBXNativeTarget "nanopb" */ = { + EC53BAB1E23B45D0F550498FF8960B51 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 53E1EA1958049C03AD743B851CD2AED8 /* Debug */, - 4B1EAD76C8D88B9548F05FDA75774D0F /* Release */, + 680F93D5A24D17255248DBB963ACB412 /* Debug */, + F016E259B731D1734A4F476DDF7ABF6A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -10878,20 +11066,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F4A856825F17260CB5FA72AEDBB3F01A /* Build configuration list for PBXAggregateTarget "UMCameraInterface" */ = { + F84B7C34B5C42B3E1A56DAC5E2FC6AB4 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0367C7BB5CA326A3A35189EDB66172F4 /* Debug */, - C76E0D0D75910F1C1281E8A7B2298ADF /* Release */, + DD2F2BBC438D52719583D1D1677C965B /* Debug */, + D0C7F01684D24B1A9B9D5DAA081A67FF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F84B7C34B5C42B3E1A56DAC5E2FC6AB4 /* Build configuration list for PBXNativeTarget "GoogleUtilities" */ = { + FBC40A7F6CC2304CFC78A61E757FCC99 /* Build configuration list for PBXNativeTarget "EXFileSystem" */ = { isa = XCConfigurationList; buildConfigurations = ( - DD2F2BBC438D52719583D1D1677C965B /* Debug */, - D0C7F01684D24B1A9B9D5DAA081A67FF /* Release */, + 84656029028D7372794E55D736A7D365 /* Debug */, + ED8F518E1C694F9B9EDA2BC86DA45B83 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; 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 5908fe2fe7f..8cdd8ef277f 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/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-document-picker" "${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-document-picker" "${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-document-picker" -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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${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-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${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-document-picker" -l"react-native-orientation-locker" -l"react-native-realm-path" -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 5908fe2fe7f..8cdd8ef277f 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/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-document-picker" "${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-document-picker" "${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-document-picker" -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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${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-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${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-document-picker" -l"react-native-orientation-locker" -l"react-native-realm-path" -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-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index 86926e2f7a3..56120c18f50 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,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/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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" -OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -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 "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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" +OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-realm-path" -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 "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-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index 86926e2f7a3..56120c18f50 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,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/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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" -OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -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 "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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" +OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-realm-path" -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 "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/react-native-realm-path/react-native-realm-path-dummy.m b/ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path-dummy.m new file mode 100644 index 00000000000..fb3e97319d3 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_react_native_realm_path : NSObject +@end +@implementation PodsDummy_react_native_realm_path +@end diff --git a/ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path-prefix.pch b/ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path-prefix.pch new file mode 100644 index 00000000000..beb2a244183 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path-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/react-native-realm-path/react-native-realm-path.xcconfig b/ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path.xcconfig new file mode 100644 index 00000000000..7bb39a38c08 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-realm-path/react-native-realm-path.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-realm-path" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${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-realm-path +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 0311d08b5a5..0c32ee83983 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -23,11 +23,9 @@ 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 1E02221122B2F76B00001862 /* libRNUserDefaults.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E02220D22B2F76400001862 /* libRNUserDefaults.a */; }; 1E25743122CBA2BE005A877F /* libReactNativeShareExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E25741F22CBA263005A877F /* libReactNativeShareExtension.a */; }; - 1E25743222CBA2C2005A877F /* libRNRealmPath.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E25743022CBA2AD005A877F /* libRNRealmPath.a */; }; 1E25743322CBA2C7005A877F /* libRNUserDefaults.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E02220D22B2F76400001862 /* libRNUserDefaults.a */; }; 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7ACD4853222860DE00442C55 /* JavaScriptCore.framework */; }; 1E25743B22CBA301005A877F /* libRNFetchBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E25743A22CBA2F9005A877F /* libRNFetchBlob.a */; }; - 1E25743C22CBA313005A877F /* (null) in Frameworks */ = {isa = PBXBuildFile; }; 1E25743D22CBA31B005A877F /* libRNNotifications.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A8DEB5220ED0BDE00C5DCE4 /* libRNNotifications.a */; }; 1E25743E22CBA322005A877F /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AD44CF521518C610099D147 /* libRNGestureHandler.a */; }; 1E25743F22CBA32B005A877F /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; @@ -48,7 +46,6 @@ 1E25745022CBA39A005A877F /* libFastImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A770EC220BECDC7001AD51A /* libFastImage.a */; }; 1E25745722CBA3E1005A877F /* libSplashScreen.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E25745622CBA3DB005A877F /* libSplashScreen.a */; }; 1E25745822CBA3E6005A877F /* libRNVectorIcons.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B8E79A911F3CCC6D005B464F /* libRNVectorIcons.a */; }; - 1E25745922CBA3F1005A877F /* libRNRealmPath.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E25743022CBA2AD005A877F /* libRNRealmPath.a */; }; 1EC6ACB722CB9FC300A41C61 /* MainInterface.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1EC6ACB522CB9FC300A41C61 /* MainInterface.storyboard */; }; 1EC6ACBB22CB9FC300A41C61 /* ShareRocketChatRN.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = 1EC6ACB022CB9FC300A41C61 /* ShareRocketChatRN.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; }; 1EC6ACF622CBA01500A41C61 /* ShareRocketChatRN.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EC6ACF522CBA01500A41C61 /* ShareRocketChatRN.m */; }; @@ -570,7 +567,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1E25745922CBA3F1005A877F /* libRNRealmPath.a in Frameworks */, 1E02221122B2F76B00001862 /* libRNUserDefaults.a in Frameworks */, 7ACD4897222860DE00442C55 /* JavaScriptCore.framework in Frameworks */, 7A8DEB5A20ED0BEC00C5DCE4 /* libRNNotifications.a in Frameworks */, @@ -625,11 +621,9 @@ 1E25743F22CBA32B005A877F /* libReact.a in Frameworks */, 1E25743E22CBA322005A877F /* libRNGestureHandler.a in Frameworks */, 1E25743D22CBA31B005A877F /* libRNNotifications.a in Frameworks */, - 1E25743C22CBA313005A877F /* (null) in Frameworks */, 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */, 1E25743B22CBA301005A877F /* libRNFetchBlob.a in Frameworks */, 1E25743322CBA2C7005A877F /* libRNUserDefaults.a in Frameworks */, - 1E25743222CBA2C2005A877F /* libRNRealmPath.a in Frameworks */, 1E25743122CBA2BE005A877F /* libReactNativeShareExtension.a in Frameworks */, 0BFA93B8E2ED67D4832E0C76 /* libPods-ShareRocketChatRN.a in Frameworks */, ); diff --git a/package.json b/package.json index d96aaabda32..506dec3f8c1 100644 --- a/package.json +++ b/package.json @@ -60,7 +60,7 @@ "react-native-orientation-locker": "^1.1.5", "react-native-picker-select": "^5.2.3", "react-native-platform-touchable": "^1.1.1", - "react-native-realm-path": "^1.2.10", + "react-native-realm-path": "^1.2.11", "react-native-responsive-ui": "^1.1.1", "react-native-screens": "^1.0.0-alpha.22", "react-native-scrollable-tab-view": "0.10.0", diff --git a/yarn.lock b/yarn.lock index 5175a0af5b7..50ba0263d9c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11686,10 +11686,10 @@ react-native-platform-touchable@^1.1.1: resolved "https://registry.yarnpkg.com/react-native-platform-touchable/-/react-native-platform-touchable-1.1.1.tgz#fde4acc65eea585d28b164d0c3716a42129a68e4" integrity sha1-/eSsxl7qWF0osWTQw3FqQhKaaOQ= -react-native-realm-path@^1.2.10: - version "1.2.10" - resolved "https://registry.yarnpkg.com/react-native-realm-path/-/react-native-realm-path-1.2.10.tgz#886493e334c62279bee631789172cfa7cfd6dc8d" - integrity sha512-+FFjA+8fH2ubmAOeF+++4t+QG9qUEg4u3nvVN21zIMpkqj8TIuA0NZ5cdW5YZOx3hjFrYSxyCkq24Zu5QHv2Jw== +react-native-realm-path@^1.2.11: + version "1.2.11" + resolved "https://registry.yarnpkg.com/react-native-realm-path/-/react-native-realm-path-1.2.11.tgz#5380add5b0975d9ccc185a1f680825d8bf23bc78" + integrity sha512-kK8tPW14KwsmZUVb+mKXjbaQ/qBlYLUO5knZrOOSt4Xx0VZk+julJbEVUh+tD3g4xllGhrMrrnmQl3Gm0B/+eA== react-native-responsive-ui@^1.1.1: version "1.1.1" From c159f27cc230742fd8ed25f26775dd8bc5a4bf0e Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 15:48:47 -0300 Subject: [PATCH 54/58] Change rn-extensions-share to Podfile --- ios/Podfile | 1 + ios/Podfile.lock | 8 +- .../ReactNativeShareExtension.h | 1 + .../ReactNativeShareExtension.h | 1 + .../rn-extensions-share.podspec.json | 25 + ios/Pods/Manifest.lock | 8 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 5708 +++++++++-------- .../Pods-RocketChatRN.debug.xcconfig | 2 +- .../Pods-RocketChatRN.release.xcconfig | 2 +- ...hareRocketChatRN-acknowledgements.markdown | 25 + ...s-ShareRocketChatRN-acknowledgements.plist | 31 + .../Pods-ShareRocketChatRN.debug.xcconfig | 6 +- .../Pods-ShareRocketChatRN.release.xcconfig | 6 +- .../rn-extensions-share-dummy.m | 5 + .../rn-extensions-share-prefix.pch | 12 + .../rn-extensions-share.xcconfig | 9 + ios/RocketChatRN.xcodeproj/project.pbxproj | 2 - package.json | 2 +- yarn.lock | 8 +- 19 files changed, 3078 insertions(+), 2784 deletions(-) create mode 120000 ios/Pods/Headers/Private/rn-extensions-share/ReactNativeShareExtension.h create mode 120000 ios/Pods/Headers/Public/rn-extensions-share/ReactNativeShareExtension.h create mode 100644 ios/Pods/Local Podspecs/rn-extensions-share.podspec.json create mode 100644 ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share-dummy.m create mode 100644 ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch create mode 100644 ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share.xcconfig diff --git a/ios/Podfile b/ios/Podfile index 4ffa07963bc..62b9c1e3d3c 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -75,6 +75,7 @@ target 'ShareRocketChatRN' do pod 'RNLocalize', :path => '../node_modules/react-native-localize' pod 'react-native-realm-path', :path => '../node_modules/react-native-realm-path' + pod 'rn-extensions-share', :path => '../node_modules/rn-extensions-share' pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 08392462ea0..d59233182e5 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -145,6 +145,8 @@ PODS: - React/Core - React/fishhook - React/RCTBlob + - rn-extensions-share (2.3.8): + - React - RNDeviceInfo (1.6.1): - React - RNImageCropPicker (0.24.1): @@ -203,6 +205,7 @@ DEPENDENCIES: - React/RCTText (from `../node_modules/react-native`) - React/RCTVibration (from `../node_modules/react-native`) - React/RCTWebSocket (from `../node_modules/react-native`) + - rn-extensions-share (from `../node_modules/rn-extensions-share`) - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) - RNLocalize (from `../node_modules/react-native-localize`) @@ -280,6 +283,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-splash-screen" react-native-webview: :path: "../node_modules/react-native-webview" + rn-extensions-share: + :path: "../node_modules/rn-extensions-share" RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNImageCropPicker: @@ -361,6 +366,7 @@ SPEC CHECKSUMS: react-native-realm-path: 868473ea0bc4629850f1ec51a70d81055c06d091 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 + rn-extensions-share: 1b6c523f87e168c887262a3830e8e1af22d9dffb RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: 6134b66a3d5bc13e2895a97c630a4254006902b4 RNLocalize: 62a949d2ec5bee0eb8f39a80a48f01e2f4f67080 @@ -380,6 +386,6 @@ SPEC CHECKSUMS: UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: 80852b4c5177be5c007dca7daf4b6f34a3cb68cb +PODFILE CHECKSUM: bfa056aa2707bd200eb8a39ada130c51b702380c COCOAPODS: 1.6.2 diff --git a/ios/Pods/Headers/Private/rn-extensions-share/ReactNativeShareExtension.h b/ios/Pods/Headers/Private/rn-extensions-share/ReactNativeShareExtension.h new file mode 120000 index 00000000000..cb31615852b --- /dev/null +++ b/ios/Pods/Headers/Private/rn-extensions-share/ReactNativeShareExtension.h @@ -0,0 +1 @@ +../../../../../node_modules/rn-extensions-share/ios/ReactNativeShareExtension.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/rn-extensions-share/ReactNativeShareExtension.h b/ios/Pods/Headers/Public/rn-extensions-share/ReactNativeShareExtension.h new file mode 120000 index 00000000000..cb31615852b --- /dev/null +++ b/ios/Pods/Headers/Public/rn-extensions-share/ReactNativeShareExtension.h @@ -0,0 +1 @@ +../../../../../node_modules/rn-extensions-share/ios/ReactNativeShareExtension.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/rn-extensions-share.podspec.json b/ios/Pods/Local Podspecs/rn-extensions-share.podspec.json new file mode 100644 index 00000000000..669a78f6dfe --- /dev/null +++ b/ios/Pods/Local Podspecs/rn-extensions-share.podspec.json @@ -0,0 +1,25 @@ +{ + "name": "rn-extensions-share", + "version": "2.3.8", + "summary": "Share-Extension using react-native for both ios and android", + "license": "MIT", + "authors": { + "name": "Djorkaeff Alexandre", + "email": "djorkaeffalexandre@gmail.com", + "url": "http://github.com/djorkaeffalexandre" + }, + "homepage": "https://github.com/RocketChat/rn-extensions-share", + "platforms": { + "ios": "8.0" + }, + "source": { + "git": "https://github.com/RocketChat/rn-extensions-share.git", + "tag": "master" + }, + "source_files": "ios/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 08392462ea0..d59233182e5 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -145,6 +145,8 @@ PODS: - React/Core - React/fishhook - React/RCTBlob + - rn-extensions-share (2.3.8): + - React - RNDeviceInfo (1.6.1): - React - RNImageCropPicker (0.24.1): @@ -203,6 +205,7 @@ DEPENDENCIES: - React/RCTText (from `../node_modules/react-native`) - React/RCTVibration (from `../node_modules/react-native`) - React/RCTWebSocket (from `../node_modules/react-native`) + - rn-extensions-share (from `../node_modules/rn-extensions-share`) - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`) - RNLocalize (from `../node_modules/react-native-localize`) @@ -280,6 +283,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-splash-screen" react-native-webview: :path: "../node_modules/react-native-webview" + rn-extensions-share: + :path: "../node_modules/rn-extensions-share" RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNImageCropPicker: @@ -361,6 +366,7 @@ SPEC CHECKSUMS: react-native-realm-path: 868473ea0bc4629850f1ec51a70d81055c06d091 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 + rn-extensions-share: 1b6c523f87e168c887262a3830e8e1af22d9dffb RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: 6134b66a3d5bc13e2895a97c630a4254006902b4 RNLocalize: 62a949d2ec5bee0eb8f39a80a48f01e2f4f67080 @@ -380,6 +386,6 @@ SPEC CHECKSUMS: UMTaskManagerInterface: 296793ab2a7e181fe5ebe2ba9b40ae208ab4b8fa yoga: 92b2102c3d373d1a790db4ab761d2b0ffc634f64 -PODFILE CHECKSUM: 80852b4c5177be5c007dca7daf4b6f34a3cb68cb +PODFILE CHECKSUM: bfa056aa2707bd200eb8a39ada130c51b702380c COCOAPODS: 1.6.2 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index e8b0d6753bb..3e3fdf8164f 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -219,58 +219,59 @@ 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 */; }; - 02AD9CDEC93DFAC2C48E42123B215276 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 18243DD4D0C8AA2DCCE5655F82047778 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02AD9CDEC93DFAC2C48E42123B215276 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = DB422DF51B865432C5A40FC13A8F08E7 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; 02DBA939CE679A68546E01F00A6027D3 /* FIROptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C48284CABF83F748FB75471EE6008D /* FIROptions.m */; }; - 0382161F2C3D6D01A94B118C2295C126 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C9888A3379C92194BD14FCA592E7445 /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 046AE5C35766A231B0774F3A69DEB696 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 45678E0D230C8C88D1244A897B54EFAE /* react-native-orientation-locker-dummy.m */; }; - 047D0B25A834E49C911B7FF4C3212260 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F2B38EAD7C5B9C5D033EBF142E50F9 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0382161F2C3D6D01A94B118C2295C126 /* YGMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = F2380EE9D5D25BBA82FD4246691ABBFB /* YGMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 046AE5C35766A231B0774F3A69DEB696 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F25E145FAA1C4E52452B58FDC3C83CF /* react-native-orientation-locker-dummy.m */; }; + 047D0B25A834E49C911B7FF4C3212260 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 652E005DACB212DFCC834323A3642A7C /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; 07F8D080E8BF101BCF8A70FCAEBE060F /* FIRErrors.m in Sources */ = {isa = PBXBuildFile; fileRef = B70DF0D054083CCB1DE9AC9B8D3926B0 /* FIRErrors.m */; }; - 08CFEBF8C87EED02D29D227E80C3CDFF /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = BA47D24FCD6B487BD75C30DC007D3C67 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08CFEBF8C87EED02D29D227E80C3CDFF /* UMUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BB0065D1B85FB25BCDF4EBD19452E0 /* UMUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 08F5859959A583AE0145C4DA8A6D7857 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D445095FC98E1953690D565C881FDD /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 093B41BC8332F6869816B37BEE274ED5 /* FIRAppInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D23CD108787BFAAD18B7070B91E9C1 /* FIRAppInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; 099D04D422C7D37A83C0CB1C16A4437A /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A0A4705F5E9E9608ED13CCCA082AAF5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A0D73F18FB51763AE9C6751ACE6E9CB /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0A0A4705F5E9E9608ED13CCCA082AAF5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 214DE8F1530EE2253B24B246D728A517 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 0AC85B4ED3A0B32B50063F4CB81A290E /* GULAppEnvironmentUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5E8E6109691A6353CB4DD1B46E0BA2 /* GULAppEnvironmentUtil.m */; }; - 0B0C9CDB3BB27422996599F53E7CFC09 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = 979097B7DB27D7F475B7C0D8B2A4293B /* RNLocalize.m */; }; - 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CAC3B2203776ADA84BCAE41FBE0379F /* EXRemoteNotificationRequester.m */; }; + 0B0C9CDB3BB27422996599F53E7CFC09 /* RNLocalize.m in Sources */ = {isa = PBXBuildFile; fileRef = BD13A10BFA7BFDDD63FB5700F96716BD /* RNLocalize.m */; }; + 0B2D30F38EB2951F5650351BB4C018E6 /* EXRemoteNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 14DF4AEFCDD3C078B69AABB46E48BF64 /* EXRemoteNotificationRequester.m */; }; 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 = EF1C56D47C620750CB08FBB28D7188B0 /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C2A5DC47FE2D6837EA44C99ABFD5834 /* EXFileSystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E96652959070EFFDDB899D668EB98B /* EXFileSystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; 0C3B7C372E8CCD83F33E490FFA6FC98E /* FIRInstanceIDKeychain.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D9623D4DB3EC29B6AD964E55373B73D /* FIRInstanceIDKeychain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F7BA665B98DC5E312B0A27CF309B94E /* EXLocationRequester.m */; }; + 0C631B56D84BB38DC0844EBACC4893C5 /* EXLocationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C50BE01867132C962614DDB0C92D61A7 /* 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, ); }; }; 0D2EC3F4873B4B4E7B1FC9F4CC2E22B9 /* FIRInstanceIDLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0A208B50BC7DD0CB91ED9CAC3066BE /* FIRInstanceIDLogger.m */; }; - 0F0200D8E9C231DBA8137D0D27D76D2E /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E3E0741DD379C5285961D2E986BA173 /* RNCUIWebViewManager.m */; }; - 1095E8FC04BF5D67388CD27AF735EA00 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 668AE27C04386475A4F88728253D308A /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 115DFB3AA8F66D3A7139D37FEC05B270 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C4838D77CAFA6A9F6153336C544453F /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F0200D8E9C231DBA8137D0D27D76D2E /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CE17FB3F5FC90B3C55DEB760D5BD8F6E /* RNCUIWebViewManager.m */; }; + 1095E8FC04BF5D67388CD27AF735EA00 /* UMInternalModule.h in Headers */ = {isa = PBXBuildFile; fileRef = D694638ECDE446160A11CE7C443A9F4B /* UMInternalModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 115DFB3AA8F66D3A7139D37FEC05B270 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C5E64DF0AD6057CA2C8D1C3005F580 /* YGNode.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, ); }; }; 120A4380D0839C6F5B6B68F7016C0670 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */; }; - 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = A6F52032E24B113CC7408E54490FD8B1 /* EXWebBrowser.m */; }; + 1283DAA1D9FC84DF5395D2C8E052B779 /* EXWebBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = CA4DE7109603690584FE42B36E9DAF36 /* EXWebBrowser.m */; }; + 12EA3D8D896070EB605F260CD186A636 /* ReactNativeShareExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 5907C4386D97EB3E15F0B0B994F61B0F /* ReactNativeShareExtension.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; - 144625E3202F45C2D373617B09801847 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = E786A6183AA3E8AD0FA61A82EAF88AD4 /* UMReactNativeEventEmitter.m */; }; + 144625E3202F45C2D373617B09801847 /* UMReactNativeEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = A501CC61091EC1F04EEBAA04DE0899C3 /* UMReactNativeEventEmitter.m */; }; 14990E19CC1F4AAB0A67F65B096306A2 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = D31213551926432FA2202EC56108DB24 /* bignum-dtoa.cc */; }; - 15C551AC7F38881525D0F642D73D1C3A /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 192B96F1963E264CCFEBC3534FC8A498 /* UMModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15C551AC7F38881525D0F642D73D1C3A /* UMModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 86CFDEE0EC643256C6412EC41264919F /* 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 = C85CB6ADE38F01EC5F5DB0556BD13636 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16899D5B9029FB6D5A400783A624C1C8 /* EXWebBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 138724BBA958484CDCC21A61D7968E41 /* EXWebBrowser.h */; settings = {ATTRIBUTES = (Project, ); }; }; 16CBCCDFDB0D21E6C825EAEC1409161D /* FIRInstanceIDConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */; }; 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 = B3ADED8F8DEFA1278C85FB3E95276401 /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C4CFC4C94B4768CD357C6D07640A6DD4 /* EXCameraRollRequester.m */; }; + 17A36219C987CD12C5A1C50EA590D11A /* EXReactNativeUserNotificationCenterProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = B2CA4DC693C8466086CB7D79B5AD92DA /* EXReactNativeUserNotificationCenterProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17B03B21474472F7EB23CCA083EB6CE0 /* EXCameraRollRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 926D2EC869E72CE5FC0432474062ACDF /* EXCameraRollRequester.m */; }; 17E0E641870D2DF76133B0E009B014C4 /* Duration.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 630D96CF42C5D421F8148108C056654D /* Duration.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B521D5919FC19FAF174C6CA9AD9EEA5E /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18508BF0F3BB7FB5771E7208D859296F /* EXHapticsModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 980B6CC34B8595669CACC46ED860D1E7 /* EXHapticsModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18B1B61855C9B69D71746E578DE198CC /* Empty.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = A1C878EFBC94ECAB6800F32C740907CE /* Empty.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 18F37AFD3B1AEF9DAC492DEC75617BAF /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6770DB80DA2AD6203EE6306E2E63A14F /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F37AFD3B1AEF9DAC492DEC75617BAF /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5596C5122164ED20799774D2E0FEF76 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 18FB4261493C670629A85992F786101C /* Wrappers.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB3EF08CDD1CF865F3C42A5BB449708 /* Wrappers.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19E5155555E497E6C27F66B0152E5AA4 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = E98EAEC6C9E8BE7CEAA1A7C5AC870A81 /* DeviceUID.m */; }; + 19E5155555E497E6C27F66B0152E5AA4 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = F98C555B1B1D2985AFA6F85BF6F35FEC /* DeviceUID.m */; }; 1B5BCA7CE5BC8921E2C38DF493C52578 /* FIRErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = B18FD72A3EB5A96181A5E65A20158C48 /* FIRErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B9046261DFEF117ACDC9B34FA8DEE06 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F4CC5D457DF57726C2D0A610CE2458E1 /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CF6E74B068BEAAEAE16A9C6D0AF9473 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B0BA5CC740171CCC1DBF9EE7E4BE7C /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B9046261DFEF117ACDC9B34FA8DEE06 /* UMLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EF90FC5992D5E7F14FF1D78CEA0948DF /* UMLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CF6E74B068BEAAEAE16A9C6D0AF9473 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2DA584BD5F8B8AFB04C4D45254768C /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 1DB06C995ABDDD738BFD40217EC07EF7 /* FIRLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = A7FB755B6494E4CBB67B357467B03FBB /* FIRLogger.m */; }; 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 */; }; @@ -280,44 +281,45 @@ 20BA40C421853310C98499D9267451D0 /* GULNetworkURLSession.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B254C6B665958AB2EE0FF41B55E87D9 /* GULNetworkURLSession.m */; }; 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, ); }; }; - 21E73BD751F54484D260A00C2EB08783 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = A81349EA8C993B86CB44D28972236524 /* UMModuleRegistryAdapter.m */; }; + 21E73BD751F54484D260A00C2EB08783 /* UMModuleRegistryAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A27AF3E202827907932160629BBEAA1 /* UMModuleRegistryAdapter.m */; }; 21FB802D68798B4FC220407A9B8493F8 /* FIRApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 3898F03FA6F5B8EC91001D51A7ADCBF2 /* FIRApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2383940FE81981D16147620523B0D57F /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B1BB4F779DE264BB7D5C4D952CA67323 /* UMExportedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2383940FE81981D16147620523B0D57F /* UMExportedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C72B6DC83FDFF68E1F3C6251EF98E0C /* 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 = B438A1B35BDB2C17AED2E57973661B0B /* EXPermissions.m */; }; + 24725EF526B66947DFCFB06F8B0442D9 /* EXPermissions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D40AC2807D71FB5CC9E4F06E7AF3F24 /* EXPermissions.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, ); }; }; - 2630845AB60716C700B2A172A8E7696E /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9605093DCDE576A19361A5CA0D9820C0 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2630845AB60716C700B2A172A8E7696E /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = ED5EF83ADD18B845E6A6B6841EECCD21 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 85CB4225592A21E0AD70BE53C1742166 /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; 26EF38C55EA1EB9A2D377EB54A15F63B /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 59AFCE36072473C2A6DFE33FD5ED1CB2 /* RSKInternalUtility.m */; }; 26F9F2B542B9BA73FB684BF67B874579 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */; }; - 27444D047FA570009E1F8AFB879D2C74 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 0BEFF173864C59EF1F9D356DE406B8E8 /* RNSScreen.m */; }; + 27444D047FA570009E1F8AFB879D2C74 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 577613F9560B25B4440B84537096AB09 /* RNSScreen.m */; }; 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, ); }; }; 28ED695F268AB094B59F5E8A02D83CBF /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28F6B70B530EF918D1026D647DED9DFB /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8443BF9243EF19D3F65759F6816464 /* UMReactFontManager.m */; }; - 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 21EAE7CAD827EAFB28F5AE9B36F0FF4D /* EXPermissions-dummy.m */; }; + 28F6B70B530EF918D1026D647DED9DFB /* UMReactFontManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AD7754760531AE40CFA5CF0B3D369299 /* UMReactFontManager.m */; }; + 2ABD5D9936F366E87BB7EA022DE746CF /* EXPermissions-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E2BAD8C1A25F5DDE6D9D63C99D3690 /* EXPermissions-dummy.m */; }; 2ABE0C837D40AAB898715DEBF573F8A0 /* GULLoggerCodes.h in Headers */ = {isa = PBXBuildFile; fileRef = A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B4855FBDD7E6447B957F25EF568AE39 /* GPBDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 29CC28732B35F69DDD786CBEBEED2149 /* GPBDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2B611DF3E61BCA6065DFB637C49C3DD1 /* GPBUnknownField_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFD7D606C5FCF2524B1CA130FFB8982 /* GPBUnknownField_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 08AF325435742A9E699C98E542107CE3 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4587AD15A7973ECE6637EDA1DFBF08 /* EXFilePermissionModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C888F9B06035DACE72B2F14A31B663 /* EXFilePermissionModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2C520E5225CE3BE7F6AADECA719E57AF /* FIRInstanceIDCheckinPreferences_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DFC645B36E2820CBD47C45BF1DFEE72 /* FIRInstanceIDCheckinPreferences_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C7098145D910ED0119861F24D099EC3 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 127F912C8B415191F86EC0E2753DA599 /* RNSplashScreen.m */; }; + 2C7098145D910ED0119861F24D099EC3 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 478D780CC2805F8C2397C2F781FED4CB /* RNSplashScreen.m */; }; 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, ); }; }; 2D11C20D8BC0B5A08C5034CEF1D6E126 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 30D6FDCC52D608CFD7FA1FAE7409E462 /* Pods-RocketChatRN-dummy.m */; }; - 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = FD4F67FD4DC2D7E5C9CDD5A175081EFC /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D822AD060B6E93CBF52A50B8AC79A16 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A8840AD3D979C04E9B8B92AC953EF52 /* UMCore-dummy.m */; }; - 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CB74A35FB5355FB96FE7ABD109EB592C /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D61A2747A7ED3643B239BF6F190E30A /* EXLocationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 4184CE45204B51F19E2053B7A1F683C6 /* EXLocationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D822AD060B6E93CBF52A50B8AC79A16 /* UMCore-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 55CBB8F4113EEE690294787F140CE5F0 /* UMCore-dummy.m */; }; + 2D889A37C6B0DCFAC73E5AC673F56C1C /* EXCameraRollRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F709F89E5553463AFB7F6E3A3C72AF /* EXCameraRollRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3CB5219994521549C3C9F959AC67E0 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E4931E8207986206E7AB09BFBB585EB /* EXPermissions.h in Headers */ = {isa = PBXBuildFile; fileRef = 9923FAE163C04AC239528B50FB5C31A9 /* EXPermissions.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2ED483F4E25CA6CE0E707A19519A3932 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; 2F663F4A45768143AA9425436399F4CC /* GPBDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 2FF30E634BB47222F4A50057C7A69207 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A54C07D3A48A04612B210D4F1D8A25A /* UIImage+Resize.m */; }; - 30742F2855420CDF782A467A075F60CA /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 54B82F8D20049A45DA627A7CB9FBA8E2 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FF30E634BB47222F4A50057C7A69207 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = D9BBDFDE5F92E22E277330595C690321 /* UIImage+Resize.m */; }; + 30742F2855420CDF782A467A075F60CA /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 4400133C07DE7744AE95239FEEDC1451 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; 309BB13F15CBF5522705735F160B9AEF /* GPBWireFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = ECDE53F648C58F537F5674A4108DEB3E /* GPBWireFormat.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 31CBD3568692203AD941D320448A0167 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = 01F8FA667020A7E45792DEEFC49F0A2D /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BE66EBB9341C756D85769740C62D4745 /* EXFileSystemLocalFileHandler.m */; }; + 30D1EF1AEC6E201873D95CAC4CADE6E8 /* ReactNativeShareExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 0234855FEA2E6D501D22206A277BF76E /* ReactNativeShareExtension.m */; }; + 31CBD3568692203AD941D320448A0167 /* UMAppLifecycleService.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B935D2F5E9649533D91AEA1A080454 /* UMAppLifecycleService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 330B6B072E57ED740584170F1D33629C /* EXFileSystemLocalFileHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 18144E9C5707FA382E0113FD844087ED /* 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 */; }; 340C84373AAEB32501315E9FDB7B595D /* GULReachabilityChecker.h in Headers */ = {isa = PBXBuildFile; fileRef = A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -329,10 +331,10 @@ 382C2E817A391B9EC0D468297AA33846 /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8B8A65EF6D756E78D1E16ACF41C31AEB /* ja.lproj */; }; 3830C1B857C5717C7DBC2CCC16306EA8 /* GPBExtensionRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AF2CE3186BE637555516FB742354EB9 /* GPBExtensionRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; 38BCB127248925C97DA22D9ADD596A34 /* FIRInstanceIDDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 975D4AA90560D485466B4A51B23DE27F /* FIRInstanceIDDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 395BBE16B196FE3396B41FD00CA6BB60 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DECA38109375851DE9F22197028E797 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 395BBE16B196FE3396B41FD00CA6BB60 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C935CA55B51C771E890FBE600154CE9 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 3975A189814E8B3B79F9566A9FECC624 /* FieldMask.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D1AC57504505A93DD8D0EA687056CBB /* FieldMask.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 3A317AFB452DD05A3096E391D4FA8CC8 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E928C14C9CA406B961ECB44E8B747C57 /* react-native-document-picker-dummy.m */; }; - 3A8997132AEDB739413F8EABB8BD3EBD /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = 79DE7B6B154816E6DCBE487BB67ED173 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A317AFB452DD05A3096E391D4FA8CC8 /* react-native-document-picker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F00049C5DD12A9EFDB3AEBEA3AF8EE6 /* react-native-document-picker-dummy.m */; }; + 3A8997132AEDB739413F8EABB8BD3EBD /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = D69BBC80246F5A3CDC15F03F2797FE3B /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3AA53AF15F15E8753345353A0A837F0A /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */; }; 3B1FAF90703091E00ADB644BFFBFC2B2 /* Wrappers.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 19D813648EB603BAF163D4B61F2C5691 /* Wrappers.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; 3BFB2A7A3853E6DC492B62AF69F653D7 /* GULReachabilityChecker.m in Sources */ = {isa = PBXBuildFile; fileRef = 59EDFF0DAF963120B38FF8CB03EFD21D /* GULReachabilityChecker.m */; }; @@ -341,46 +343,47 @@ 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 = 8084D3241A42B62A15B74F8C533C2B59 /* EXSystemBrightnessRequester.m */; }; - 3D5465DE2AED4D2553BB758CB24C2860 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62B8E9E1E88EB990E7AC76F3B6B38A71 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 3D3E47E5F83FB0562F67CCE9A4AAA4F1 /* EXSystemBrightnessRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 35FAD02A7FAEEE9780AEACBA16F8F798 /* EXSystemBrightnessRequester.m */; }; + 3D5465DE2AED4D2553BB758CB24C2860 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5AA00E71D7555779DB7C2C10E3BBC177 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 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, ); }; }; 3E5151D480C1069B6D43F1F4CC07AF74 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5E12617144A23133BF6F8F4556C822FE /* logging.cc */; }; - 3E7118452B13CF336A4C2F4C65E0F6B2 /* RNRealmPath.h in Headers */ = {isa = PBXBuildFile; fileRef = BF0D6215F452EBB171927DB6516893D0 /* RNRealmPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7118452B13CF336A4C2F4C65E0F6B2 /* RNRealmPath.h in Headers */ = {isa = PBXBuildFile; fileRef = CFA3F93C73CD4C5563D8D364DA02C14E /* RNRealmPath.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3EE027B293A0E5D138231C2B2DCCB39F /* GTMSessionUploadFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD49CF465CC1C1013069EDC541177B8 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8126B6469CB961532063EC12B48E0E40 /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40E02135B467F425AA7FC5D7C7DA09FD /* EXContactsRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E607111B23FED9067273B13FF232BEC /* EXContactsRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4123AEB246F2BE1F3D2BC7F5456F6701 /* FIRInstanceIDKeyPairStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41F4969C4656FFFDCEFA09D9CE6D1E73 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBDF16A20F05203CC4DE3B15C23AF93 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41F4969C4656FFFDCEFA09D9CE6D1E73 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B20BAF8440F4FCF50801FA54A64966B /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; 424BAC2369E5A6E1072264D09811FB53 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */; }; 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 = 12EDFC33FED7F5C4559BC237114B9556 /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 78E5691D1FB00DDBB44E372B7794C0E5 /* EXConstants-dummy.m */; }; + 43B9F3FEC650EF0D7558B4C678EA6AF3 /* UMEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6719C0CED787A95CCE7D3CFD54B344EA /* UMEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 441CC59E05CD1798A940EABEC9260FCC /* EXConstants-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7143A12342D68FDF8F49EFE460CAB194 /* 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"; }; }; 46AC4867CC0CAA171EFCA1441C26D3F8 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */; }; - 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 28507E4DF8A45DB17887372FAFC2467D /* EXCameraPermissionRequester.m */; }; + 4747F8766746305A6925482005F441C1 /* EXCameraPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 95FA0CBAB334DE140BEDB28F1CD384BC /* EXCameraPermissionRequester.m */; }; 47FA7FBF77B1213A486EDFD2800F77B8 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */; }; - 481EA95DDF7F93A39B23F9F3E52A4015 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AEF13B03A35A95FFBD0419401781BC /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 481EA95DDF7F93A39B23F9F3E52A4015 /* UMUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58C501BCAB1C88C37707F9F125599661 /* UMUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; 48454372DE951FB7EC3677D15B3A171D /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */; }; - 484E3AE09965FB061282B10034884EA8 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = F7F6EC030F63CDFB6FACCF29A7D9AFBC /* Orientation.m */; }; - 488532CE86BAD8E19B9A30A2C246BA1F /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05681DFC28945653595E17F4E93C9D56 /* RNDeviceInfo-dummy.m */; }; + 484E3AE09965FB061282B10034884EA8 /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = BF3BD50928E3093164C316A547CA46DB /* Orientation.m */; }; + 488532CE86BAD8E19B9A30A2C246BA1F /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = ACFD4FB467615C5B33EA9665AF5CF93F /* RNDeviceInfo-dummy.m */; }; 4A91A6BCDAD59855BD5D82CE6550FCB8 /* GPBUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4B988A007FCE03DC053E93F061AF221D /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AC20F93FB89F173A1218882C6857514 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C132CE26DC00D614C9AB9663046FDBA /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39AD2C8AD9970E5E1DE289AE559FEE74 /* RNCWKWebView.m */; }; + 4B988A007FCE03DC053E93F061AF221D /* RNDocumentPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 66637907B5AF15F4C98B4D15F2955F16 /* RNDocumentPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C132CE26DC00D614C9AB9663046FDBA /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECFFFF522D8931F2F6F874F6CDAEA26B /* RNCWKWebView.m */; }; 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, ); }; }; 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, ); }; }; 4D2B7471E1DEFB9FCA40493371A110BE /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; 4D6204372A459395461F7EF95EAA3E23 /* GPBExtensionRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 4E73B7F00B095CD969E171249C320AC2 /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97117171D9D65E650FCB6E4EA37E2016 /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 4E73B7F00B095CD969E171249C320AC2 /* YGMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7960E6A5E27EDEA9ADA1D455391C1 /* YGMarker.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F34AA77F8719F11A331EC384AB44272 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */; }; 509F8E74467ABEF4F6A5662CB44A300A /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */; }; - 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 626A07274D4EB6A940A6B2AF98F40A12 /* EXCalendarRequester.m */; }; + 51C79C88820B5197AB3CDB9376396195 /* EXCalendarRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 75557BDC533CD1F7D49CF38B803CC4F3 /* EXCalendarRequester.m */; }; 51D3A0538BB2CAD9581798E78842DBFB /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; 51E9C1CE19E5F6374631FAF47DF80AEA /* FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */; }; 52A745CB46EF3FB68AF264176DED6FF6 /* FIRInstanceIDKeychain.m in Sources */ = {isa = PBXBuildFile; fileRef = 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */; }; @@ -388,18 +391,18 @@ 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"; }; }; 56190CE5DD772C01F08022D6215F5298 /* FIRInstanceIDTokenManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D37C4A1FC44FCFDA1CA04CE747500EC8 /* FIRInstanceIDTokenManager.m */; }; - 5626EEA5122A67231A1B681E76F8AFDA /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0488280DDC23C1BA9BDCE5B5B6A20B3A /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5626EEA5122A67231A1B681E76F8AFDA /* UMModuleRegistryDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = EB564F0DB3C9367ECB2D38DBEA788314 /* UMModuleRegistryDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; 563242DBDA35DDC44EF47B2F10248BB3 /* FIRInstanceIDTokenFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5672F848FF959C3A5CCFA56FE0288E79 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = AC4EE92D0E6B236B9F7EBA7159334C44 /* UMAppDelegateWrapper.m */; }; - 580240B0622D11D27185586F62C95571 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6D1D60641E2AA793C28DF28387CB301 /* RNLocalize-dummy.m */; }; - 58379115C0327DDFD8C31B29DCF1958F /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F78FB9CC8979A1A1AE3B1411E72676C /* UMNativeModulesProxy.m */; }; + 5672F848FF959C3A5CCFA56FE0288E79 /* UMAppDelegateWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = C328B06AD47D3292157838FE6D08EB05 /* UMAppDelegateWrapper.m */; }; + 580240B0622D11D27185586F62C95571 /* RNLocalize-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2137B90FD471FEDF11AA8F200058BA43 /* RNLocalize-dummy.m */; }; + 58379115C0327DDFD8C31B29DCF1958F /* UMNativeModulesProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 56E0F09FE9428CB9A096DE77C9680136 /* UMNativeModulesProxy.m */; }; 5935A9A037670707EAD529898A61A424 /* pb.h in Headers */ = {isa = PBXBuildFile; fileRef = 10C306448DF95BDD2C33FF0845BE3EE3 /* pb.h */; settings = {ATTRIBUTES = (Project, ); }; }; 593A4EBA1173D25632E2A07FD8197686 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 594680F9B579D06A192B669A7B3CA711 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = B8CC93F6B13EC4F6A6B5FE0D56939147 /* UMModuleRegistryProvider.m */; }; + 594680F9B579D06A192B669A7B3CA711 /* UMModuleRegistryProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B2C7FA3091F72F246C807C11659FEC8 /* 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, ); }; }; - 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 65132A743ADEE9456C90C121015ACA6A /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E8B52E9B563C153A19B4C1DC383D066 /* EXAppLoaderProvider-dummy.m */; }; + 5AD2D50EA0EA95CD2488782E90B478B6 /* EXAppLoaderInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 05B565509009609D1961991C8ADC6B79 /* EXAppLoaderInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BF763F8EF91BF90AEC8E80EDA35C4F8 /* EXAppLoaderProvider-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 104AB4D79AEBE6E528913A918D800483 /* EXAppLoaderProvider-dummy.m */; }; 5C2ABB749C6E8BBEC7631087BFA535DD /* GULNetworkConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 031182114156D9FD17B5BA12E328E7E0 /* GULNetworkConstants.m */; }; 5C30D2624E293669A20BA3D803D3C745 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 8C12D44C3342E3DCF923AFC75D90DFC1 /* en.lproj */; }; 5C39FAFF84E98053EAF5F44DC4B7BFAA /* GULAppDelegateSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = E99B0D64B717D3685A2D48961E286C54 /* GULAppDelegateSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -409,30 +412,31 @@ 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, ); }; }; 6202F0EEEFCB1ABE4656F4975FF294BC /* FIRInstanceIDVersionUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */; }; - 6246D907AD638D1DCD1A10AA988321F9 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = EECB4F3A81F1FB4F694A03F1EDE10895 /* RNSScreenContainer.m */; }; - 625B3FBE5DB5D7FFA8E6A04E481B6A86 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD723597BC7E878A613B6CBC61CDB542 /* UMModuleRegistryConsumer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6246D907AD638D1DCD1A10AA988321F9 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = EF4F14EBDB06885C964F9AC0D13AD2B1 /* RNSScreenContainer.m */; }; + 625B3FBE5DB5D7FFA8E6A04E481B6A86 /* UMModuleRegistryConsumer.h in Headers */ = {isa = PBXBuildFile; fileRef = AFE35FBC793806FACA040539D346BBC8 /* 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, ); }; }; - 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F0F2FAE6500D04ED6F1312A01D565447 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63BB559BC6DDA8726779E5435731BBF1 /* EXConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2488680621032E6B1FDFC8C6DA1BF8F0 /* EXConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; 64DC54D37099AD0EE355E5B55B892709 /* FieldMask.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = CDE4FA8468D09611489BAA01EE305FB9 /* FieldMask.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 661C4FBAC64C5BC556613D4080641615 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 1776896CFB2DB7D53F6870D097871B60 /* UMReactNativeAdapter.m */; }; + 661C4FBAC64C5BC556613D4080641615 /* UMReactNativeAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 09652E514397D75FBE030F206451DEC3 /* UMReactNativeAdapter.m */; }; 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, ); }; }; - 6706524B56ACFDA2540AD65DE183A4B5 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = A24F0D17F9FBDCCCEC4C22FD731397F3 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6706524B56ACFDA2540AD65DE183A4B5 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = C33766D85CA2AF9422AB4FFACAD46A3D /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; 68A30E4A38A40F3C00132E825FFB1295 /* GULNetwork.h in Headers */ = {isa = PBXBuildFile; fileRef = B7076D6BE9B38FC1611B4AF166C11FB5 /* GULNetwork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 698D396178A8C90E5E6D03AA69FE4EB1 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4682CCF683C4BAD900558FDA6C3A7A7F /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69D6B7DE938FAE6E0B771D303C40A4B9 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A3E9EC6AE49276FB46E379ACFB5F75D /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 698D396178A8C90E5E6D03AA69FE4EB1 /* UMModuleRegistryProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 8AA5D6F5A2C64C737302419F80214440 /* UMModuleRegistryProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69D6B7DE938FAE6E0B771D303C40A4B9 /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 74F2166E623CF220F1F4869AB585D64D /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; 6ADF36D4F87995F68DAE551D7C4974E6 /* FIRInstanceIDAuthService.m in Sources */ = {isa = PBXBuildFile; fileRef = 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */; }; - 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 831929E581515A1F83140528906C2E4D /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = 4191361051666A0D9CF54E7E9F6E10B5 /* EXConstantsService.m */; }; + 6B24587056B43B44A33D33481C1F0B7C /* EXCalendarRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = BD9D375A0135A74B09F54D4C4E59DC47 /* EXCalendarRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BB06CB7446BCBD59FD95F327DF028BF /* EXConstantsService.m in Sources */ = {isa = PBXBuildFile; fileRef = E81605AE12AB3C6ED32EC2CA47574EA2 /* EXConstantsService.m */; }; 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 */; }; - 708AF60B6E91F618D72939CE739B1B37 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = E70EDE8E5C9FFEB42682E1C0370C5D02 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 708AF60B6E91F618D72939CE739B1B37 /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 4875BEBAB31CF2EF28ABC854B6489D27 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; 709AE21BF5777B1E8A4232861440024F /* GULOriginalIMPConvenienceMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; 70FC943F496D3240C9137A4DE738E07E /* FirebaseInstanceID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */; }; 72149BE83C816B41E8FFE418B46AFB6A /* GULNetwork.m in Sources */ = {isa = PBXBuildFile; fileRef = 05449E32192EDFA22803A46B68E16576 /* GULNetwork.m */; }; - 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E7F0058442084B5BFB38165037D8B848 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7268C2FA444843FAE6C1A14B396A46F6 /* rn-extensions-share-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FA23A71CE1BCA68915B41A32887485D /* rn-extensions-share-dummy.m */; }; + 7563D4DBE0016DD8A873BB45F22E702D /* EXFileSystemLocalFileHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E2AE2B851F0C5D5E40354C0994C236 /* EXFileSystemLocalFileHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; 75F990944B9DC6C6D5B1716536437CA3 /* FIRConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.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 */; }; @@ -440,7 +444,7 @@ 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, ); }; }; 77F8FA7C6F79F4D75F272601252E1F9C /* Type.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = F4769E4FD51434A8166BF6744B6DECCB /* Type.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB6A18322B8BF20E815C4D88D0C3F3 /* EXAudioRecordingPermissionRequester.m */; }; + 78BF1F947D28284C6C5B06636B83AEF7 /* EXAudioRecordingPermissionRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 293F28195F43C199AEEBA138E9665072 /* EXAudioRecordingPermissionRequester.m */; }; 78F0EDF42B5AC108BCFD1344336F1A80 /* FIRConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7A0993D795B2B5412F5FC95EC6D0ECCD /* GPBUnknownField.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */; settings = {ATTRIBUTES = (Project, ); }; }; 7AF3EBDE1C484B8530345B0872619C5C /* GULObjectSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; @@ -450,185 +454,184 @@ 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 */; }; - 7D17F0ED308D3AC97B4AE80395628A3C /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = D281363BAC67A31CA84C0D3423EEE4B8 /* ImageCropPicker.m */; }; + 7D17F0ED308D3AC97B4AE80395628A3C /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = EA9539992D00C21175CCFE91ADDAF15C /* ImageCropPicker.m */; }; 7F2D0829939B0940DDD1C8400B979C8E /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */; }; 7FC13E30F958F04ED3CD72295E97F1C3 /* GPBDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FD38A141A665260CBDBC2A484CEB790 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E7CA4B021924C03E3DD9695981FE8001 /* react-native-splash-screen-dummy.m */; }; - 80C4F646F8963D04605290ED96E3BB1A /* react-native-realm-path-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8FB2662CBAA57FEA849FBEF17542D6D /* react-native-realm-path-dummy.m */; }; + 7FD38A141A665260CBDBC2A484CEB790 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59DDD0E1054DC61EAD7F9861858FC402 /* react-native-splash-screen-dummy.m */; }; + 80C4F646F8963D04605290ED96E3BB1A /* react-native-realm-path-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DC23CD178D303363B1318CEFF5092F6 /* react-native-realm-path-dummy.m */; }; 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, ); }; }; - 82AB5187CB86FEA3C1FDCF99D84917AC /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = F13A1475E182AC393417BA122E41795B /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82AB5187CB86FEA3C1FDCF99D84917AC /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4329487DDE9265B304E7AA19AE9529 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 83B41A031755AB6F0E367484C028946A /* Timestamp.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = CF2AE1EC0D98FF4B93D51D644A2C7ABF /* Timestamp.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F2DF0B466309B5A279FBA1DC687B6B8 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85233251D8E6162F3BC0BBE816ACA76D /* EXCameraPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF49C56E787C9F802A097E310272EA1 /* EXCameraPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; 857BE9AE3B5B0BBBA8EF4C47C677EE2A /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */; }; 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, ); }; }; 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 = 845309D152A4F00257529AA2AB7FB409 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86A8C2CC47B3F2D44AE6CB5D761C63EC /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 34DFAF2D1DED544692E495C783EF7E82 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8693629097C6317357D73FBBC11B68DB /* EXUserNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = E4E323CE9FBD0AB4B6EA5F2261094124 /* EXUserNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86A8C2CC47B3F2D44AE6CB5D761C63EC /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBCEF542F468E55DFEF49DD9A79712B /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; 888A102CD6AD2792AEF9939A05FA723D /* FIRInstanceIDKeyPairUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 16DC3363E3A5DD93919EA65165E1DD2D /* FIRInstanceIDKeyPairUtilities.m */; }; 89F3CC088617A30811815DFAC3D94D0F /* Any.pbobjc.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DBB9B2B059385BF7CBC7C10F071CC9 /* Any.pbobjc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A7A457B08A6B8FE5940709A20ADA564 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CDCC731A2FBCA55937C58A6A91FE275 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8A7A457B08A6B8FE5940709A20ADA564 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC3FCA2B1D6D41344F2A0C272E3B4D20 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 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, ); }; }; - 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = B9D4D551CADFCBE08BCDBCEE6BF55E70 /* EXContactsRequester.m */; }; - 8CCE0C74913F36C96D7F761410CE6817 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = DA364DC8821E6F2F3525D9A1AD78D002 /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C7A15FBAE7271D2AB49E08463F5BC95 /* EXContactsRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E18DA2E0266FBF26152531C20882BD /* EXContactsRequester.m */; }; + 8CCE0C74913F36C96D7F761410CE6817 /* UMEventEmitterService.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A0F7E860ED61D48C06BFFC7B7C91FBF /* UMEventEmitterService.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; 8E72A08495A84744B8F6B5B7E4FA2451 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */; }; - 8EA8EB6D6C9C3ED99D58F36BE69D85E1 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = F32735F3F9AEE7E85996C828D31C7B09 /* UMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EA8EB6D6C9C3ED99D58F36BE69D85E1 /* UMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 82FD6EB75FA961CE16E8A890F152CD41 /* 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"; }; }; 8F717D59C6CA0E34F03E35E0A4213B24 /* FIRInstanceIDKeyPair.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E27655892D05466617A8A07FDBD8687 /* FIRInstanceIDKeyPair.m */; }; 9049E304B24FDEF02EEFB5004D0BEEA2 /* GTMNSData+zlib.m in Sources */ = {isa = PBXBuildFile; fileRef = B6B6FD9F05867E267A730BD9C007D221 /* GTMNSData+zlib.m */; }; 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 */; }; - 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7959FA3C776756C79684510CE9547B3A /* EXFileSystemAssetLibraryHandler.m */; }; + 91446633BDBBF72BFFE0F45182D49D33 /* EXFileSystemAssetLibraryHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A418D113B6469B20252D61BA33AB08EC /* 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 */; }; 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 */; }; - 9456AAC60228BC704FC87F9A339482A2 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCBB427CB227193DA6236812D3D8A754 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9456AAC60228BC704FC87F9A339482A2 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E41327C06C5320AD292B081B0B83986 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; 9524BFAAAE6E5588F9615CEEFFAB8F74 /* Protobuf-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CECDA20FE3432D2A0FD84D45349110D /* Protobuf-dummy.m */; }; 956F8C804CAD6678531E8A42D3C7BAAB /* GULNSData+zlib.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FEB15F0E803D8293239AB02DA1B66EA /* GULNSData+zlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96C34F4DCC151882C125476F326B30BE /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7392E40D706A1072611B4CFFF50E1D2E /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96CE3864AB8632CB9267895611BDEEE0 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BD770217FE1351E2C0E91F27F6BF098 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FD686C41E663615A658BF61C0B8576 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 663D14443F7FD0802F2D812B2153AEAB /* UMExportedModule.m */; }; - 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = DC96135AC6C0009BC8F36D80DF7A35B7 /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97E341A41481C3979C5728D79249CBB8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0F531AC7EF738B44C66AB3A306585BD7 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 98DFFF21AB4C960BBEA949E6C225EA88 /* RNRealmPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 7638DC17BC0135744115C99E36911C9A /* RNRealmPath.m */; }; + 96C34F4DCC151882C125476F326B30BE /* UMBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F751B797C2BE9300597FDFBF4F20D16 /* UMBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96CE3864AB8632CB9267895611BDEEE0 /* UMReactLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D6B53C0418EF080C43CDBBDF078ADCC8 /* UMReactLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96FD686C41E663615A658BF61C0B8576 /* UMExportedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F14533CC551AD3897FECC3F78679C3E /* UMExportedModule.m */; }; + 979FE135AD6F5501E856E33EC5CA8E15 /* EXAppLoaderProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 84A9358736D3D81A36F81D05D1E4098E /* EXAppLoaderProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97E341A41481C3979C5728D79249CBB8 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 063C65DD224981BEEB195A18B1614BBA /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 98DFFF21AB4C960BBEA949E6C225EA88 /* RNRealmPath.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A39CBA97D7DACE9DF0EB6890334A8A9 /* RNRealmPath.m */; }; 9AE90D1360625450CC828AB283D9C337 /* GPBWellKnownTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 9632C230C1B82662D3DAB3FAF6426F38 /* GPBWellKnownTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B32E6AE0CF41F8168D8BF99EAAE3167 /* GULReachabilityMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC7600BC172CA9427C27FD82BF17552 /* GULReachabilityMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9B586B31EC4BFE1C13C9DDAFFCC1B6C1 /* Type.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = E91CA0CA3AD2A04005A71157B2C32FB7 /* Type.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 9BCC719F1610955DDC1E8AE9211F5425 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3228898EAB4614681F1A663586CE8FF3 /* RNCWKProcessPoolManager.m */; }; - 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = EF4BDF5F4EADF81300A71703E6CE8DC6 /* EXHapticsModule.m */; }; + 9BCC719F1610955DDC1E8AE9211F5425 /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 83E4E128598383188896C08018DB8541 /* RNCWKProcessPoolManager.m */; }; + 9C2121F5D96BDE54DA8B179237762DE2 /* EXHapticsModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 745B494873A826D94F99088E705B05A4 /* EXHapticsModule.m */; }; 9C256455B0ED145A471E33181813B7D2 /* FIRInstanceIDUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9CDD2B86B2F780B03A1FEF006BA41EB8 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DB428AA527C1B3B1A608160B85AA511 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FB035AD0A1082098738AB35D89417EB /* UMViewManagerAdapter.m */; }; + 9DB428AA527C1B3B1A608160B85AA511 /* UMViewManagerAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0392C6E3CDA1AFE9DFF79FBFB66DFC97 /* UMViewManagerAdapter.m */; }; 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, ); }; }; - 9F33DF87C2E0C16FC679196B9784809D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 4563015111A319DAA36733D21E4E32A4 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F33DF87C2E0C16FC679196B9784809D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = A2DD3760347AD6DA5D92351CB268A9D1 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; 9FAFB2E4473C23CE1CD770D0BFE27CF7 /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */; }; - 9FE61DB5E1DAF7047C2FA52A52E22450 /* Pods-ShareRocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */; }; - A026F0A9355450451E1558F3A87AABEC /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 291D5E4B3399B7FBF6C658E3D6B3EFF0 /* UMAppLifecycleListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A026F0A9355450451E1558F3A87AABEC /* UMAppLifecycleListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 85DB4BBD1D7C604D3B61AE4E0B4F697C /* 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"; }; }; A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = F7B2AB6DCABD12BA606D58C2E2683864 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D920F18086083E959BEDE1A89508580F /* EXRemindersRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2A70CD096FE24B7E48EA8C86BC112BD /* EXAudioRecordingPermissionRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D61748A16F076B54798F8F3D2927DF8 /* EXAudioRecordingPermissionRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3B33574C82F38A9087B056DF9CED726 /* EXRemindersRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 071590C2DC6ED879FC032EDD5912B1C0 /* 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"; }; }; A3DA13F2F5DB418C2D8DDAC342D63120 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1"; }; }; A59EE24E45C9D907CD700EB242C98360 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */; }; A5CD5FD1E50562B7D20C8DCC09F8918E /* FIRInstanceIDStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CCCEBA88468B01A169C6465CAF3FD12 /* FIRInstanceIDStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; A608CD7C0F44E7CBBC311FDADA4BC953 /* NSError+FIRInstanceID.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A67C74E067248967893327F3DAD53D7 /* NSError+FIRInstanceID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A686F787786DACEB84FABB108904556B /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = C64056D32F066C90251D8F1E56AB1B12 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A686F787786DACEB84FABB108904556B /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = FF21DDD9EF9B94CD2AC3909D60F1DE6C /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; A68D95130278786381DA115EA4E9B527 /* NSError+FIRInstanceID.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ECB7FF032D4794DA9840A5670C932BB /* NSError+FIRInstanceID.m */; }; - A6CA29B0DA323A8DF688591BCFA181EF /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6B036858181751E543BD79C7B405FF3 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - A6EA2CE9DE236725BBB21F19EC00340C /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C5618AAECC011C23975CAD363216A5 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6CA29B0DA323A8DF688591BCFA181EF /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FA1ADEAF947D72F8E26710C52F4D216 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A6EA2CE9DE236725BBB21F19EC00340C /* UMViewManagerAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9F45218474737BE74EC0673105E512 /* UMViewManagerAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; A7CB4E7AFE7FA70A8C23C368BA15638E /* FIRInstanceIDCombinedHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */; }; - A882E119717C37376298AAD257A6A96B /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = C9761CD65CD28E48AD431D2CADE56D77 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FF59FB65959FAC943014917FBFFF90D /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A882E119717C37376298AAD257A6A96B /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = E308C024484C63E58C4FDC60AE57CE0C /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8B6D15DA68092B480483FE020894204 /* EXFileSystemAssetLibraryHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 960E58738C5C3B7A0B7415B2252B7E4B /* EXFileSystemAssetLibraryHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; A8CA106C04C162B078C1AAE3F0AA5F8C /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */; }; - AA765915F7DBEE9C811DCD04B3B89255 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13410CAFB030BCA55ABD16F4561D78BD /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA765915F7DBEE9C811DCD04B3B89255 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A5FAE9BA083293E5E8706FDEBFC6BA /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; - AB938B4ED33744020BF7430D7496E852 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = 8738A9EE57BD71142B12D552AF59C2CF /* RNLocalize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB938B4ED33744020BF7430D7496E852 /* RNLocalize.h in Headers */ = {isa = PBXBuildFile; fileRef = FA682C64DE217BC07006055C66C8E23D /* RNLocalize.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, ); }; }; - AD3B4AED29358109EE7F17CC861D9F50 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E867CAB95A604A5DB227E6F017F04B5 /* RNDeviceInfo.m */; }; + AD3B4AED29358109EE7F17CC861D9F50 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E1139362F8D95462E8E79984493C7E1 /* RNDeviceInfo.m */; }; AD413437CBBF101330CA8ECA8B18FF37 /* GPBExtensionInternals.h in Headers */ = {isa = PBXBuildFile; fileRef = 0782F9E9096355814719FF9B88161DCB /* GPBExtensionInternals.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 73445129AC7FB86EE46F20FB12E729DF /* EXHaptics-dummy.m */; }; - AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 5150A9358391484C756E8161910D3C18 /* EXRemindersRequester.m */; }; + AE50881383D99425658602348D1744B0 /* EXHaptics-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 419246D183C8A8E6199F743626E04485 /* EXHaptics-dummy.m */; }; + AEA0571AD000EA6F97808A38CED466A8 /* EXRemindersRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B62FA215569F5BF4B9C37847B5EF335 /* EXRemindersRequester.m */; }; B00378500E34E873F4275738E8D383F4 /* GPBRootObject_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; B0058808A2C8B7E7B45022E30EA79AAE /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */; }; - B01BF0DB4F2C13598BF21D8BAF63FA02 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 480C81E4CEDE746C6B881C6D572D92CE /* UMLogManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B01BF0DB4F2C13598BF21D8BAF63FA02 /* UMLogManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1546C9472A3146B9FD7320460B61A2ED /* 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 = 68D28C2718DE550E5EFCC4D6C2A317CD /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B1D15B674E231785448AA95939AE9463 /* UMUtilitiesInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F19DE6D3EC387FCC9908A1D7BDE4FEE /* UMUtilitiesInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; B3445D4E4EC4058050396D3FA2BEAAD7 /* GULAppDelegateSwizzler_Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 01667AE46D9B0857D288D0322E9859D5 /* GULAppDelegateSwizzler_Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; B3C1245860FADFEE2257C5D046A50939 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.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"; }; }; - B4FAAC2A1A9373B7A90BB2EB37CA1FDA /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A63FC16745F04B69799DFC4C0D7A9D5 /* RNCUIWebView.m */; }; - B69F26B8E55FCEF87C05C36F2B8BE38A /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2956C0FE9045D44B70E5AE4C42F3FC5D /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6C35154DA281099C1AADEA1956E5EBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 026462320DF0A64CDFA59DC46E5A77D8 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B4FAAC2A1A9373B7A90BB2EB37CA1FDA /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 486FF2C0A1AF24CE13B399C0B72D4C00 /* RNCUIWebView.m */; }; + B69F26B8E55FCEF87C05C36F2B8BE38A /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E19CDE63BE4733D11802A487B94A5C92 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6C35154DA281099C1AADEA1956E5EBA /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E919ACBB9305A4DFD437E7B4D4E352B /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; B6CE63A97BACE41020A26A9FBDA65E4E /* GPBDescriptor_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; B7D9F8D1971A3797151BCBDF74824208 /* nanopb-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */; }; B804FC8AD528D429E085A9B52631B33D /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */; }; - B805785A2E43EA6DED4169A6012303F4 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C3788D21BBB311D01466980579177A4C /* RNDocumentPicker.m */; }; - B9A2DCD11C948D6821607F5584A88486 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CBF6882D2CD8EB544E3926B8B901B14 /* RNImageCropPicker-dummy.m */; }; + B805785A2E43EA6DED4169A6012303F4 /* RNDocumentPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FCEA1F86CAAF63F2819D5249EC003AE /* RNDocumentPicker.m */; }; + B9A2DCD11C948D6821607F5584A88486 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F162A36178172C8C9482DE7355A7B7D /* RNImageCropPicker-dummy.m */; }; BA72121160AF58E9BB0CDDE7F3A8C286 /* FIRInstanceIDTokenInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 59580373A446659C07B9D6B12E8B769F /* FIRInstanceIDTokenInfo.m */; }; BACC7B01572F7FD2BF250AA2DF3A4E06 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */; }; BACF4FF0242F8A8197F61D49824B72FB /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */; }; - BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D1585F3DBD498E2CC26B4A4E578ED4B /* EXWebBrowser-dummy.m */; }; + BC7823D69B7FA18696F5C13C6A9149A6 /* EXWebBrowser-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CAD7790E8A894A789836396ACBC8E0A7 /* EXWebBrowser-dummy.m */; }; BCFBA8C90FCC43DF9D66551A9D371971 /* GPBCodedInputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BDDA9126BB85AE326C6FD44DF4ABF115 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = A519FB84482B64E2D65FA64E361C2956 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDDA9126BB85AE326C6FD44DF4ABF115 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = C89DF540C9877A359AB232816C9E994A /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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 */; }; BF0CDE313B0F3BE180D52BAED9F06B1E /* GPBProtocolBuffers_RuntimeSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD147ED924833657BDB46E2BBA9BBCF /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FDAE339B7B4EAE8669C929838EE87D8 /* UMViewManagerAdapterClassesRegistry.m */; }; + BFD147ED924833657BDB46E2BBA9BBCF /* UMViewManagerAdapterClassesRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 89FAA21ECDD98DD632D528837AEE9970 /* UMViewManagerAdapterClassesRegistry.m */; }; BFD2F7E2724939BBE6DA011936B8A9E1 /* Timestamp.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 64EE348660F8A8DDAABFA36434FE1DCE /* Timestamp.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = C541176C1A2500C5AF3259B71245AD3C /* EXConstants.m */; }; + BFED0E108BCCB32ADC7B04527528CB87 /* EXConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = FB23EA80DA28DE296F54F03C29EF63A2 /* EXConstants.m */; }; C02FC28F0E098264F74DF4442DEC7802 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 86144205600214BECA2C93CEDC2A76D7 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; - C08E4C8138813525A78FDCB6B3E5CB29 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E35DF6C0874AF4CA50F6D2C650272A0 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C08E4C8138813525A78FDCB6B3E5CB29 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1835452E2118377BCCA1C34B7A49C4 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; C0945FCF515705CDD7CA3ADB6AF512ED /* GULNetworkMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = EB6981EF8981D724C17B40BCE18F4DF1 /* GULNetworkMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D15A8771D5B1C244A1F3667C1D5B108 /* EXFilePermissionModule.m */; }; + C198AB42A29594802AA8D6276A808FD3 /* EXFilePermissionModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 527DD5CB6764488D52C1F16E4793E0F4 /* 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 */; }; C2DD92B1A0CD3C57411E1C9663446CF6 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D7001F9CBB5C587EE6303E5F0CB948FE /* QBAssetsViewController.m */; }; C3B802C60B33C82EB0022FE3E299A72B /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 20630B5E48C7CB69BF91D7D7F265396B /* vlog_is_on.cc */; }; C4024044D07F6FCB65B481E2909B8666 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */; }; C41623E483400C6D0EF9B5B180977DED /* GTMSessionFetcherLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4676DCAC70454E941499297FC775526 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 751B6FB6DE9B5B296B0C4CF7E0F625C9 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4676DCAC70454E941499297FC775526 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B528C2CA3CCCEDC62B9E9AA32C00E30 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; C47137D6FE0E5C9E31C8EF10D27F24D9 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4DC7C3515580940D0C1C64597E302966 /* QBAlbumsViewController.m */; }; 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, ); }; }; 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, ); }; }; - C713862BFB8BD8F419D0523DD218EFF4 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72CBE19DF375F16284A08576395BBD58 /* RNScreens-dummy.m */; }; - C723D7CB5D94CC24EFBBB9ED58CAE0A3 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B0F7B8927FE9B5F5E66A0FE7925FD7F6 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C744F2212F1B5B7C1491FBC1A5B84BC3 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2562A926A6486480497E1D7816A3BBEE /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C713862BFB8BD8F419D0523DD218EFF4 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 95A60E39B3779D451DAF8FBAA59907C0 /* RNScreens-dummy.m */; }; + C723D7CB5D94CC24EFBBB9ED58CAE0A3 /* UMAppDelegateWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 38DCC24FB74B046F4CFC588C2921CED8 /* UMAppDelegateWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C744F2212F1B5B7C1491FBC1A5B84BC3 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D00743F04BE6CF13C35C241359BB186 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; C788CC9F951C5FE3BE71F5728E9ABB7F /* GULSwizzler.h in Headers */ = {isa = PBXBuildFile; fileRef = BBDDC56455CE2A8EEB6FD459EDBD9EC5 /* GULSwizzler.h */; settings = {ATTRIBUTES = (Project, ); }; }; C7C4A0F9D763E48C3D873DDFD24FB3E9 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.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 */; }; C8E9E47E7AF7A78CADE01237BF02B053 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */; }; - C9AED5204E9C1D908636C7AB8DC0A32C /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E57DE0F9750DAFB7CADB3C4AB1E7DA3 /* UMReactNativeAdapter-dummy.m */; }; + C9AED5204E9C1D908636C7AB8DC0A32C /* UMReactNativeAdapter-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D340B73579DEDE88F0A3E6FCC8BAD2D2 /* UMReactNativeAdapter-dummy.m */; }; 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, ); }; }; - CBF7BD62C1FC8137737176A02F10E0A4 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C4062FEB153BD14C0A05654C630FEFE4 /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBF7BD62C1FC8137737176A02F10E0A4 /* UMModuleRegistryAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 86FD7573084DFAFCBB84A59DF4D5D16B /* UMModuleRegistryAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; 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, ); }; }; CD7CB53B7D223BBC381160BA73F796ED /* FIRInstanceIDStore.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */; }; - CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = A9D45039C4DA76049EBA7DE8211EE7C1 /* EXReactNativeUserNotificationCenterProxy.m */; }; - CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 461925FC1802935011DA256790C0BF92 /* EXAppLoaderProvider.m */; }; + CE399A301E038CE8427A92FD187093C7 /* EXReactNativeUserNotificationCenterProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C331D6B1B5AB94A8B3AB31ECF8F280A /* EXReactNativeUserNotificationCenterProxy.m */; }; + CE914509B01236ABB20E6682E2829DB7 /* EXAppLoaderProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E5768EA43CB7875CE25DB2091EB3CE4 /* EXAppLoaderProvider.m */; }; CEC8B820873F8BAD5C806EFF198D194F /* FIRInstanceIDTokenOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */; }; - CF01A7DD41A80BF04211064007C07813 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 24354A4F330C03ED81FFBBC1B72C3024 /* RNCWKWebViewManager.m */; }; - D03EA48CEBE28E2BA6124B3F50BA2ABE /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0AB591CB4D6D75D827D78807CF54BCD1 /* yoga-dummy.m */; }; + CF01A7DD41A80BF04211064007C07813 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 638813F00D3ADE3D85F5A0BD44B5753C /* RNCWKWebViewManager.m */; }; + D03EA48CEBE28E2BA6124B3F50BA2ABE /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA4BF7DC3FEA1EB3FE8983F7F8921FA7 /* yoga-dummy.m */; }; D2E942FFD868D20C41660AD7771AF1A5 /* FIRAnalyticsConfiguration.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */; settings = {ATTRIBUTES = (Project, ); }; }; D360241DA04A5E9CE9229DBACABC8F7B /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D365350A1B2CFDAF96ADE09BD5D6CC8F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AD5147A7096B8945A3779108CCF2878 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = E82EBDC8A490B30236C3D15AB2331BA1 /* EXUserNotificationRequester.m */; }; + D365350A1B2CFDAF96ADE09BD5D6CC8F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DA2A7186945F649F67E3BBB2E5FEEA76 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D4ECBFB97245592DB4156EB77244A90F /* EXUserNotificationRequester.m in Sources */ = {isa = PBXBuildFile; fileRef = 7843AB58D0C60A194189571D725D8DA4 /* 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 */; }; D60F4B966B0BCA71E7F8EFDF45B85A56 /* FIRAnalyticsConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = A340F0B85A7A004E4716C810327DCCF2 /* FIRAnalyticsConfiguration.m */; }; - D6932D9FB82CFAB525C43AE9001B29F9 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 4640543A95B5F61A4FAD8B3565DBE649 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6D21D3FAA227E859502F142FFF7CEF7 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = D76793AAE2366882DD0947572947FCA1 /* UMReactLogHandler.m */; }; - D712995844A0D90F73F6CADE63E65849 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 9957009B867CBC0D49D5BFAD7CF27811 /* UMModuleRegistry.m */; }; + D6932D9FB82CFAB525C43AE9001B29F9 /* UMNativeModulesProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = FE913A7CD2966C11EEE6EFE508FBD973 /* UMNativeModulesProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6D21D3FAA227E859502F142FFF7CEF7 /* UMReactLogHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 13EA00E6E93985BA00E8B87651DDBDB1 /* UMReactLogHandler.m */; }; + D712995844A0D90F73F6CADE63E65849 /* UMModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 99CDEA48AA7C6A5DD74A61DF87922B21 /* UMModuleRegistry.m */; }; D746976AE8464DBFF5D281F2906E21B0 /* FIRInstanceIDTokenManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.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 */; }; @@ -636,66 +639,66 @@ 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, ); }; }; - DB7F6A8D4FC7B17A47154065C5600C10 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = F96AC914BC20FD8AFD2A10879BEFF079 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7F6A8D4FC7B17A47154065C5600C10 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 52B4C936D52298BCF226D53AA3D8B5DA /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC4D736295104B8DE7F713B25C782C58 /* GPBCodedInputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = D08A5D686D77F6A0E33952D2AD2EA06C /* GPBCodedInputStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; DC93CD87AE5234A0FFCC3DF3E75DF4D2 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; DEC83087353AD0FBD02A519C55BAAF7A /* FIRInstanceIDLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; DF02A2098984DB92914CE657E8FEE6A4 /* FIRInstanceIDStringEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */; }; DFC5E47A627B01975364AB9CFC2A549E /* GULReachabilityChecker+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; E03E8A327381935C6AB749A319E3923E /* GPBDictionary_PackagePrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3877D8495364FD75AC548B8B0F16D0A7 /* GPBDictionary_PackagePrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D2AA48971D1167CDAFD4D0A3C655D819 /* EXDownloadDelegate.m */; }; - E1A5D28034F1E75F82E9FAD6D7FD4885 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 34C600FE6F8F95748E3897D028F4246E /* UMSingletonModule.m */; }; - E1E102E0E08987DCC15BBB7A2FE50E1F /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 461925347A30AE6FAE3CD7B318D4600B /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E126D849B2811DAB3717ADEC424D7657 /* EXDownloadDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = A7825381E1BDBFF52EE48C99DBE80380 /* EXDownloadDelegate.m */; }; + E1A5D28034F1E75F82E9FAD6D7FD4885 /* UMSingletonModule.m in Sources */ = {isa = PBXBuildFile; fileRef = E1F8D5C95A535BECEDD520356F1AC403 /* UMSingletonModule.m */; }; + E1E102E0E08987DCC15BBB7A2FE50E1F /* UMReactFontManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED2170ED57AE842E9D1436FB7E72474 /* UMReactFontManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; E34F577DE3C9965499AC5F9986DD356D /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */; }; - E35CE23A614A29D4FF359AB5D2D202CE /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = EC99704FED67D4EE92F9886C9515F602 /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3A43BC61EF23E803811938C47263A10 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD714FE59015A6D32C235D297DDE6207 /* UMViewManager.m */; }; - E45DD4E8D41C17FC08EED732951AE1BF /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EFD8BA63B9A167937E339F74455143 /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5BDF37A7F8B4B60D487F3B82855A60E /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EB5F6DC65441C2F195024FFCD646DC2 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5E847EA5C7686D0222C414DC33AC4CA /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DAEFCDF929038D638EBF606C51224E2 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EA2FB1ED4183EC2BD2FE34C37E15B07 /* EXConstantsService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E35CE23A614A29D4FF359AB5D2D202CE /* UMReactNativeAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1D9C41BE0D6642A4C77DA02452588E /* UMReactNativeAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3A43BC61EF23E803811938C47263A10 /* UMViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 107D03E1A6C324689298AA9B5196F4FF /* UMViewManager.m */; }; + E45DD4E8D41C17FC08EED732951AE1BF /* UMKernelService.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E4B449F06F1604344EB2DF8F09022CC /* UMKernelService.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5BDF37A7F8B4B60D487F3B82855A60E /* UMReactNativeEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BBA16C20886A05824A60626E0DB96E5 /* UMReactNativeEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5E847EA5C7686D0222C414DC33AC4CA /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 8133DFECBFCE0D048F03D2A66C77D238 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B5795FF7682CBDA63CCD59D0F77A97 /* EXConstantsService.h in Headers */ = {isa = PBXBuildFile; fileRef = 5618E111FD384FAC7A811F088536E90E /* EXConstantsService.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, ); }; }; - E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 853F971ECC8E5CEF001627385A80F21B /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAB32AE0E6A4AAEBCE4E6DBABAD9FC74 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C8C31C622D5C9E2D324202444C2EE59 /* UMViewManagerAdapterClassesRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E99670DE6BBAD7C09E618409533D1080 /* EXDownloadDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3742D94C24447157A870310F38FC925E /* EXDownloadDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EAB32AE0E6A4AAEBCE4E6DBABAD9FC74 /* UMViewManagerAdapterClassesRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = F4D3C90F5DFD062A69A6E7F23DF92009 /* UMViewManagerAdapterClassesRegistry.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"; }; }; ED38C771CC6B89094B59C12DAA7DC7CC /* FIRInstanceIDAuthKeyChain.m in Sources */ = {isa = PBXBuildFile; fileRef = B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */; }; EE66861EBCF0E30FFBC50D10CDEE43F9 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 27FEA6A869170AA820CB26BB8E0159D7 /* EXFileSystem-dummy.m */; }; + EF057C036B7B732BC9F983413A29C1E0 /* EXFileSystem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C81E75323C511266B8854B0A3F1B396 /* EXFileSystem-dummy.m */; }; EF0D0CA19F6AF46B42901543C77EB4C0 /* GPBCodedOutputStream.m in Sources */ = {isa = PBXBuildFile; fileRef = BABA188C1E6539FAC9CE54B5C817AF80 /* GPBCodedOutputStream.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; EF49B1ACABCFA73186A54194F39E5191 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; EFEB6DAC9B9C1EA0F694A2A1760A1A94 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.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 = FCD0244F066FB140E7E71129A74233F8 /* EXSystemBrightnessRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F091BB9661A4345D85F945ED606B30FE /* EXSystemBrightnessRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 933A81D328BAE34EBFBDBC878A310980 /* 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, ); }; }; F2DFD7896F7A6125A0AC66C8FAFC7935 /* FIRIMessageCode.h in Headers */ = {isa = PBXBuildFile; fileRef = A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = 72509B318BC71FD668322435733BC3F0 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3E985434924E8CF026DDB0415E12F07 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 53F619506865DE124BE5E05A073A03E4 /* Compression.m */; }; + F2F6F02B1856ADC0493B59A86843B567 /* EXAppRecordInterface.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6504C328BF723BD73F5E7CB2384503 /* EXAppRecordInterface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3E985434924E8CF026DDB0415E12F07 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = E671EEA96299221035D42FE7A66C663B /* Compression.m */; }; F41B1921B80066811103216802F90604 /* GULSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */; }; - F454325F2E9D4B5FD1334D032F1BDE09 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F6E0C1BD080830E926F2C82F519089CE /* UMLogManager.m */; }; + F454325F2E9D4B5FD1334D032F1BDE09 /* UMLogManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C02EA8C8559D4B5DD6CEECF404F45D79 /* UMLogManager.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, ); }; }; - F5DCA182C2EEA0BEAD8576F5D5DA4CDE /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = CA9D21CE6138DBD4F0BA8799DB6E6E16 /* UMUtilities.m */; }; - F5EDCD19092AD6CFA61E9A1CE93ED4A3 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B184A621FEE2C8AA51DC852246C4BFA2 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6722F4300CAABD36CE79FBC941150A3 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 651073CDC0948953C39B5608AC715876 /* react-native-webview-dummy.m */; }; - F73C4171666A62C9E0A5C4F4137849F1 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 96AC5B4DA48481B642C0A6B43FF61EA9 /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5DCA182C2EEA0BEAD8576F5D5DA4CDE /* UMUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D191C042D8BDFDA6EAFB27463951A6 /* UMUtilities.m */; }; + F5EDCD19092AD6CFA61E9A1CE93ED4A3 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E7996E9754942E03E4F50F7DE6B44D /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6722F4300CAABD36CE79FBC941150A3 /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C8C008075BC4CC3AA389BAAC9554E15 /* react-native-webview-dummy.m */; }; + F73C4171666A62C9E0A5C4F4137849F1 /* UMSingletonModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FF2956C0A176D23B4A240902BBB130A /* UMSingletonModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; F740E0F198B1AB9831AAEFAD867AFB6E /* GULAppDelegateSwizzler.m in Sources */ = {isa = PBXBuildFile; fileRef = FF53A904DED58A3B128E71C3BB3400C2 /* GULAppDelegateSwizzler.m */; }; - F7C6DD68458376DAC8E01D9C68071318 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 210B584824E97369E8F8B10D150C27F1 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81A84291B2F2DEF250FCB79C1CAD886 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = AD41223977502296C80DCD16A0A28ED3 /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DB96D3D50579807B2CF5979ACCD04C /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7C6DD68458376DAC8E01D9C68071318 /* UMViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 94A882666DB0E883021178ECBCD17CC1 /* UMViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81A84291B2F2DEF250FCB79C1CAD886 /* UMJavaScriptContextProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = BB23D727D6DC17ECBE7902E7C21C7FFB /* UMJavaScriptContextProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F81E2DFA7E076498AEFA487459C13FCF /* EXRemoteNotificationRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 76AEC6E9D04F12D3C44C864B2F7682C1 /* EXRemoteNotificationRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; F8FB2AD0FBC228D28DB2A3819C91351B /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; F91A93D3CC21280DB2FD91203A334429 /* GPBUnknownFieldSet.m in Sources */ = {isa = PBXBuildFile; fileRef = D318286797895EE8DE84CE55BFFE541F /* GPBUnknownFieldSet.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; FA2A85685FD2F956E9AD5F88ED8646EF /* GULLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */; }; - FACFEF91810308CBD49B9EA8568E582F /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = DC01493F439984AB671E13BA523D2B40 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FACFEF91810308CBD49B9EA8568E582F /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = BA40A0BB95533AC79A98A2BCE736E0C1 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB1881FB69A2623C6C30875C619DA9F7 /* GULSwizzledObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D2F4AA1E8F90B87245842734E56023D /* GULSwizzledObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; FB47898131567EF31FDCB674A07EAEDF /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */; }; FBC7D3B12B44B299E9CC578C66372048 /* Any.pbobjc.m in Sources */ = {isa = PBXBuildFile; fileRef = 12E720231196ABC7A2F315B1C9F78BBC /* Any.pbobjc.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = D0DDE1BE48EAD5679B70F9210270241E /* EXFileSystem.m */; }; + FCC887881586BEC4B9D0A24B7E3A2BB6 /* EXFileSystem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C99FDF088E786E8BA2C08E5FB1D670A /* EXFileSystem.m */; }; FD4273F2F0ADDAA1C4821FC9955DDF4D /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D38A9993CEE1E3C4E749510217E641A6 /* QBImagePickerController-dummy.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"; }; }; - FDF5B1756DC69DD3A735782BB2FEBE19 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E30033587DC12B1D881646BEC45EDF9E /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDF5B1756DC69DD3A735782BB2FEBE19 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E7412F2970F81ABC0DC3873434EA89B /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; FE1BA6CF59B74CDB7A9CA0DA5CA101FF /* GTMDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 050D2FFCB89E3CDCF40A66AC84E9D103 /* GTMDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; FEDD051EB5E8D2595A2FC585AF847AD2 /* FIRInstanceIDTokenFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 86FB658177A76D66DFF67A1F1B6430D6 /* FIRInstanceIDTokenFetchOperation.m */; }; /* End PBXBuildFile section */ @@ -722,6 +725,13 @@ remoteGlobalIDString = B93FC7FBB72DC12DA58AC12DAD1125E8; remoteInfo = UMCameraInterface; }; + 063AC701982D0F7B7B82C06AF6B74D02 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; + remoteInfo = nanopb; + }; 07C41619A6909308DFC8F3763BFC9F3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -757,12 +767,12 @@ remoteGlobalIDString = 8601F7B19425496C5312C6F111D6E777; remoteInfo = UMCore; }; - 167724BE8CCBFDC74CD239959356A59C /* PBXContainerItemProxy */ = { + 16D6D257DFBE230C445EEA08C7C882CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; - remoteInfo = glog; + remoteGlobalIDString = 645DEAED47D48A55A088EE2AD4BCABE9; + remoteInfo = DoubleConversion; }; 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -771,6 +781,20 @@ remoteGlobalIDString = 76CC3A2D036B8B64B5F70A7078274100; remoteInfo = UMPermissionsInterface; }; + 186A9E0F4FEEB90655EEFF672180467E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; + remoteInfo = Fabric; + }; + 19AA3B611CA2253EFFC80AC731A9898C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; + remoteInfo = GoogleToolboxForMac; + }; 1A3C492F71285F25490A56EC8987E437 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -778,12 +802,19 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 1BB7BA8D5AB15D02C96722FAA92673E7 /* PBXContainerItemProxy */ = { + 1B23921412C654414B67FBFAE9906DA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; - remoteInfo = FirebasePerformance; + remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; + remoteInfo = Firebase; + }; + 1C29DDEB447163133B91420E0E33955E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AA192573488AAD7D2EC81CF1511C69C5; + remoteInfo = "rn-extensions-share"; }; 1CE3E751E533C71A2F0C6903F97BFDE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -799,6 +830,13 @@ remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; remoteInfo = glog; }; + 2183E8E7447A063F846B541C2F7D010F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; + remoteInfo = FirebaseInstanceID; + }; 2216019AFB150A6C3CB9430F3ECFECE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -806,12 +844,12 @@ remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; remoteInfo = GoogleUtilities; }; - 2385313AF5A872CD60E1D2BFB52FAA21 /* PBXContainerItemProxy */ = { + 2267B3C46117601888471902A589EF8B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32F8EA730FE2005197F54338D2C236AC; - remoteInfo = GoogleToolboxForMac; + remoteGlobalIDString = 000000006F00; + remoteInfo = React; }; 275D5944D4E9DEDFF928C0833A9C22EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -820,13 +858,6 @@ remoteGlobalIDString = 0FB41CE4381552CA15BC78737D4C350D; remoteInfo = RNScreens; }; - 278BA50ACB18DDB3949BA8801EE10514 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; - remoteInfo = Protobuf; - }; 2910073AB6C6DE35588115EB50141CDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -834,13 +865,6 @@ remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; remoteInfo = Crashlytics; }; - 2983B09D3E9AC3BA6506F2EE94BE176B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2D7029C53C643F4ADE254A09284C1843; - remoteInfo = RNLocalize; - }; 29C75182850787283A5CB901C4069706 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -873,7 +897,7 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; 3053AE07786CE1B44726EB78A90C6D69 /* PBXContainerItemProxy */ = { @@ -897,12 +921,19 @@ remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; remoteInfo = nanopb; }; - 359FAC0A48EACB6ECF48EF71B274C6A7 /* PBXContainerItemProxy */ = { + 33BE301B4456D6B7DD1AD97C022335C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; - remoteInfo = FirebaseAnalytics; + remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; + remoteInfo = "boost-for-react-native"; + }; + 3471DFB57C88A6FE044A45DAA9402337 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; + remoteInfo = glog; }; 371A8EF26379607DD47210A5645AA680 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -915,7 +946,7 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; 37DC019AFABA0B108DA744E227249BAC /* PBXContainerItemProxy */ = { @@ -925,19 +956,19 @@ remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - 39799A6DAB8568994F771B7CAB2A5AAA /* PBXContainerItemProxy */ = { + 3C05279EFE84CC65D14F129E87DAC5A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; - remoteInfo = Fabric; + remoteGlobalIDString = 135D3E6523830EF3D6030BF433E40372; + remoteInfo = yoga; }; - 39A0F904829CB76B90D5C6B0017D742F /* PBXContainerItemProxy */ = { + 3C2167AD1B964F44C269F420743A878A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; - remoteInfo = FirebaseABTesting; + remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; + remoteInfo = FirebaseRemoteConfig; }; 3CC2EA99A4F73187F7A2CD42265AD7C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -967,6 +998,13 @@ remoteGlobalIDString = DF4DC904616B1B1E4A07E8EC5F5EC979; remoteInfo = UMReactNativeAdapter; }; + 4777233D6A538D884DA2554F19B206A9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 39E0403E3ACE39BC0D878D82FAB8F012; + remoteInfo = FirebaseABTesting; + }; 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -978,7 +1016,7 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; 4BDB52D20BEBA3EED21748D1127384AA /* PBXContainerItemProxy */ = { @@ -1009,6 +1047,13 @@ remoteGlobalIDString = E07EA1A35FBB3A986F484EB01CDD5527; remoteInfo = EXPermissions; }; + 50854D4DE5024FA2618AFB2AF326C3D6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; + remoteInfo = GoogleIDFASupport; + }; 5744754DDDFB2AEEC56F1B7BDEC645FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1051,12 +1096,12 @@ remoteGlobalIDString = D00660683B62A9AB32408C607FA0CC9A; remoteInfo = UMTaskManagerInterface; }; - 631FD77A28B1BCDF4D45F41628BECCFE /* PBXContainerItemProxy */ = { + 642D5612C41C5A4DCC2E37B28B5AE2F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E586D237DD4BD9777F066B441FC23D4B; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = F1DE11E9221F196A8A9D3464F96A345A; + remoteInfo = Protobuf; }; 67B13CB7A88B64715ED2420D783FE010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1065,13 +1110,6 @@ remoteGlobalIDString = FD0F4E74C14C4B5B552686BD9576466F; remoteInfo = EXFileSystem; }; - 68DE229480D96DE348D64E9E776BE932 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 645DEAED47D48A55A088EE2AD4BCABE9; - remoteInfo = DoubleConversion; - }; 6CA95E815EA2282FEF08226AAADC9AE4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1093,13 +1131,6 @@ remoteGlobalIDString = 81C054123AFD73E9DFE7239A455A404E; remoteInfo = "react-native-splash-screen"; }; - 72DC5089D7015830BBCDBDF27FAFC96E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; - }; 7386848E6D802B7B06413C92F8B56C4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1111,7 +1142,7 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; 75709DA4236EE310812BED9AE5852B6C /* PBXContainerItemProxy */ = { @@ -1128,27 +1159,6 @@ remoteGlobalIDString = 1DBC3090C8BE77C9F4202B0421E0791E; remoteInfo = glog; }; - 7FD43C07AC1799929636BE8E0B84F326 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; - remoteInfo = GTMSessionFetcher; - }; - 7FD5404087F77FD99F6BC1EBC9567BAE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 97C8CD7E4179727E4F374CABD338D2BB; - remoteInfo = Firebase; - }; - 8034032320453D090C4663C66DAA3B29 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; - remoteInfo = FirebaseCore; - }; 8075D3C81C368FF63B92A7E7DC84BF6B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1167,9 +1177,16 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; + 823F3F88074076E3267A87E12D0DCB8C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; + remoteInfo = FirebaseCore; + }; 84BC9F8510934058A37B8E0A22D70698 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1198,6 +1215,20 @@ remoteGlobalIDString = 7825F222F53EF434DE74A6C6FAF290E9; remoteInfo = UMFileSystemInterface; }; + 9010C706965D89DA1067617A270A3A31 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2204E533997A82F0D6F7AD16CE4C7106; + remoteInfo = Folly; + }; + 949872BA0428667E2E09BCC2E7CE649F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 2D7029C53C643F4ADE254A09284C1843; + remoteInfo = RNLocalize; + }; 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1230,7 +1261,7 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; 9D25F24407F3DB7F8037248B4DA8103D /* PBXContainerItemProxy */ = { @@ -1261,18 +1292,11 @@ remoteGlobalIDString = 23FF201B9797478F2F3250595974DE03; remoteInfo = "react-native-document-picker"; }; - A437FDD3F20793A5F6C525BD1FA4B8A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2543734D0A332B2588202904B99CC151; - remoteInfo = nanopb; - }; A448C7DD26F5E1EBBD5637CDDA4E386B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; A44A7A5827E52DEF38891CA928DA2769 /* PBXContainerItemProxy */ = { @@ -1289,19 +1313,19 @@ remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; remoteInfo = GTMSessionFetcher; }; - B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */ = { + AE5CD1340741F5537A8C684A62C4078D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; - remoteInfo = GoogleUtilities; + remoteGlobalIDString = 000000006F00; + remoteInfo = React; }; - B2026A1763363BD4448E48802860DD45 /* PBXContainerItemProxy */ = { + B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; - remoteInfo = React; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; }; B324CA5F3E8D31003D17C7B260AD47E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1324,13 +1348,6 @@ remoteGlobalIDString = 76CC3A2D036B8B64B5F70A7078274100; remoteInfo = UMPermissionsInterface; }; - B76384D7C3DA6D95F986CDB18CBC2A6D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; - remoteInfo = GoogleAppMeasurement; - }; B7A7401145DCA3B779EBBCD909756643 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1345,12 +1362,19 @@ remoteGlobalIDString = 04F2065D21456DD872C5C43AB59ADD11; remoteInfo = UMFaceDetectorInterface; }; - BAFA61E9079850A994F5762B6F154206 /* PBXContainerItemProxy */ = { + B90719304D67B19791CDE776F839E1B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C36E7C600F8DE2BE1819059C80F2182; - remoteInfo = GoogleIDFASupport; + remoteGlobalIDString = 7969F0F17682790DCAF63BC9AF2176ED; + remoteInfo = GoogleUtilities; + }; + BBEB07C6F38742F341161AC9E1B4C998 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 807FE713602CADE901BF7779C7C9A0F4; + remoteInfo = "react-native-realm-path"; }; C02513E6525B1C18032BC93E0A7BDFE8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1370,7 +1394,7 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */ = { @@ -1429,12 +1453,12 @@ remoteGlobalIDString = D35E9EC86D36A4C8BC1704199FDB3552; remoteInfo = Fabric; }; - D542C9898F15CAE736F218FA34F44C60 /* PBXContainerItemProxy */ = { + D4B42FF51CCC4C8C85C4C00A8A5FAC24 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 135D3E6523830EF3D6030BF433E40372; - remoteInfo = yoga; + remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; + remoteInfo = FirebaseAnalytics; }; D5582AE19A81D8922E73DAD94F1B1207 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1443,6 +1467,13 @@ remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; remoteInfo = GoogleAppMeasurement; }; + D57940C6AEE5C4E9589820DAD239FAB8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E586D237DD4BD9777F066B441FC23D4B; + remoteInfo = RNDeviceInfo; + }; D5A52B1624B1534A68F744000EA30087 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1450,6 +1481,20 @@ remoteGlobalIDString = 368FB7FBA34E3323BB42D13325551C95; remoteInfo = FirebaseCore; }; + D70C219615F1DFA0BF38EED9E25D621E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E3A3FB14CD4ACD21565913CF4A4B097C; + remoteInfo = GTMSessionFetcher; + }; + D800043B0907160942C9D728D281E8F9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; + remoteInfo = FirebasePerformance; + }; D8A10225A999F3F8C5534AA5457EDA18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1464,12 +1509,12 @@ remoteGlobalIDString = 617459C51E8685DC1604FE74E1E93024; remoteInfo = "react-native-orientation-locker"; }; - DAD95BEEF63491B2F10C991A7F06C621 /* PBXContainerItemProxy */ = { + E13C0AA52D63CC21BF71EDC5A3252030 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5AAD465FECAE9083F45E3DB9252A8302; - remoteInfo = FirebaseRemoteConfig; + remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; + remoteInfo = Crashlytics; }; E436B6DC396658B681C57F3B847AF7B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1492,12 +1537,12 @@ remoteGlobalIDString = 1ABBF6F89787BBEDF49B4636ADB45587; remoteInfo = FirebaseAnalytics; }; - EE427B1B4E78C41D489DA719CA6ED496 /* PBXContainerItemProxy */ = { + EDA38326B61DB1AA015BD51790BE498B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66641B93FAF80FF325B2D7B4AD85056F; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = AB021401ADE9E1431240BBA948E7965E; + remoteInfo = GoogleAppMeasurement; }; EE5E225899838EEF1E6E32B77A70761F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -1517,16 +1562,9 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; - F16D85BF10A150F2EB5F72DCD49C0A28 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2204E533997A82F0D6F7AD16CE4C7106; - remoteInfo = Folly; - }; F1AD971338B2DF6A807B98F709BA1D52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1534,13 +1572,6 @@ remoteGlobalIDString = E2BC182D60EBDE8BDC6D1715DE3A82AC; remoteInfo = RSKImageCropper; }; - F2F228AE683105704395ACD52FBF2DCD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 586739D116442BA7FCD2EC0353EA0FA4; - remoteInfo = FirebaseInstanceID; - }; F368937BB792FB789468F75E9CF61132 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1566,7 +1597,7 @@ isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; F7E9060797EC9942911E6A31FC5978F2 /* PBXContainerItemProxy */ = { @@ -1590,27 +1621,13 @@ remoteGlobalIDString = 42F7AF66FD1178857DC3A2834552BE76; remoteInfo = FirebasePerformance; }; - F97763298CEF81309A9AF83CF3E4BEF8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 807FE713602CADE901BF7779C7C9A0F4; - remoteInfo = "react-native-realm-path"; - }; FC68BCC44D8C5727004EC721EC176FB5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000000006E90; + remoteGlobalIDString = 000000006F00; remoteInfo = React; }; - FCAD554FD7482E6FCCAF9742C73155D6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ABA9A411BB5A359862E5F1AA6238278E; - remoteInfo = Crashlytics; - }; FE8C7693079779C66A2B166BAD56A51E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; @@ -1622,1112 +1639,1121 @@ /* Begin PBXFileReference section */ 001906DF79B2E749BEE13C58E5D57CDA /* GPBArray_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray_PackagePrivate.h; path = objectivec/GPBArray_PackagePrivate.h; sourceTree = ""; }; - 004FA892142BC5EF9C7C3646A89CA8A8 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 007861CAC2AD1B131FED6308B05B02D1 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; 011AC49904E60DBE7374EF4C6C46CCC5 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - 012DCC84D8FA7FD348A1DF06C0C4A7F2 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 011D28F37F1487D4066E6F8CCADF797C /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 012CC4F4CE39BEA1113C719E1A03D9DD /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; 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 = ""; }; - 01F8FA667020A7E45792DEEFC49F0A2D /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; - 0232A18EAEC249F47B610ED510163A1E /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 026462320DF0A64CDFA59DC46E5A77D8 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 028687FDDB3162866BB092E57CEE3113 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 016A4ED51A2D6FCAB0E40BEBFA9E3698 /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 017D19681796636ABF626CD121268578 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + 01E9F292C34088AAF5DFF5EB0C90E36E /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + 0234855FEA2E6D501D22206A277BF76E /* ReactNativeShareExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeShareExtension.m; path = ios/ReactNativeShareExtension.m; sourceTree = ""; }; + 026A1C5FD45C04CF9961B441B4756F10 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 028BA92A7B297A26AE8E7CC013384E81 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 02E630D8109F6E098A3E0C55AF0CC0C8 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; 02EE269B177F9131844B8B87D0E70230 /* GPBBootstrap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBBootstrap.h; path = objectivec/GPBBootstrap.h; sourceTree = ""; }; - 02F83E97A0FE46EC0B5F0F49EE2A3DB6 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 02FB4DCB7BE0C89491C723B28572CFDB /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; 031182114156D9FD17B5BA12E328E7E0 /* GULNetworkConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetworkConstants.m; path = GoogleUtilities/Network/GULNetworkConstants.m; sourceTree = ""; }; - 0323E1252CEB77179CB0A8A82509226E /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; 034AB978EEAE0AA5F06DB6D822E28E93 /* GPBCodedInputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedInputStream.m; path = objectivec/GPBCodedInputStream.m; sourceTree = ""; }; - 03582ABF8F2C49917A06DFB77732C395 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 038A2011AC8677988781CBA4F80BCDEA /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - 03A1D5BDF26AE993D32E8CA1FEC5ECCA /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 041A12F442279794A692067621FFD1A7 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 041D321E945275712137D8AAD409F514 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 035418379C06BE517C187FE85A054171 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 0358C7D296248F07CBEE94A1426ED18A /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 035BABF6A0639F365E75ABFC9D984518 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 0392C6E3CDA1AFE9DFF79FBFB66DFC97 /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; + 03C93A6D5E9F2B3F59586D6649159B39 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; 04387AC8C6AE41C3100B505F8335F30D /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; + 046B0537DA149F1FA5DBDEF7BA75CA8B /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 04799348BADCBB02946FF664E2CD91CA /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; 047F7C14D5BA3D10FDD5C05A933E8CD5 /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; - 0488280DDC23C1BA9BDCE5B5B6A20B3A /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; + 0497ED342781683B0ADB953BAE814D34 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; 0497F30F4BA1B5FDDFED9924942263B0 /* GULObjectSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULObjectSwizzler.h; path = GoogleUtilities/ISASwizzler/Private/GULObjectSwizzler.h; sourceTree = ""; }; - 04A2A83674DBD94DF7FC4D9AFE06C9CF /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 04F0555FCF506F5E11894DA9ED4CCF0A /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 04B6E53AEF38DF0AEC176C338A3F3802 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; 050D2FFCB89E3CDCF40A66AC84E9D103 /* GTMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = ""; }; - 0512A223ED5909FE37306B7788C70AF8 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 05295E0BAF0E842EEE07F7BEC4725894 /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 05449E32192EDFA22803A46B68E16576 /* GULNetwork.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULNetwork.m; path = GoogleUtilities/Network/GULNetwork.m; sourceTree = ""; }; - 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - 0561F4FA9F99CA4E3EA734D0114AF789 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 05681DFC28945653595E17F4E93C9D56 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 05CC4FEAF72AF6EB2EF7ABB1897CF97C /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 0559A5BB087D9A0ED6FF57A53DAC8C88 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; + 05B565509009609D1961991C8ADC6B79 /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; + 05CE96B4E1F5D6BE1C1B21461839E6A4 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; 05F735D71208B628185FD7C9C51A77F8 /* FIRAppAssociationRegistration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAppAssociationRegistration.m; path = Firebase/Core/FIRAppAssociationRegistration.m; sourceTree = ""; }; - 0695A3F3BB62B830B2659E8E4A8F5AD1 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 06BFEDA9CC3AFF8213E2CCD9A031B13B /* react-native-realm-path-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-realm-path-prefix.pch"; sourceTree = ""; }; - 06EC3E9E278989CB18DB212AFA60A879 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 063C65DD224981BEEB195A18B1614BBA /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 064E463987C988A769474A64A1C429AD /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 071590C2DC6ED879FC032EDD5912B1C0 /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; + 0751AA6D5F222EBD64458EDB547D1FF5 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.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 = ""; }; - 084AAC9E013FD43A6105F4A7AA686C40 /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 07B04C2FB2572B0D5A7F10F32FDA6A72 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 07CCEE5E24145A2CFDDACD587F19DB2B /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; 08917358529F92D17A1A10E42995569A /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - 08AF325435742A9E699C98E542107CE3 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; - 097AE4854DE413C10366147CADC084F1 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 0AA3AD8840FCA5C82348C0B7469A06A0 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 0AB591CB4D6D75D827D78807CF54BCD1 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; - 0AD5147A7096B8945A3779108CCF2878 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + 08F9EA87CD2C0E7B7A232D33E8D27672 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 09652E514397D75FBE030F206451DEC3 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; + 098960756B13F7C20135598E485A6916 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 09DBCA1991896D898A75813E73ED098C /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 09E96652959070EFFDDB899D668EB98B /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; + 09EF3A1A39A0680D21137000AC0BC18E /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + 0A39CBA97D7DACE9DF0EB6890334A8A9 /* RNRealmPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRealmPath.m; path = ios/RNRealmPath.m; sourceTree = ""; }; + 0AE99833CE723840E7FBC1F95FAAFFDA /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; 0AF96CFD962855C85F574FBD2C954DE2 /* GPBRuntimeTypes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRuntimeTypes.h; path = objectivec/GPBRuntimeTypes.h; sourceTree = ""; }; - 0B091891802470C094603B4CE4C92B0D /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 0B399E81D5A1758A03AC385F06D1D9F2 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 0B97AD63C1A35D433767EC6A1B60DA0E /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; 0BAC49632693E881A740E4F2693EE2EB /* FIRInstanceIDURLQueryItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDURLQueryItem.h; path = Firebase/InstanceID/FIRInstanceIDURLQueryItem.h; sourceTree = ""; }; - 0BB45AB28FE66209EECDD5939F6CFD78 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 0BEFF173864C59EF1F9D356DE406B8E8 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - 0BF063273AEE6D2CE8618E0CB76990FC /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; + 0BAE7D173C69097325C108F1FDBF3337 /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; + 0C0035FDCB617E952FE1D795401E7FEF /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 0C27CEA303A1BC6D1A9121157169DAB6 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 0C2D0C4E3DD01CC23493A51405A42A5E /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 0C36E72921ECACEFAFF7A84A60F6172B /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; + 0C81F86763D79B80578D5E45FBB8D992 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 0C829A14B9E2891E18BC023993B2698D /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; 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 = ""; }; - 0D15A8771D5B1C244A1F3667C1D5B108 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 0D15C4FBEDBDE3AD4F901373F79D822A /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 0D1E7E185F853FC0062B62CDD76AF164 /* GPBWireFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBWireFormat.h; path = objectivec/GPBWireFormat.h; sourceTree = ""; }; - 0D379F20422F35E4A0327AB378E60E61 /* UMFontScalersManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalersManagerInterface.h; path = UMFontInterface/UMFontScalersManagerInterface.h; sourceTree = ""; }; - 0DAEFCDF929038D638EBF606C51224E2 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 0D4415440EB5DB10110BA5BA29F02BBE /* rn-extensions-share.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "rn-extensions-share.xcconfig"; sourceTree = ""; }; 0DC0A60A9467868CEA7A2146861B49B6 /* FIRVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRVersion.m; path = Firebase/Core/FIRVersion.m; sourceTree = ""; }; - 0DD1134109756DAD35968268519C1B15 /* UMAccelerometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAccelerometerInterface.h; path = UMSensorsInterface/UMAccelerometerInterface.h; sourceTree = ""; }; - 0DECA38109375851DE9F22197028E797 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 0E4768C340A52BE6F8E5F500D3058657 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 0E5768EA43CB7875CE25DB2091EB3CE4 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; + 0E93CD377BB1F8E2202B4F874AE737A6 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 0E94C6CB02605A72F32BBE9875D6AC50 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; - 0EB28CDB8C69EFA983BC669827685933 /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; - 0EF37620C76E2F0CE32163DFBEA0B009 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 0F4C6F41A6E3350AD45942B5D81157AB /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 0F531AC7EF738B44C66AB3A306585BD7 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + 0E9510B12FB2E31C7482F58458E3B055 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 0F00049C5DD12A9EFDB3AEBEA3AF8EE6 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; + 0F2A1C40E3D9A0286BC196F3E9D3FCCF /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.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 = ""; }; - 1091C019674D2BFF76B94607EC7CD0FB /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 0F8226AB0169B49F5A297BDF6EAABAD5 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + 0FB6DA1BBEC2550C4355B0F9A23E5928 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; + 104AB4D79AEBE6E528913A918D800483 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; + 10517D038E73A84BA63071DC7643E46B /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 107D03E1A6C324689298AA9B5196F4FF /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + 1085A3F50FD80A54D240855DADF7111E /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 10B52525768BD37B09E6AA5E110BAC61 /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; 10C306448DF95BDD2C33FF0845BE3EE3 /* pb.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb.h; sourceTree = ""; }; - 10C70F490652DB309BA6145EB0AE9B83 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - 114DA39D192F75C48D0BCFDE068BB5F1 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 11A15A252F18D6812482C6F38982085D /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 11AE43F67658221783C00F77B5A05FCC /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 1106BAFDF0CA47701C7FB3AAF88163D9 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 1129D19D73EEC26E2C251E0F802BC804 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 116BD954BAF3FDD73FCFDA4F50F8344A /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 11CEFEA651D768ECDD7B19E6CC8AA9A1 /* FIRInstanceIDTokenDeleteOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenDeleteOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.h; sourceTree = ""; }; - 11D5F1D927DE1E7AED7DFA104A6B583F /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 11DD4667BC4267907910403D06B14E14 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - 11E3D039DD6885FED8CB12CF16627CCC /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Firebase.xcconfig; sourceTree = ""; }; - 127F912C8B415191F86EC0E2753DA599 /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; + 12446A77C7AE7703F0D3E777DE48999A /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; + 124B2CEADCB88B5C335A90622BAF6F2D /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 1287F69DC7B03D8A2BC19FFC9520A84D /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; 12E720231196ABC7A2F315B1C9F78BBC /* Any.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Any.pbobjc.m; path = objectivec/google/protobuf/Any.pbobjc.m; sourceTree = ""; }; - 12E7629120786009C83B744C17E0400B /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 12EDFC33FED7F5C4559BC237114B9556 /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 1306A874922522A25C5081B057468E59 /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; - 13410CAFB030BCA55ABD16F4561D78BD /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 1380B4BF8CCD34CA33D07647571586E9 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; + 138724BBA958484CDCC21A61D7968E41 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; 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 = ""; }; + 13EA00E6E93985BA00E8B87651DDBDB1 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; 13ED540E431E29B3E235F3EFA7249E95 /* FIRBundleUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRBundleUtil.m; path = Firebase/Core/FIRBundleUtil.m; sourceTree = ""; }; + 14309392F44052DA0F5C712EE0D6E14F /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; + 1449EA58714868BCE1A7D029EA66A8CE /* 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; }; + 14A458304DFE221C61A5B6602C32FC0B /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 14AA6BE98612FB91ED2BDAC39B4AAE1F /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 14D12918B4EE1A6B8AC37D2DDC5916FE /* pb_common.c */ = {isa = PBXFileReference; includeInIndex = 1; path = pb_common.c; sourceTree = ""; }; - 150097019E4858507C8959CF60FC0322 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + 14DF4AEFCDD3C078B69AABB46E48BF64 /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; + 153AEF757429CA4447F74447A4986275 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 1546C9472A3146B9FD7320460B61A2ED /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; + 158A1C06C54E900C84FD004C91766406 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; 1590D6871326CFE7CA44DFFEA384FD03 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; + 15DBE6C1471B0FC0D90963A744131317 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 15E8BCE0630549F294E4EE77E2A829A4 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + 15F0B326590C7CEB368A54A38459785C /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; 16012A4DCE6C5D44809A303788CD7C71 /* FIRInstanceIDTokenStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenStore.h; path = Firebase/InstanceID/FIRInstanceIDTokenStore.h; sourceTree = ""; }; + 161CBC379C74E1C7B1158D7F07D08C16 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 1629A3E8FC170F59E8E46ACFFEE81B79 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; 16425F137AEAF28E31DBF3D7192A5571 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - 164F926D7F59098CD017B5D0C2CE62C2 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 167DEB4B84E1DD52F244E6EECA4F91E0 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; 1688EE83E950851DBD776306319028FB /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - 16CF19936346F53C9AADFC496A01BFFE /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; 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 = ""; }; - 170A9AA051DF6569384D3575AAE94D52 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - 1764713FC3100BAF4A60A03AADC99E3A /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; - 1776896CFB2DB7D53F6870D097871B60 /* UMReactNativeAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeAdapter.m; sourceTree = ""; }; - 17A2F616744B6BC684017693ABE836D2 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; 17D71991D0280E8C03F310F0CAABB18F /* FIROptionsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptionsInternal.h; path = Firebase/Core/Private/FIROptionsInternal.h; sourceTree = ""; }; - 17F1E0CD0FF555CDFBC37146CF250C38 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 17FB9BC182E05A836B45311886723FF1 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 18144E9C5707FA382E0113FD844087ED /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; 181D20640F43D8CB7EC6EAB505B86318 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 18243DD4D0C8AA2DCCE5655F82047778 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMBarCodeScannerInterface.xcconfig; sourceTree = ""; }; - 183C6EBF70401B1425D41AEF4161F091 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 1835D5950DA13377A37929968F4B5F8A /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; + 1842F5C1CCA92FF58B5D7BC85ABDE28F /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; 185920CE3F01EE5D5EFDCD7E82E2116C /* GPBUnknownFieldSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet.h; path = objectivec/GPBUnknownFieldSet.h; sourceTree = ""; }; - 187A9643A4FF2215A9801B19750A5136 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 18CC51F21164F07278902C05F56DC095 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 1929B7E531E232773EDA047347324E93 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 192B96F1963E264CCFEBC3534FC8A498 /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; + 18801C8DB347EDD6647B4AAFA354C8DF /* rn-extensions-share.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "rn-extensions-share.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 18F0206DEBA714184C0B3387C62BA51E /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; 1949B0542A654E7317ADAEEADCD4683C /* FIRInstanceID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceID.m; path = Firebase/InstanceID/FIRInstanceID.m; sourceTree = ""; }; - 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; + 197FA0F85349393D401AE651A5482BE3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 19B03B6516FE44C15622685AC0EC554A /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; 19D813648EB603BAF163D4B61F2C5691 /* Wrappers.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Wrappers.pbobjc.m; path = objectivec/google/protobuf/Wrappers.pbobjc.m; sourceTree = ""; }; 1A15FBFECB164015748AEC5366BF3741 /* FIRInstanceIDCombinedHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCombinedHandler.h; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.h; sourceTree = ""; }; - 1A342D6CA0E0B6DBBB400AB956F8C3CE /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1A8840AD3D979C04E9B8B92AC953EF52 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 1A1830BF278CE033BD61A54FB18BD9C0 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 1A8F2B0D2C360F47F3092F467B79565F /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 1AF6168CBC8E652FBF466FC273D44D3A /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; 1B17644C190C6921FF8F6E4980B8BE97 /* Struct.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Struct.pbobjc.h; path = objectivec/google/protobuf/Struct.pbobjc.h; sourceTree = ""; }; - 1B718E7142F8CC53B8F1D6137C99962D /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 1B4926D6787F3082BFD59AF91761A0CE /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; 1BFD6F1262D7CFD8E1E86E5A80CB5B15 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 1C114DDAD1165D430FB0128DECA1DD6C /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 1C4785B1DDB61C47FF2EC81C8649FAA5 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; 1CB3EF08CDD1CF865F3C42A5BB449708 /* Wrappers.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Wrappers.pbobjc.h; path = objectivec/google/protobuf/Wrappers.pbobjc.h; sourceTree = ""; }; 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 = ""; }; + 1D577A049617559D73E207B71CC6E46F /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 1D7D05F4EF9D093A2EF0AFA3AE409BBB /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; 1D98378181E5D1EB7E3D3B9BC346926D /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; 1DB0E05E584EBB1BD10BFA278E997CCD /* GoogleUtilities-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleUtilities-dummy.m"; sourceTree = ""; }; - 1E1EA1966105DB4145F63C6DE9046BE0 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; - 1E24E3899E9008960CF08C5FF92E9DA0 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 1E2EA95C644202201F3937FBDBD07262 /* UMPermissionsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMPermissionsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; - 1E667B3C96D4F999D2410D9B2AB9CCAF /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 1EE49B8A769B1E7AFEABA9B6B0B88B03 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 1F810D692381A33A2CEC30F4E7FDA2A0 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + 1F0CF672C33BA34E532B9CD5AD106578 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 1F162A36178172C8C9482DE7355A7B7D /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; + 1F4BB69F376CF13D997076F35CA76153 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; + 1F8DFA416DD1FDF4C2F9ABE583F63C8A /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1F9DA817DD136F20858650D09F53CFAE /* GULObjectSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULObjectSwizzler.m; path = GoogleUtilities/ISASwizzler/GULObjectSwizzler.m; sourceTree = ""; }; - 1FDAE339B7B4EAE8669C929838EE87D8 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; 1FE6B4110E349310CB49B144EEEBB44C /* FirebaseRemoteConfig.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseRemoteConfig.framework; path = Frameworks/FirebaseRemoteConfig.framework; sourceTree = ""; }; - 201154431839DDDE3CE20ABBC609F03F /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - 2039655505827A180E799523D0C59074 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 20387215DE1CABD09BEA13F93C2E6831 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; + 20468C911C68E33DFD8136C18D3CD2DE /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; 20630B5E48C7CB69BF91D7D7F265396B /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; + 2087A5FD819A7EF8DCF3BE959A110A34 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; 20957E6E06A9F00102F60719D037C558 /* GTMSessionFetcherService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherService.h; path = Source/GTMSessionFetcherService.h; sourceTree = ""; }; 209FB1AF949B819EDBD99CF85EA82E66 /* GPBProtocolBuffers_RuntimeSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers_RuntimeSupport.h; path = objectivec/GPBProtocolBuffers_RuntimeSupport.h; sourceTree = ""; }; - 20CC13DF451E62D3958DD5354B20BB3D /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 20CEAE3E21A1A598377AEF37AA77F518 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 210B584824E97369E8F8B10D150C27F1 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; - 21ACB0CB855CA8D0ADB6C4F5E8DBE9CD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 21DC604AEE66B5EE0E5BD031F2C959B8 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 21EAE7CAD827EAFB28F5AE9B36F0FF4D /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + 20CC907601F73CD2958F1D2249456EEA /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 20D191C042D8BDFDA6EAFB27463951A6 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; + 20F17F5A9159D6C8BE33723B79E91424 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 2137B90FD471FEDF11AA8F200058BA43 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; + 214DE8F1530EE2253B24B246D728A517 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 214F0DCCB5B9F118B7E3886722397A65 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 21E7B92B831DEA56C05A2366F80CA01A /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; 22293BA067850112F37BE2951B912138 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 22462B515DBBEBBC284F1C23FAEC8F8F /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 22B1D6FD8E5BFE1294F9BF136FD98AE5 /* libreact-native-realm-path.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-realm-path.a"; path = "libreact-native-realm-path.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 22C42CC35973126B66C0EE13EE050413 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 23AC3E213F817BFBB129A2E6F5E724D3 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; - 23FCB7B958C238F900BDE295D6EA6A20 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 24172F1F2D1120AE004421165710D403 /* libGoogleUtilities.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleUtilities.a; path = libGoogleUtilities.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 24354A4F330C03ED81FFBBC1B72C3024 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; - 2562A926A6486480497E1D7816A3BBEE /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 2256AF91C293424565B8693C696CC776 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 22BDB39123DE4CFDED08760DC5AD3D9E /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 2396B16B3040F32E2ACC187E715275DF /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 246BDD074B966719D084F830473FD86B /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; + 2476B2CD4C1C64773E36BBCEEA8C3312 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 2488680621032E6B1FDFC8C6DA1BF8F0 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; + 24A5FAE9BA083293E5E8706FDEBFC6BA /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; + 24AB796901D14448DD6CE6141BCD584B /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 24ED74EC3B902FAA45F70972F2FCB099 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; + 2524CFF625433FE9CB5B4F7F44F0E173 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; 256F73640791D9E203ABC811B5F47544 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - 262757B1EEFE3577ECE6B42C3C191DE4 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - 269BB7C29768AE4AE43F0C37D6A48C8B /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 270E4394E0A6B293743AD0F1251BFBAD /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; + 25F38CA134F8AAF913944E091727800D /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 265189100A40D99B0679492ADB8F4B8B /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 2671B9D39E553F5C4B4DB5F15F2C23CD /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 26BF2261E94727A684EFAE1196413B0C /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; 27BA61510074129562C639CBA224030B /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - 27FEA6A869170AA820CB26BB8E0159D7 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; - 281E951947D4190E42DE8143BF13C3B9 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 282ACFD6A455FA55A484FDD34C4528EF /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 28507E4DF8A45DB17887372FAFC2467D /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; - 2874BC72566B368977EAC98634FDB1DC /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 288E5BA3E66031E7E9D26F55B4207399 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 291D5E4B3399B7FBF6C658E3D6B3EFF0 /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.h; sourceTree = ""; }; - 2942B5CB2BE222AEF2E0D84B8F758B4A /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 2956C0FE9045D44B70E5AE4C42F3FC5D /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 2981123EB018D4B9FC45C89CC14FD7A2 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 2828FF58A2F84B73BF061541C1EBF9C9 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; + 2876187F7ABB20C9645390BAB7218B0B /* librn-extensions-share.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "librn-extensions-share.a"; path = "librn-extensions-share.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 293F28195F43C199AEEBA138E9665072 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; + 294C56E2C0B4B98FF6CA4143E062CF6E /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 298ADE80A6340C75F571A7F31738D964 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 29AB01E8C988C69632B4D5ADC4D9D10B /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; 29B77C1B615C9F7970503A7E8C200548 /* GULMutableDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULMutableDictionary.h; path = GoogleUtilities/Network/Private/GULMutableDictionary.h; sourceTree = ""; }; 29CC28732B35F69DDD786CBEBEED2149 /* GPBDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary.h; path = objectivec/GPBDictionary.h; sourceTree = ""; }; - 2A48F5A061224C167FB239B2E1C612B6 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 2A54C07D3A48A04612B210D4F1D8A25A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 2B2345893078069E8B18F071C6EC1E09 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.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 = ""; }; - 2B83F8FCB805DB9022EA00C30FB56B14 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 2C5D702F4198078197CD9FA676606EAA /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 2CE066FCA4FE127AC639460F79B3E4B8 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 2D0691D0AB3567DD03FB1BD831456F56 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - 2D2C68E3E713B25594D842E9D9B634C4 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; - 2D50D991C41C2A400FF364635DE87971 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - 2D7471BCD2ECF20F29D8176DDD92B31F /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 2DD17ED321FE78AEB6B9C3E860ABDC60 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - 2E3E0741DD379C5285961D2E986BA173 /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; + 2B5D44ADCA18D7B9DB3064B0387EBCA8 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; + 2B5FD5AC0B922882D7C3B67E3314F737 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 2BBC125967C2BD87E2E5EB5D64590D2A /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; + 2C155C4197A121AEA9577357A00DAFD9 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 2CE7960E6A5E27EDEA9ADA1D455391C1 /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; + 2D05475EEC9613DA4B7F417838917F8F /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 2D68CD17CBAA24D76365CFEB468318AD /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + 2D8A9DF4DDEAF8CCDB70BE5D240B2D46 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 2E4B449F06F1604344EB2DF8F09022CC /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; + 2E9D2D860B9119D4EE4AD76DA0F1E665 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 2EB6A5B3A81C6427F414EB6C2BEA25CF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 2ED73F696CD986B8483EF549CD502B8A /* Protobuf.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Protobuf.xcconfig; sourceTree = ""; }; + 2F05BD6E484C4D1B079FF7805A601746 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; + 2F1D4DA345048A7249AD3B0C2CFD752A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebasePerformance.xcconfig; sourceTree = ""; }; - 2F7BA665B98DC5E312B0A27CF309B94E /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; - 2F99EE79C025EB9F2A9E303721C5092D /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 2FB035AD0A1082098738AB35D89417EB /* UMViewManagerAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapter.m; sourceTree = ""; }; - 30580C50B46345071F408CA2EA02F79D /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 305D748336532294A6D1F1837DB1C8F1 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 307DEA27A19126FF792E51D91EA7ADDE /* react-native-document-picker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-document-picker.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 3092B739FF8B55E5918F75BCA4D731B5 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 2FA0E7417D871B194ACDDD453D6E19D5 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2FA1ADEAF947D72F8E26710C52F4D216 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + 2FCD795944EFDB3E8C45CDBD5A917960 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 302707F52E8F2F6A6A7ABD5FF9E46ACF /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; + 3072FA28E664BB713D75D0E7092DECA0 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; 30D6FDCC52D608CFD7FA1FAE7409E462 /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - 3115E225B4717F08CE910FDCA31ADBB4 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - 3196A703CD641D488C5EA5E5CF995DF4 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - 31CE63845539D86DE8CE4A6C8B377076 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 31D92F756446ACCF493B74AC39028F5C /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; 3209D52223DC90072F96949AAFFFEF3F /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; + 320F8781F552FC1112A886E8CCDB2BC5 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3219006E7D6EEA1CA01EC2AD1F8F1AC6 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; - 3228898EAB4614681F1A663586CE8FF3 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 32276EA617F09509A9B525D25C43E854 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 32461DFC0E47CD7259441A160789160E /* GPBArray.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBArray.h; path = objectivec/GPBArray.h; sourceTree = ""; }; - 32BA152A12F5CB214EFDB52F9BCDA3D9 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 32BD306560C8AC22487DFFB84B4CD410 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 32CF95A31BEDBF962A756F6BE0DBFD42 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 32AA30FC661E357D1A080AE399618845 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.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 = ""; }; - 32FDC3D31CB29B257DC3BE2114033AF1 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 3316924B543F97BD90E53535B964BDF8 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.h; sourceTree = ""; }; 33218EF1E52206241B7FCE116C3107BE /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; + 3340DAE0B81F9B03EFC37822A0DE33E5 /* libreact-native-realm-path.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-realm-path.a"; path = "libreact-native-realm-path.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 33E9AF75CF68904359D675D2F6B5CA19 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 34B9CEF05B764B94F7CFDA5EB025FC44 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 34C600FE6F8F95748E3897D028F4246E /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; - 34DFAF2D1DED544692E495C783EF7E82 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; + 340483C25F2752D63DE4E74885A2D4FD /* RNLocalize-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNLocalize-prefix.pch"; sourceTree = ""; }; + 3428C6FA7D7FEBF04F1E575DE5B3DD2E /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 34BD5367EB8B64F9F2FA3FC44F52D6F9 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 34E0A28899DD0A74E41D4C7D43982744 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 350194664AD90B13B8325EF9C94429F6 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 34EB34F90A2462EB833EE95F32243F19 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 35049AAC69B3D33D5FF9F050EC9E80AE /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; 35078A0D30C07DC0E51293BAB4B7A48F /* FirebaseInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseInstanceID.h; path = Firebase/InstanceID/Public/FirebaseInstanceID.h; sourceTree = ""; }; + 350E690D6AA1E1283092C90E70CF01CC /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; 35327675F6CED1B41870E375518BCEF8 /* FIRLibrary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLibrary.h; path = Firebase/Core/Private/FIRLibrary.h; sourceTree = ""; }; - 35D64FD4EA6D92431EB73684DC2C82E3 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 36F1618203FA7946D46848EC7809DFDA /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 37883D95D5D7529CBE8638392C856871 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; + 35695EFEF2CF560DE3449A89233ECD5F /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 35E326B46A5FFE8C63514C9A35CCB76E /* UMConstantsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMConstantsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 35F848B66ED5A1A759BFDAC9E2F0FC29 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + 35FAD02A7FAEEE9780AEACBA16F8F798 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + 361C58C03F9901B221EB5590C2194524 /* UMBarometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarometerInterface.h; path = UMSensorsInterface/UMBarometerInterface.h; sourceTree = ""; }; + 364BDEE694D597BA2C4F8EE79D4765BC /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 36552EB74BE0C9D4E06E87CBC77562E1 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 3670D33E47B8524C4352BED6167F69EB /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 367449F07FE02F5E732E248F959AE2CF /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 3742D94C24447157A870310F38FC925E /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 3773C7EE7F2E241B499128123193872E /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseCore.xcconfig; sourceTree = ""; }; + 37C87788C56409200810B88249E769F1 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 37D4312670F640E68471D9AEC229020D /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; 3801D7269A518344DCBC1FC0BE8CD46D /* GULSwizzledObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzledObject.m; path = GoogleUtilities/ISASwizzler/GULSwizzledObject.m; sourceTree = ""; }; + 38223AD675A4533DC26A88BD0C59CB99 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 386BD85FD58E4AEBF63F178AC6E1E44D /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; 3877D8495364FD75AC548B8B0F16D0A7 /* GPBDictionary_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDictionary_PackagePrivate.h; path = objectivec/GPBDictionary_PackagePrivate.h; sourceTree = ""; }; + 3878E50B0FF712C366D064A248E7577D /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 388D94DE32DB6B50DA771C4E9F3540A5 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; 3898F03FA6F5B8EC91001D51A7ADCBF2 /* FIRApp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRApp.h; path = Firebase/Core/Public/FIRApp.h; sourceTree = ""; }; - 38A5683A8BD41FB382059740D6082296 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 38B5379326830579CE5929312968EED4 /* libnanopb.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libnanopb.a; path = libnanopb.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 39823D0CADDD07BE24C0F0AD6B419033 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 39AD2C8AD9970E5E1DE289AE559FEE74 /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; - 39BBFE25A926E5BCA0D4A66F3B963613 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 38DCC24FB74B046F4CFC588C2921CED8 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; + 398180D45F78DCABFE7A50AABC7FB9C9 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 3A17E8A17F238954C6D9AAD18803E275 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 3A49939A60E602BB2BA3160182C8E331 /* FirebaseCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FirebaseCore.h; path = Firebase/Core/Public/FirebaseCore.h; sourceTree = ""; }; - 3A661AD17FFBAF7F488FF7A504646504 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.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 = ""; }; - 3B778136501A6230F2FF88C52F56DD8D /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 3B5BA1FC000216952E131B2069430B0A /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + 3B5F1A401C63467D21E75CB6C268DF6E /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 3B64E877B9F723F2893E4164EAC323C1 /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3C24C1DB9F2C7EE07196D2C247A09366 /* GPBUtilities_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities_PackagePrivate.h; path = objectivec/GPBUtilities_PackagePrivate.h; sourceTree = ""; }; - 3C36A8962D03A67E577C6B09E11EBFF7 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 3C741CC82A0C07ACA08B7A0BED1EA1AD /* UMImageLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMImageLoaderInterface.h; path = UMImageLoaderInterface/UMImageLoaderInterface.h; sourceTree = ""; }; 3C8C72EC2BF76E610A9317B92C3CE3B4 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; 3CC1EA5EF5AC122334A24592ADDB26BC /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 3CE48E45CE5BAF8BF94C53ADDE0DE222 /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; - 3D4A5ED1F22FFC6129C028A8EA210C70 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 3D61DC35A55C833ACA0C55ED74D0C700 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 3DBE5B5C519267A9659862AF6C8F3EC7 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 3DEEC8163F843FED9B19708AD5E1533B /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DD33328E2B637C5B4AD408134ECFE46 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; 3E2D1F54C052F13ABE73A9D113CC6625 /* GPBDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDictionary.m; path = objectivec/GPBDictionary.m; sourceTree = ""; }; - 3E3948F850A1CB063386B3E7A8F82FC4 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 3E57DE0F9750DAFB7CADB3C4AB1E7DA3 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; sourceTree = ""; }; 3E5FF9B8F5625C54B2248B8CFBD8433E /* FIRInstanceIDLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDLogger.h; path = Firebase/InstanceID/FIRInstanceIDLogger.h; sourceTree = ""; }; - 3E76908755FC2B9A8B7E43567117B5BF /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - 3E8B041F27FCBABA95CC7B7847CFACA4 /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; - 3EE00389D5A2B0AFE67DC842DAE12C09 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 3F8A3BDAAA1AA90414AB0385713C4B28 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - 4057EDA81321BC411E742EDA4FC195A7 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - 40AAD9902F8CFC8829E817508F6DC261 /* 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; }; + 3E919ACBB9305A4DFD437E7B4D4E352B /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 3E9F7F3A247ED78956B212405025F11B /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 3EAD220E9EEA72F71BBEBC829D62BF53 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3EDCDC0403670CC101959B55E0A8BB4C /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 3F14533CC551AD3897FECC3F78679C3E /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; + 3F25E145FAA1C4E52452B58FDC3C83CF /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 3F7B39BCACD65567E035BEC3AA4A7321 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; + 3F9B5492B7168938DADA91C40D236AD9 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + 3FDA314B2A5E5198660CD1E21B6FBABB /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 402D218C671D7DFF7740BA23F07C7A8A /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 40E18DA2E0266FBF26152531C20882BD /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; 4124992184BAF918EAD45DF0D83DA693 /* FIRComponentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentType.m; path = Firebase/Core/FIRComponentType.m; sourceTree = ""; }; - 4133B33AD49733A3EA36BC520C173B9A /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; 413420DD213E1ED35AB2EE5950DB489F /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 413521BFE065BB2AF805AEE3005FAA3B /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 414FA7C11012362AA14838182726322C /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; - 416CD06C0FF93FB37E121FE9CE0F9BE9 /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; - 4181168805CF7F38C4CD6DBDF973C915 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 418F84B1BC853CE1E7778D1CE01C8C39 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 4191361051666A0D9CF54E7E9F6E10B5 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; - 41967FED9B51CDE9F07AE089E8659392 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 41AACC33F0CED1172B53008DBFE3F4C1 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - 41C8503B94E6A30E3BEFDE038A998283 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 41350F9696291FD0E46A07CA2A0ABF9C /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 4184CE45204B51F19E2053B7A1F683C6 /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; + 419246D183C8A8E6199F743626E04485 /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; + 41AA37830646A7505F0BD1FB4B11EFEB /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + 41ECF14768EE63313B6D8948DE007C72 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 41FA85B01A80408827573E48A4761B56 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; 4217C74187711229B5945ADEDB0A9DA0 /* GULNetworkLoggerProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkLoggerProtocol.h; path = GoogleUtilities/Network/Private/GULNetworkLoggerProtocol.h; sourceTree = ""; }; - 423E31257B82A0A0E656FD66322616E8 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + 423E60EE88FDF77474E3E2917FBAA281 /* UMImageLoaderInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMImageLoaderInterface.xcconfig; sourceTree = ""; }; 4256FD74190E181955C125070B01CCF3 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - 42D1EAA2B127008A1FBD347BB1569FC5 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; 42D616CF93145F8AA0A8CCC0613DF94B /* GTMSessionUploadFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionUploadFetcher.h; path = Source/GTMSessionUploadFetcher.h; sourceTree = ""; }; - 432064AEBC8B44129D819261DB9BB286 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 43D6ACD534F47AFBFF26145E0956F9D8 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + 4400133C07DE7744AE95239FEEDC1451 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; 444245D3CCBAB1A0DEEB6D89589ABEE7 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 44CC9C6744E46E695B59227BC3EBA162 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - 44DF0AE6FE0F26A22941191B212A4DCB /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 44EDF5C1322BE3BAF0972A2222A06B24 /* 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; }; + 447A9DC53C48A87B3041AD8020EEC192 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; 451416F601DDE30625DA62A16B92765C /* FIRInstanceIDCombinedHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCombinedHandler.m; path = Firebase/InstanceID/FIRInstanceIDCombinedHandler.m; sourceTree = ""; }; - 4563015111A319DAA36733D21E4E32A4 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - 45678E0D230C8C88D1244A897B54EFAE /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 452F71A7CA191ABE2EFEAE6685917EDE /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; 4573011531F44A2BF83F4401B9AA859F /* FIRInstanceIDAPNSInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDAPNSInfo.h; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.h; sourceTree = ""; }; - 461925347A30AE6FAE3CD7B318D4600B /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; - 461925FC1802935011DA256790C0BF92 /* EXAppLoaderProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAppLoaderProvider.m; path = EXAppLoaderProvider/EXAppLoaderProvider.m; sourceTree = ""; }; - 4640543A95B5F61A4FAD8B3565DBE649 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; - 465361999C9275A0EB0D18E87ACF63BA /* EXHaptics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXHaptics.xcconfig; sourceTree = ""; }; - 4682CCF683C4BAD900558FDA6C3A7A7F /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; sourceTree = ""; }; + 458EC6F873C219A280ADF8F97E8D8DC7 /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 46113567DFBD43D23A17980492566691 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; 4690E70186C445A91474BBC3A31BEAB2 /* FIRComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponent.m; path = Firebase/Core/FIRComponent.m; sourceTree = ""; }; - 46B0BA5CC740171CCC1DBF9EE7E4BE7C /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 46DFE42EE0D6F54E9FE6E8AB5C5272DE /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 46E3CBCDE514D6A5F8963BE47AC1CF3C /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 470A4D6779E73C33741CB80CC971C014 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 472A105D856BA763C8C2F77030E56CC4 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; 475CDA23EE58A9149A0B188381E6E4B9 /* Struct.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Struct.pbobjc.m; path = objectivec/google/protobuf/Struct.pbobjc.m; sourceTree = ""; }; - 47A55DBB09F5BE29646497544E693C78 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; + 478D780CC2805F8C2397C2F781FED4CB /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; 47A6A31F9EB2B51ADD0931A873E89C5D /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - 47AEF13B03A35A95FFBD0419401781BC /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; - 47B726840D4225B546CD9BD81E2D9A86 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; sourceTree = ""; }; - 480C81E4CEDE746C6B881C6D572D92CE /* UMLogManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogManager.h; sourceTree = ""; }; - 48332F5C5CC746B2E69E6468BDDFEC98 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 485D50D7BFC9687A7C29756467E5E9C7 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 48648007DB5D889DCB4B583D1115E291 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 48E433A0F3B7D0107DECD2C91E923DB8 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; - 48EE6575C1CFEA2AEDE0D19DF8D79F0E /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 48FF6D55B4E5998A341BDF28BC20DD9D /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 49159153A4FDE38C500578FA94C253BE /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; - 49325372FA42CFCB032570E0EE5D956D /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + 47E07E3A3F48681C527CD5217D7531D5 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 486FF2C0A1AF24CE13B399C0B72D4C00 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; + 4875BEBAB31CF2EF28ABC854B6489D27 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 49366E08DC95080D025D468AD6EA099C /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; 493FC8AD48875FF76E8792079DF4D17F /* GTMSessionFetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcher.h; path = Source/GTMSessionFetcher.h; sourceTree = ""; }; - 49CA5986950067CEA5A6219E63D41349 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 496C41B48B597572205EF9B77DB757B7 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + 4A092FE4E95DDB999644B6834337A3F0 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 4A0F7E860ED61D48C06BFFC7B7C91FBF /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; 4A392B2042022C20AA6278A6488F3450 /* GULUserDefaults.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULUserDefaults.h; path = GoogleUtilities/UserDefaults/Private/GULUserDefaults.h; sourceTree = ""; }; + 4A562E39035EA6F7A65A2F499AF8F220 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; 4A5BB19124FE2A8CCEE96A5348423FEA /* FIRAnalyticsConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAnalyticsConfiguration.h; path = Firebase/Core/Public/FIRAnalyticsConfiguration.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 = ""; }; - 4B8BBCBB070351DFF65575D861D357A3 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + 4B20BAF8440F4FCF50801FA54A64966B /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; + 4B5E3D8861444B50212F1A8B6FEB75CC /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 4B9F45218474737BE74EC0673105E512 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; + 4BBA16C20886A05824A60626E0DB96E5 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; 4BCBE4FFA2B48385E101CAC42332AC11 /* FIRInstanceIDStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStore.m; path = Firebase/InstanceID/FIRInstanceIDStore.m; sourceTree = ""; }; - 4BD4B8AFBAFC43A30659BE157117345A /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - 4BE6672CD697BAD7F49EDFC706756FFC /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4BF11E9F2D8B1AA2A09BB5A33BFEA4D9 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; 4C2812A321DB28C5A37D494A1705FA3C /* FIRConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRConfiguration.m; path = Firebase/Core/FIRConfiguration.m; sourceTree = ""; }; - 4C2E17571810B87B9073CBD85639CAF4 /* libRNLocalize.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNLocalize.a; path = libRNLocalize.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 4C5F47A618BFB61C3AAEB520EF104221 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; + 4C72B6DC83FDFF68E1F3C6251EF98E0C /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; 4C8B860B45EC3D0A6958A4F91C0490A3 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 4C9888A3379C92194BD14FCA592E7445 /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; - 4CAC3B2203776ADA84BCAE41FBE0379F /* EXRemoteNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemoteNotificationRequester.m; path = EXPermissions/EXRemoteNotificationRequester.m; sourceTree = ""; }; - 4CDCC731A2FBCA55937C58A6A91FE275 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - 4CE6808B101A8216C4CA753D560B5BCD /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - 4CEA4213CE111A3FFBA957B4ADFF9691 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 4D1585F3DBD498E2CC26B4A4E578ED4B /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; 4D1B92FF422855E7F24CBC59BA2A31C4 /* GPBCodedOutputStream_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream_PackagePrivate.h; path = objectivec/GPBCodedOutputStream_PackagePrivate.h; sourceTree = ""; }; + 4D1E980B7514EAF3259E0574FC00ABAC /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 4D2CD795B86A88FE534C4EA0F6C69664 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; 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 = ""; }; + 4DD5A0B14466337BCE3EC72821E56E4D /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 4DE3332565551778786D62483594DAE2 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + 4E1139362F8D95462E8E79984493C7E1 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; 4E1346157A8E9BD0479DB40C4BC2EA76 /* GPBUnknownField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField.h; path = objectivec/GPBUnknownField.h; sourceTree = ""; }; - 4E35DF6C0874AF4CA50F6D2C650272A0 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 4E562CAB1F4E2736432E19B7B6E87F87 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - 4E8B52E9B563C153A19B4C1DC383D066 /* EXAppLoaderProvider-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXAppLoaderProvider-dummy.m"; sourceTree = ""; }; - 4F0CEEE398FCB4324B7D7501713141C8 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + 4EC2C4C87D578E5BFFBFAB45848DB639 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 4EF703861ADC2B4CFD740A1C97B8C856 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 4F0F152F0C3E24AE52DAA9017313CBAC /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 4F6F20E40599421E57D12627A5538ED4 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 4F9D6196916CAD22A622E43A2B6A3696 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 5016F1C99E680AEE6A138EF439F59E9D /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; + 501B99EB7BC700DF47263D9214F129D7 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ShareRocketChatRN.release.xcconfig"; sourceTree = ""; }; 50211D8651BDEECDCF337C2943949119 /* GPBDescriptor_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor_PackagePrivate.h; path = objectivec/GPBDescriptor_PackagePrivate.h; sourceTree = ""; }; + 5025F8862873EA2F5E91530992ECA631 /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 503779FB6A4E58EE79C59A8B01C3AD9A /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; + 50972B7DEEE7CCCA8C3520FA5FEF7662 /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; 50BC3074BB06BC98F23931C70A9B5C19 /* GPBUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUtilities.m; path = objectivec/GPBUtilities.m; sourceTree = ""; }; - 5150A9358391484C756E8161910D3C18 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; 515A1F6C79F560E37E999D318248B68B /* FIRLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLogger.h; path = Firebase/Core/Private/FIRLogger.h; sourceTree = ""; }; - 5172631FDCE8C9C59C45966058DE6F48 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 51C888F9B06035DACE72B2F14A31B663 /* EXFilePermissionModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFilePermissionModule.h; path = EXFileSystem/EXFilePermissionModule.h; sourceTree = ""; }; 51DB1D488B9CD90333D4917C16942248 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - 51E708DA0A9C14F35DD05A9DCCC21217 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; 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 = ""; }; - 531D85B2F7BF494A0CE2FFD93F0CFAD8 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 533D6BFB91D7A458BC726FE1222BE85D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 527DD5CB6764488D52C1F16E4793E0F4 /* EXFilePermissionModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFilePermissionModule.m; path = EXFileSystem/EXFilePermissionModule.m; sourceTree = ""; }; + 528B279CE0DE5D0B3FA65B38D17B78CA /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 52B4C936D52298BCF226D53AA3D8B5DA /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; + 52DC9A2C8E7DDF7E348D9CD7CC0B3A31 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 52F60C67CF02A607C546DD6A91C9CD9F /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Crashlytics.xcconfig; sourceTree = ""; }; - 535FFD5DA2DE0A19D6DA6A93C9FB9046 /* UMMagnetometerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerInterface.h; path = UMSensorsInterface/UMMagnetometerInterface.h; sourceTree = ""; }; - 53A029829CB0C1059313046ABCF15D59 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; - 53F619506865DE124BE5E05A073A03E4 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; - 5419204EE00E59FC874A55C46F153D6D /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + 54295468EB7AD307192D44E7E5F807E6 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; 54627613061D55A797A2AFCFB0A864D7 /* GULLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerLevel.h; path = GoogleUtilities/Logger/Public/GULLoggerLevel.h; sourceTree = ""; }; - 54B57C0ADF05903074C65E624C0E439F /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 54B82F8D20049A45DA627A7CB9FBA8E2 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; - 54BE76A522C9DABBC35493B27C458A39 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - 55084514ED99B37BF77EE63C2CAE3806 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 549F516343B8C77FB8A824418F664E10 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 54D3AC96AAC328FEFA67FE2871D7A027 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; + 555AF6E80DF8852E0D0E9C32E59B4939 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + 55CBB8F4113EEE690294787F140CE5F0 /* UMCore-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMCore-dummy.m"; sourceTree = ""; }; + 5618E111FD384FAC7A811F088536E90E /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; 565D524286473269CBBCCFB3B6EDD6AC /* GPBUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUtilities.h; path = objectivec/GPBUtilities.h; sourceTree = ""; }; - 56CC963AEEF20D3D02D0A547B7C8275E /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - 5750F3E6A2AA50C6FF6AA2DD3170DB67 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + 569CC37C0800BB57811047E4404D9A7E /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 56E0F09FE9428CB9A096DE77C9680136 /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; + 5739CA50489BC3A33F3C087891F24AAE /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 577613F9560B25B4440B84537096AB09 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; 579E21F0E94CEF5650570F6CF8841CC8 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - 579F75F6FEAB263868830687AF8BCC81 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 5800AED6AC59723F6BB5DE3ADA24D86A /* EXPermissions.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXPermissions.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 57EF67BFE574DF4A870DA03F41541F1F /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; 5806880501A07C1ACB9A7138A81669B0 /* pb_decode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_decode.h; sourceTree = ""; }; + 585DCDD494D8C78C8E8C347155F77D00 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 5868592AEB7FBC18A4148B8D7E546985 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 58B8D063E94104E42B58432B4096E5F0 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 58C501BCAB1C88C37707F9F125599661 /* UMUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUIManager.h; sourceTree = ""; }; + 58C6D8751B97D2ED53D54EE11CAF8CDB /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 58EFA2443DE01F9B740204B2BDDAE0DE /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; + 5907C4386D97EB3E15F0B0B994F61B0F /* ReactNativeShareExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeShareExtension.h; path = ios/ReactNativeShareExtension.h; sourceTree = ""; }; + 59243BF7E30835DF2ABEE31E6EC538E1 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 593559DF6551BF2E42BC7E2DC30CB9A2 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; 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 = ""; }; - 59ED33093AE35BF1B618556219072CB8 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 59DB20CDF5A31319C225A8E6AB223B58 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 59DDD0E1054DC61EAD7F9861858FC402 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + 59E4C8EFE3BDFD32CF982490A158E493 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; 59EDFF0DAF963120B38FF8CB03EFD21D /* GULReachabilityChecker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULReachabilityChecker.m; path = GoogleUtilities/Reachability/GULReachabilityChecker.m; sourceTree = ""; }; - 59FB9F33868CAB17638055C7934E4EE2 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - 5A0D73F18FB51763AE9C6751ACE6E9CB /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 5A27AF3E202827907932160629BBEAA1 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; 5A29582DC746F0777955025C3F67A60E /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; + 5A4B55A616D7106D4AB00876E018A6DB /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + 5A4C498B89E03AF443493C070D0857E5 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.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 = ""; }; - 5A98F58275B7CEF021261333C77FCE29 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-realm-path.xcconfig"; sourceTree = ""; }; - 5ACCCE0F667432DE30108EFC5FEA0F34 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 5B069C131AFA870F406AEEA75A8AEEC4 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 5B3327C8B6A38BF190B2AA888DD7E075 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 5AA00E71D7555779DB7C2C10E3BBC177 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 5B97B164E84A784D2495D17C80F8758C /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; 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 = ""; }; - 5C8C31C622D5C9E2D324202444C2EE59 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; - 5CD210D74B0444D19FD5459685DD774C /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; - 5CE3172E3F8B84D856023FF63BC204B7 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 5CF5D732BAB724EF51C5903942CC6B51 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 5D2032E9F4019B31D00610FD21267D5D /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 5D232D2C7844F7A78426B79BF4A4E345 /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; - 5DB1AB07BBF2DBAF40ABD80E52F55D31 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 5C8C008075BC4CC3AA389BAAC9554E15 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 5CEFE8D9A9AA343EDDAD991C475D71F6 /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; 5E12617144A23133BF6F8F4556C822FE /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; 5E185919BB79C8C7935702959B1F792F /* FIRVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRVersion.h; path = Firebase/Core/Private/FIRVersion.h; sourceTree = ""; }; 5E27655892D05466617A8A07FDBD8687 /* FIRInstanceIDKeyPair.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPair.m; path = Firebase/InstanceID/FIRInstanceIDKeyPair.m; sourceTree = ""; }; + 5E3192D645F0095719FB7E7787E8F1B4 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 5E41327C06C5320AD292B081B0B83986 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; 5E4F9A756C618643123B7CD818A7BB8E /* GULLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLogger.h; path = GoogleUtilities/Logger/Private/GULLogger.h; sourceTree = ""; }; - 5E5C57C3F09EA49FB14D2E70C1AB3C41 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 5E7EF2A91C8C320D932C4F7C42E6CC7E /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 5F0C35B11D1E749588F69C61F1587E8F /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - 5F33CBB2C282BAC4429A8808AB9AA208 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 600A53DDA7B71049FA55035529E60C61 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 5F22B447224578233DA69663E154FC63 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 5F339A8507EF8259DEFD06DD12631AC6 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + 5F38D5B5CF8BF3C30E6CA539CB49DAE3 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 5F3C01234A9411013A3F4E42CBE90098 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 5F51E2A6DC86D71E742DDDFEE9BCAEBD /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 5FB609A3D9423A2E5FF3A0EDD6FC75BA /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + 5FBE610AD691C44574E2F71AE15C0439 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 5FC686CC40F368374FFC39073A682C99 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; + 6017026751C37A8A0FD8F350FDC895F2 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; 601F8DCD411FF95D5B4DB5F224ACF266 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 60584D3AA8192A7EB3622726C89CAB29 /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 609CD3EE7641A665610E5B86E7AE5824 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 60A1AB1480F36294F6AA3B69AF8473E7 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; + 60B9FA5A7F43C586A5A1815369508200 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; 60FB01EC5A5AA441B4CA867A5A25DB8B /* GPBMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage.h; path = objectivec/GPBMessage.h; sourceTree = ""; }; + 60FC6D4A3DA037F72285CFB738810C99 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 60FE58C23DA01DE44721A1DB79EC1B0F /* GPBExtensionInternals.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionInternals.m; path = objectivec/GPBExtensionInternals.m; sourceTree = ""; }; - 6113A5F1DC0B84656CD70D7A8E335A92 /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; - 612E527E6C2BC5806B7E9FA73C73858B /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - 612E87842C8211908C4495C9188EE21D /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 614DD65B6873751CF524AB61C31DC521 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; 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 = ""; }; 622A888BCCAB419A51B31C52E811CF12 /* FIRComponentContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRComponentContainer.m; path = Firebase/Core/FIRComponentContainer.m; sourceTree = ""; }; - 626A07274D4EB6A940A6B2AF98F40A12 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; - 626BFA717D2D14B01FA5E1C99B9403F8 /* UMSensorsInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMSensorsInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 629D90420A2F20F43A29C88552E97659 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; - 62B8E9E1E88EB990E7AC76F3B6B38A71 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 6257BDC60E0997415FFC730D059CF499 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + 62BFB551D424B89CC4C487AC33700DEE /* 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; }; 630D96CF42C5D421F8148108C056654D /* Duration.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Duration.pbobjc.h; path = objectivec/google/protobuf/Duration.pbobjc.h; sourceTree = ""; }; - 63A2C7F825019C2F37A3D5B672CCC93A /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 6415DBDE7710F559C63ADE08CDD27AD9 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - 642AF918983609F8A2E09DF67928CF55 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; + 6324862968388FC93391066C21459338 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 638813F00D3ADE3D85F5A0BD44B5753C /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 6397684B59F1742331FAAF45128404CE /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 64273EFC312AE419373BB73B4E445289 /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; 644949DB617A048149E047010C6D0980 /* FIRInstanceIDKeychain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeychain.m; path = Firebase/InstanceID/FIRInstanceIDKeychain.m; sourceTree = ""; }; - 647A2D104D639DD94A4305CABAF06022 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 64830F597669F4220C883FD8271F733B /* Firebase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Firebase.h; path = CoreOnly/Sources/Firebase.h; sourceTree = ""; }; 6499163217FEC226F460D5D8529782C6 /* Empty.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Empty.pbobjc.h; path = objectivec/google/protobuf/Empty.pbobjc.h; sourceTree = ""; }; + 64B079A7525D45E173D5C618ED3F2942 /* libEXWebBrowser.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXWebBrowser.a; path = libEXWebBrowser.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 64BB0065D1B85FB25BCDF4EBD19452E0 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.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 = ""; }; - 650C9B79996B2911D7727E15751018CA /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 650F1F89B44BDADA600F9DD8034D21E5 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 651073CDC0948953C39B5608AC715876 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; - 65132A743ADEE9456C90C121015ACA6A /* EXAppLoaderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppLoaderInterface.h; sourceTree = ""; }; 6513B153A69122DA4C3567D902EF3824 /* FIRInstanceIDKeyPairStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDKeyPairStore.m; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.m; sourceTree = ""; }; - 65593785A256392F171E73214D13D3AA /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - 6575EBF726D4641F29236047BFC4B500 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; - 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; - 663D14443F7FD0802F2D812B2153AEAB /* UMExportedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMExportedModule.m; path = UMCore/UMExportedModule.m; sourceTree = ""; }; - 668AE27C04386475A4F88728253D308A /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + 652E005DACB212DFCC834323A3642A7C /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; + 65962FE092D4D2D98D0097060B1691A9 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 65B2FA76FD2B5BF64B342D8995429F57 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 666353E6CD317D4C671BC2E14AB4F4C2 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 66637907B5AF15F4C98B4D15F2955F16 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; 6697EA434D23502A2D809B6B7E6E3A4B /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 66D0F358A416D7411CBE30E3A6E5571F /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 66F256A6104111E853B12B823537153B /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + 66DC9438B8864B20534A4A1BDFFAE796 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; + 6719C0CED787A95CCE7D3CFD54B344EA /* UMEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitter.h; sourceTree = ""; }; 6734DE64ED0684F4ED7E862F0B473C09 /* GTMNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GTMNSData+zlib.h"; path = "Foundation/GTMNSData+zlib.h"; sourceTree = ""; }; - 6770DB80DA2AD6203EE6306E2E63A14F /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; 677CA4BB009608055FD2DE2322188AD1 /* GPBArray.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBArray.m; path = objectivec/GPBArray.m; sourceTree = ""; }; - 678CA992E44B00AAC55BFD1EBEF71CE4 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; 679D1D88CD0BDF8F95100BFABEEEB36C /* FirebasePerformance.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebasePerformance.framework; path = Frameworks/FirebasePerformance.framework; sourceTree = ""; }; - 688FCEAA10FD16A660802F663039A8B6 /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 67DBBD813B61D652667BE09BFFA4C9BD /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 6853BBD96FB2E280FE34AFEAA76F978B /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; 68A1E84C5B4C1FA0364534DF5FA9CA2B /* FIRInstanceIDCheckinStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinStore.m; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.m; sourceTree = ""; }; - 68D28C2718DE550E5EFCC4D6C2A317CD /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; - 68F770181F1569A7865F7A5FC782E840 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; + 68B10029C3957966A9A1753B1A7E17E2 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 68B5FAD70CD3E9255C6B801C2E4A382D /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; 6946B862376ED5B6185DFD59CE9BB4A5 /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - 696D040A55B087A2BE9DA4BE748E7F67 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; - 699F679A626C7359CCCBD0B1CA71871B /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; + 695DBE91E3CAD19D872E217FB0BC4E62 /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; 69E9189795301B078917D0DCC1A8CA75 /* FIRErrors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRErrors.h; path = Firebase/Core/Private/FIRErrors.h; sourceTree = ""; }; - 6A110EC136EFD924DC27529D5AA5BBEF /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 6A21E7816440B010D5C26FCE956D83FD /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - 6A76D27782425AD5DAD5BA0BED7F79C0 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - 6BB2A262F38170E8E7DCFD64388D952C /* UMPermissionsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMPermissionsInterface.h; path = UMPermissionsInterface/UMPermissionsInterface.h; sourceTree = ""; }; + 6B9B85CCB85EF863D6AEE37F9599579C /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; 6BC6169FE9172EC3ECF6AD711B177B87 /* FIRInstanceIDKeyPairStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairStore.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairStore.h; sourceTree = ""; }; - 6BD770217FE1351E2C0E91F27F6BF098 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.h; sourceTree = ""; }; 6BEC5CB1F4874AAD0138959794C1CF02 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; 6C0A208B50BC7DD0CB91ED9CAC3066BE /* FIRInstanceIDLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDLogger.m; path = Firebase/InstanceID/FIRInstanceIDLogger.m; sourceTree = ""; }; + 6C2C03FC3B0CF639E0C7808EDFF35128 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 6C331D6B1B5AB94A8B3AB31ECF8F280A /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ShareRocketChatRN-dummy.m"; sourceTree = ""; }; - 6CA3557D2BF1F9B7BE7F1861AE5133F3 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + 6C99FDF088E786E8BA2C08E5FB1D670A /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.m; sourceTree = ""; }; + 6C9E32BC66A9826ECE9F53A1739866CD /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; + 6D00743F04BE6CF13C35C241359BB186 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; 6D048B65D5401F3B11C2CD7AD3F5FDE2 /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; 6D1AC57504505A93DD8D0EA687056CBB /* FieldMask.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FieldMask.pbobjc.m; path = objectivec/google/protobuf/FieldMask.pbobjc.m; sourceTree = ""; }; 6D4F1380084C5CF876DBC28B169C3B82 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 6D5C418B5EEC894AA078554767CE3DDC /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6D82F565EC3AB854EB6657E0657222C2 /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; 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 = ""; }; - 6DCC7DE2986DBBEA049611130B984DB8 /* UMMagnetometerUncalibratedInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMMagnetometerUncalibratedInterface.h; path = UMSensorsInterface/UMMagnetometerUncalibratedInterface.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 = ""; }; - 6E39E7D7708C363FA17DE810515F8A00 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 6E5E0610745F4E4308299B84727BCC34 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - 6E6EDEBAB005F945C63F59DBDF1D0563 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 6EE4B15CE3F0C04296F28031DD3EFCAB /* UMFaceDetectorManagerProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManagerProvider.h; path = UMFaceDetectorInterface/UMFaceDetectorManagerProvider.h; sourceTree = ""; }; - 6F1C772A621F52EF8AC0C72A67330354 /* UMTaskManagerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMTaskManagerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6F82F325D530BDDAF3B5EEFCFB0411D9 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 6F9D2C2C8648E85CB2D32F25F6BB0195 /* 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; }; - 6F9FA40FA2690D8853B98D5C27140E51 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 6E4AC5D2B9214B5B19C3DDBA0CC343DD /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 6E7412F2970F81ABC0DC3873434EA89B /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; + 6EF3395F36C2FE0004442D4D6BB89F0B /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6F19DE6D3EC387FCC9908A1D7BDE4FEE /* UMUtilitiesInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMUtilitiesInterface.h; sourceTree = ""; }; + 6F4CD222FEA8A1CEC5211926FC6A9AC6 /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 6F851957B97E23C3925BD65153F74A60 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 6FCEA1F86CAAF63F2819D5249EC003AE /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; + 6FF2956C0A176D23B4A240902BBB130A /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; 706A49ED0395C47363714A6B97AE0F47 /* FIRDependency.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRDependency.m; path = Firebase/Core/FIRDependency.m; sourceTree = ""; }; - 70930EE1A8493B1B9F936E66702CB83A /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + 70C888E22C032A482582B43128A9241D /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 70E97D4C8A8F0E19829E48D05FC41083 /* EXAppLoaderProvider.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXAppLoaderProvider.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 711C6598936FBFA8F477E439F6E6A956 /* GPBDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBDescriptor.h; path = objectivec/GPBDescriptor.h; sourceTree = ""; }; - 71BD25DC2A473B72A2B6D5B498555F86 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 7206EE91F9B245492AF4DF0122ADB92E /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 7133D7628A052FF1D1F45E2C24A66825 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; + 7143A12342D68FDF8F49EFE460CAB194 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; + 71575EF092325EEF016E4CCC47B95670 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 7199155E6E1E50C34D979A3778B46148 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; 7228F1A5DD1E7449CFFAA650E17D8BF7 /* GTMSessionFetcher-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GTMSessionFetcher-dummy.m"; sourceTree = ""; }; - 72509B318BC71FD668322435733BC3F0 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; - 72CBE19DF375F16284A08576395BBD58 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - 72D7296DCA2ADBEF058949326873E89E /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - 733E223CFDD262EF43FBBD8807E803EB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 73445129AC7FB86EE46F20FB12E729DF /* EXHaptics-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXHaptics-dummy.m"; sourceTree = ""; }; - 7392E40D706A1072611B4CFFF50E1D2E /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; - 739A7736657BD48D2E30CEF963896A54 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; - 73EFD8BA63B9A167937E339F74455143 /* UMKernelService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMKernelService.h; sourceTree = ""; }; - 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMPermissionsInterface.xcconfig; sourceTree = ""; }; - 7419615BE9C77060447B9498E8C5BC09 /* libUMCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMCore.a; path = libUMCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 743FA771575F96193CB1D17C45BB8147 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 7440D1263C8C236D9E80386E59139187 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; + 726E7834DE3241DAA577F6FD8E05E0B3 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 733596A097B570DA8248AD5F350C8374 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; + 7380B6F798EAB5DDB16BCFD3F5374E73 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + 73AEC71AD31C34C9FFB33071AF5483F3 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; + 74022F3C701D9CF9A08B3BE1D10CFAC5 /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; + 745B494873A826D94F99088E705B05A4 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; 7498C22D9DF923F2EB5402E6FB46A266 /* GULReachabilityChecker+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULReachabilityChecker+Internal.h"; path = "GoogleUtilities/Reachability/GULReachabilityChecker+Internal.h"; sourceTree = ""; }; - 751B6FB6DE9B5B296B0C4CF7E0F625C9 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 754584A37D6E703EFC54974BFEB329AB /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - 755EBB24F0F2AF4ABC96112910076E99 /* UMBarCodeScannerProviderInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerProviderInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerProviderInterface.h; sourceTree = ""; }; - 75717BEF0A669997409833CF33E496CA /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 74F2166E623CF220F1F4869AB585D64D /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; + 74FD050C1E7BF4853D396AA0D9BAA5BD /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 75557BDC533CD1F7D49CF38B803CC4F3 /* EXCalendarRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCalendarRequester.m; path = EXPermissions/EXCalendarRequester.m; sourceTree = ""; }; 75E5F2FAE3615F969E1B0DA9DD23A307 /* Pods-ShareRocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ShareRocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 75EFAE6EC8D3C3E7B409AB2CA58A9748 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 7638DC17BC0135744115C99E36911C9A /* RNRealmPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNRealmPath.m; path = ios/RNRealmPath.m; sourceTree = ""; }; - 76433928D4430C19868E79A86734E323 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 765BB06E332F1DDB985D0A2A9BD0E253 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; - 76C577F39BDA1D3D359845B58D76A5C9 /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 76A3F408B9D478E9557FC9B9B28B13EC /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 76AEC6E9D04F12D3C44C864B2F7682C1 /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; 76EBFD3CD23982CD8310269BCF2453CF /* GoogleToolboxForMac-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GoogleToolboxForMac-dummy.m"; sourceTree = ""; }; - 7747133CB90512689C8EA90EE1341B77 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 7808E35EEBDC3E4D79E96FC46AAC4DE8 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 783582406C0AAEC09C992FD4E848F92A /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 78BD0E89211B12181B53EA31FBC8EBEB /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - 78E5691D1FB00DDBB44E372B7794C0E5 /* EXConstants-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXConstants-dummy.m"; sourceTree = ""; }; - 7959FA3C776756C79684510CE9547B3A /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; - 796605920141ACEF9364E34651E8DFB2 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 79C0E7B6B62D12F73DCA5492EDF02096 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 79DE7B6B154816E6DCBE487BB67ED173 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + 76FCFEA1AB935CF4F581AE5DA1E1546F /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 7713116BC72735880E80838DECC28CD6 /* UMReactNativeAdapter-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMReactNativeAdapter-prefix.pch"; sourceTree = ""; }; + 7843AB58D0C60A194189571D725D8DA4 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; + 7865641C4439823A8779EF2DE5E37517 /* react-native-realm-path-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-realm-path-prefix.pch"; sourceTree = ""; }; + 792031DB0FE8BB7256FBA9466D54E485 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 79365C361084D7EAE21E13F69E8B52D5 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 79B7CFC35B3671D959756BB364690FAB /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 79DCAEA6DFA25BF54F9A9FA5CE6A532E /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 79DD72E8E4807E93FD99A77DB408663E /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 7A082A75976573EF5CDA18A6CC8179E6 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 7A0DC9DB1CF1C7E1452B27CF0D84149E /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 7A266BD0EA0D76366F7173850654802E /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; 7A29F957A43035734255D442CB7511BF /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; - 7A4C2A63A87EB9D60417017F86685D95 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; + 7A5F6BFB6726AAD76EE7C861E1E86256 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 7A7EA23FAEC6A585E5FE982CD495A7AB /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; 7ACD875EB7DA766798B3BC381F195E89 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 7AD15F6451DE91C26A0FBA916918F698 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; + 7B2C7FA3091F72F246C807C11659FEC8 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; + 7B8AC83E75F8743AA886A5A76441C042 /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; 7BA7175A9908886E248699428C067D56 /* FIRInstanceIDAuthService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthService.m; path = Firebase/InstanceID/FIRInstanceIDAuthService.m; sourceTree = ""; }; 7BF13B1EC347270A141AF1842CDAF405 /* FIRInstanceIDBackupExcludedPlist.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDBackupExcludedPlist.m; path = Firebase/InstanceID/FIRInstanceIDBackupExcludedPlist.m; sourceTree = ""; }; 7C2E814399C509F6046B91DD6C7410FB /* GoogleAppMeasurement.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GoogleAppMeasurement.framework; path = Frameworks/GoogleAppMeasurement.framework; sourceTree = ""; }; - 7C757C0E204EBF0CB4DA737B5DA400AA /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 7C9619DE9593734D5AC0F94D7FDF851F /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; + 7C9F11478D18A63F81D2F839055478BD /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 7C9F66BD2F5994688215F7C214C82892 /* GULUserDefaults.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULUserDefaults.m; path = GoogleUtilities/UserDefaults/GULUserDefaults.m; sourceTree = ""; }; - 7CA7AA353495310B184835E788C1BDEA /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 7D1572D0A81CB920AC0A5BEBE601742B /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 7DAD5E4B525E5A44ED572B37F5F1C820 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 7E58DC49A2D4D26720415F4EF77EAD0F /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 7EA2FB1ED4183EC2BD2FE34C37E15B07 /* EXConstantsService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstantsService.h; path = EXConstants/EXConstantsService.h; sourceTree = ""; }; - 7EBB09FA3648B85F3F0BC62F81786778 /* 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; }; - 7EC62407C213D641C084B8982037FD72 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 7CBE627257CC2913E8DD954CB89DA8AC /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 7CCBAD1B137A532B11B95D5B83064D50 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + 7D05BBFCA2502FCCD6DEEAF2CA66B5AF /* UMImageLoaderInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMImageLoaderInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 7DA8F6DD5916C6C65059B5F36C0DA434 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7EA5C60FB0B4298F62C66EC8F7BFEBA9 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; 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 = ""; }; + 7ECFF3945CF2A3D79D10239277991CB1 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 7EDDDFF69ECD35BDFE6017F5EA42CB99 /* UMCameraInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCameraInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 7EFD7D606C5FCF2524B1CA130FFB8982 /* GPBUnknownField_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownField_PackagePrivate.h; path = objectivec/GPBUnknownField_PackagePrivate.h; sourceTree = ""; }; - 7F2DF0B466309B5A279FBA1DC687B6B8 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; 7F60A815345257201EB2DD6A85AE4AE3 /* GTMLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMLogger.m; path = Foundation/GTMLogger.m; sourceTree = ""; }; - 7F78FB9CC8979A1A1AE3B1411E72676C /* UMNativeModulesProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMNativeModulesProxy.m; sourceTree = ""; }; - 7FB6FEF6E9C65093F21494725704EF43 /* UMCameraInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMCameraInterface.h; path = UMCameraInterface/UMCameraInterface.h; sourceTree = ""; }; - 7FE734CD6E27A147E8CD7BF2385CAB68 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7F751B797C2BE9300597FDFBF4F20D16 /* UMBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBridgeModule.h; path = UMReactNativeAdapter/UMBridgeModule.h; sourceTree = ""; }; + 7FA23A71CE1BCA68915B41A32887485D /* rn-extensions-share-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "rn-extensions-share-dummy.m"; sourceTree = ""; }; + 7FC7AC404AF1B82B701737AE6B8CF3E5 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7FC91402D7CBA261B1D9153234CB3A3F /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; 7FEB15F0E803D8293239AB02DA1B66EA /* GULNSData+zlib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GULNSData+zlib.h"; path = "GoogleUtilities/NSData+zlib/GULNSData+zlib.h"; sourceTree = ""; }; - 8050186A7A19A3AF6AC03C3D457EB16D /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 80697C5F9E2712674F529C4476DF023A /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - 8084D3241A42B62A15B74F8C533C2B59 /* EXSystemBrightnessRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXSystemBrightnessRequester.m; path = EXPermissions/EXSystemBrightnessRequester.m; sourceTree = ""; }; + 8035C1FDE76C15AFD7CFA0AD824A64C1 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseRemoteConfig.xcconfig; sourceTree = ""; }; - 80C0AF5D6909C059B1C4DEC7BB74C83C /* EXWebBrowser-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXWebBrowser-prefix.pch"; sourceTree = ""; }; + 80EDE09135EE370384714EDB0F85BD3E /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; 80F583A588A7BFDA1F7CB40F133E0521 /* GTMLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMLogger.h; path = Foundation/GTMLogger.h; sourceTree = ""; }; - 81229E7BA982B90815E3B704711C1683 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 8126B6469CB961532063EC12B48E0E40 /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; - 81679495E33F981696E19ED18C1B485A /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 81A4A2D931A40792CAEFDD49740B6183 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 80F5F7D0AEAEF37EBDE43C19A67DD4D1 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 8133DFECBFCE0D048F03D2A66C77D238 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 816C93B31A6206F3685DFB88F72194F4 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; + 81959E09D42C986C3B1443DAE2DB52C3 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; 822E127F41D73E1A442BAE48920F7F3E /* FIRInstanceID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceID.h; path = Firebase/InstanceID/Public/FIRInstanceID.h; sourceTree = ""; }; 824CA65A50D94CA1CAE58408CB4B035F /* FirebaseABTesting.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseABTesting.xcconfig; sourceTree = ""; }; - 829EFF3386559FD009EE63FF426BA7C7 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-document-picker.xcconfig"; sourceTree = ""; }; + 82D8DEC837717040090F97A403E91329 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + 82DB0248A41DA2BD1930069EAA498788 /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; 82EBFF5DB156A96271B0169DA4006590 /* libAdIdAccessLibrary.a */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.ar; name = libAdIdAccessLibrary.a; path = Libraries/libAdIdAccessLibrary.a; sourceTree = ""; }; - 831929E581515A1F83140528906C2E4D /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; + 82FD6EB75FA961CE16E8A890F152CD41 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; 833461056D9A489B4099E8A0F59BBFE7 /* GTMSessionFetcher-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GTMSessionFetcher-prefix.pch"; sourceTree = ""; }; - 8356753F26FEF1EE58E015A2B46FF942 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - 838CE0A524A9BFE592B14C1114CEBC4A /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 83362C6819433DECA0881033CB70BB5B /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; 83A553FB3363877DF058636D631A348A /* GPBUnknownField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBUnknownField.m; path = objectivec/GPBUnknownField.m; sourceTree = ""; }; - 84472B441282C35F5CF14DE357588B5A /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 83E4E128598383188896C08018DB8541 /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; 845132CA9CF8FF398F41CE4EF0B6E878 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; - 845309D152A4F00257529AA2AB7FB409 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + 8458494AD90A506E2ECE38BE5CF6BA77 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; 845C431A9E25DE99DB18E6F00FBDCBF8 /* GPBUnknownFieldSet_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBUnknownFieldSet_PackagePrivate.h; path = objectivec/GPBUnknownFieldSet_PackagePrivate.h; sourceTree = ""; }; - 853F971ECC8E5CEF001627385A80F21B /* EXDownloadDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXDownloadDelegate.h; path = EXFileSystem/EXDownloadDelegate.h; sourceTree = ""; }; + 84720C7C74724FD3BA9A8E1D950E1A7F /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 84822A53AA51E4EE1662F6976283048A /* 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; }; + 84A9358736D3D81A36F81D05D1E4098E /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; + 84B2E2EE3FF192280B0F402420C43425 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 85239ECBBFD07E09F702436F73D035F1 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; 8562482F04AF663EA3F27B4C0C5EAFB1 /* FIRInstanceID+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Private.h"; path = "Firebase/InstanceID/FIRInstanceID+Private.h"; sourceTree = ""; }; - 859631F60010BD1A4A0D69FBF576E22D /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 859C4F23EA9F010854D5711CE603E006 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; 85CB4225592A21E0AD70BE53C1742166 /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 85DFCC7B268D27AB2EB0ACB8EC6CE74A /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + 85DB4BBD1D7C604D3B61AE4E0B4F697C /* UMAppLifecycleListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleListener.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 = ""; }; - 8653D710F71F2EE6EC65A3CC532DDE9B /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; - 865DE2323FC3A3421462A2A91301343B /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 866696B215C8B61B1AA034E3DFE066D0 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; sourceTree = ""; }; + 865E348806BBC2C469F71B70B10685F9 /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + 86CFDEE0EC643256C6412EC41264919F /* UMModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistry.h; sourceTree = ""; }; 86FB658177A76D66DFF67A1F1B6430D6 /* FIRInstanceIDTokenFetchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenFetchOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.m; sourceTree = ""; }; - 8738A9EE57BD71142B12D552AF59C2CF /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; - 87DD7DBCC0E780DBAA7C30E8726B428C /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 87E9725B7C81C851ABD18E37872EDCA6 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 86FD7573084DFAFCBB84A59DF4D5D16B /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; 88173FEAE6AA0334663679ABEB47A34D /* pb_encode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_encode.h; sourceTree = ""; }; - 881F03CBCC958AC8B719DC865A9D5B12 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 8832B7683A7BCE3E7412EBDE088EE906 /* EXHaptics-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXHaptics-prefix.pch"; sourceTree = ""; }; - 884FE6F7BDE05D9A77E2BB9B5F5B55B7 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 8861A2E4A89ADE152A17D576BFDD7658 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 88825D9BB2C364E8A225EBF57B64AC16 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 888BFA19D1199419B777E38714CACD08 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 88F453818BB1844235CE2A13AC131340 /* react-native-realm-path.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-realm-path.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 889F03FCBFC49C2CB3394A0F44932A60 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 8922E634679D9F52976EECE46529488F /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 893A09728AA0FF4E0DA88A59A0C4060E /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8981A3DCA2B5E70074AD0F0F1AF4F345 /* Pods-ShareRocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ShareRocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 8A2E40F452FB8A303D42644FC71F2FE2 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - 8A3E9EC6AE49276FB46E379ACFB5F75D /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 8A63FC16745F04B69799DFC4C0D7A9D5 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; - 8AC1ECCEBE98EC21E41B286C7D87BFE5 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 8AC20F93FB89F173A1218882C6857514 /* RNDocumentPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDocumentPicker.h; path = ios/RNDocumentPicker/RNDocumentPicker.h; sourceTree = ""; }; - 8AD54F5D93130676A1EBDEC6F1D91059 /* UMBarCodeScannerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMBarCodeScannerInterface.h; path = UMBarCodeScannerInterface/UMBarCodeScannerInterface.h; sourceTree = ""; }; + 89A40B60831374B98EA1775B9B0DD00F /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + 89FAA21ECDD98DD632D528837AEE9970 /* UMViewManagerAdapterClassesRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMViewManagerAdapterClassesRegistry.m; sourceTree = ""; }; + 8AA5D6F5A2C64C737302419F80214440 /* UMModuleRegistryProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryProvider.h; 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 = ""; }; - 8B3C7D3B1BE1479AAEE455CF7FCFB931 /* 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; }; + 8B528C2CA3CCCEDC62B9E9AA32C00E30 /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 8B62FA215569F5BF4B9C37847B5EF335 /* EXRemindersRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXRemindersRequester.m; path = EXPermissions/EXRemindersRequester.m; sourceTree = ""; }; + 8B7D3082C8D084878DAB7755D645CBC3 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; 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 = ""; }; + 8BC93D90AB24AC3DDAFAA785145C79F7 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 8BECD015B3ACE496AF884BCDCAD6AC2E /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; 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 = ""; }; - 8C20E67D7573E2DE9D81AD21224F0D17 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 8C2E147BC317303C418A8924BF2D93AB /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 8C3DEED89DFCC68C97F4E5B0318BB31E /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 8C4838D77CAFA6A9F6153336C544453F /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 8CABF880BB0E034539A1BAFE9E9093BB /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - 8CAC5BFA8B1009021DC5A88FDD6419DC /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - 8CBF6882D2CD8EB544E3926B8B901B14 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - 8CDE1B9363F5B5A52414B3D7EED53400 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8CEA057C37BDF210879789C260FC1446 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - 8DA63778E26593951ACF860325A76F2E /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 8DB980F641C363494126F4A26051E81A /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; - 8DCC4ED073425430ACB88B74EEB15C9A /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 8DCF7F24E3C0D706CDD65EEA2A64A531 /* UMTaskServiceInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskServiceInterface.h; path = UMTaskManagerInterface/UMTaskServiceInterface.h; sourceTree = ""; }; - 8E26A342169EB482773E67D7D32F9788 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; + 8C2CD37DDD4CA510E43022AF29C46E3B /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8C3F81D94FB4143534C34BEF5D210E69 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 8C935CA55B51C771E890FBE600154CE9 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 8CDD649462EC20F8438A9B2D9DE60608 /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + 8D40AC2807D71FB5CC9E4F06E7AF3F24 /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; sourceTree = ""; }; + 8D502D2218A7F591BFEB0939D93DC8A8 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 8D70612E280E00B2633B1649E07D95D1 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; + 8DC23CD178D303363B1318CEFF5092F6 /* react-native-realm-path-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-realm-path-dummy.m"; sourceTree = ""; }; + 8DEF3102A1896A3567DCB476EB24B8A0 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; 8E48F6ED55D527B20EADC7AFA4795485 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; + 8E607111B23FED9067273B13FF232BEC /* EXContactsRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXContactsRequester.h; path = EXPermissions/EXContactsRequester.h; sourceTree = ""; }; 8E62079D73ED4FA523DE774809C97A9F /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; 8E64579CEF306EFF1F501D02D17A75B8 /* FIRInstanceIDKeyPair.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPair.h; path = Firebase/InstanceID/FIRInstanceIDKeyPair.h; sourceTree = ""; }; 8E840F68F5A28B3739B3B51B8661A51C /* GPBCodedOutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedOutputStream.h; path = objectivec/GPBCodedOutputStream.h; sourceTree = ""; }; - 8E867CAB95A604A5DB227E6F017F04B5 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 8EA268A27213B5D969279287B72014B2 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + 8EA368A64722A2F9858521D7E630AADC /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; 8EAABB04C2CF955ECC9E123EE5FB00E5 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 8EB5F6DC65441C2F195024FFCD646DC2 /* UMReactNativeEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeEventEmitter.h; sourceTree = ""; }; - 8F2E9FD2978F0A487CA5EB098EAA947C /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; - 8F8443BF9243EF19D3F65759F6816464 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.m; sourceTree = ""; }; - 8FC09F8F473E743C692CF37481AD28EE /* libEXFileSystem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXFileSystem.a; path = libEXFileSystem.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8FF59FB65959FAC943014917FBFFF90D /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; sourceTree = ""; }; - 904AF1C4870C8009B28B1AC932F01339 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 90DB96D3D50579807B2CF5979ACCD04C /* EXRemoteNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemoteNotificationRequester.h; path = EXPermissions/EXRemoteNotificationRequester.h; sourceTree = ""; }; - 911689A99D32EBC2D7F00943ABD80B7A /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - 912753E2D0875DC4EE06B774F7703BD5 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 9194651291BD92C94897911196845215 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; - 91A00B0D8CE236601318F4CA2FA44005 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 91A9F04829BCC6F42AF429262D314BB0 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXAppLoaderProvider.xcconfig; sourceTree = ""; }; + 8F38970EDC8D3290B93FB6FBA911D887 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; + 8F8C367E09DA149B66653CEC56A30695 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 8F99C01A37C1D22B04DDB86B7B2626C9 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + 902525D94CCC26AAE0FE18E6937BEB4D /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 903DC12B8311BEF1AEB5C4E1F2193ABF /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + 909A3824D34203CAB213BA645D66B59E /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; 91E6F0DDEECEA71B48EC90595495405D /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - 91EB5D8288F63FFC089EAF2ED863590A /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; 91FFC3ACA796AF71C4AB51C4D5637080 /* GTMSessionFetcherLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GTMSessionFetcherLogging.h; path = Source/GTMSessionFetcherLogging.h; sourceTree = ""; }; + 920B9B8E31AE8900D840C141C6DD24EE /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; 92539DBA7C237CC37CC174B30BE17026 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 92BDF4644970336BDD2726D6CEE92A87 /* UMReactNativeAdapter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMReactNativeAdapter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 925F2D39F46B89F1ABC6C06FE29A137E /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 926D2EC869E72CE5FC0432474062ACDF /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; + 929497D12439CF846EC6473CCC0A46AE /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; 92D0C869550966421DB4CB3F899284E3 /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 92EFFC5DCEABAA1F19A0EA043792A75A /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; 931E1E88664BF29C0559B61CDF1BD5BA /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - 9320F2831D03A239E1DE1943255F75C9 /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; - 936F3813673F74017A7D3974D70CFFEC /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - 937C951DA1C9667808565CF6BDF68D53 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 937E1CF55B4A88FB57F205E5A26EE1E4 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - 939C463B19D94781AF90514C5875182F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 93FEB25F87DEAA393B579B56A163DED6 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 933A81D328BAE34EBFBDBC878A310980 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; + 94500A634A9DFCCF1AED4EB65B4E22B6 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 94A882666DB0E883021178ECBCD17CC1 /* UMViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMViewManager.h; path = UMCore/UMViewManager.h; sourceTree = ""; }; + 94B9713A0A80A1F896C44E908CEA5F03 /* 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; }; + 94CB6BEE50E60CB745D3EB7396A9C9EF /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 94E5E763087CD40423D7325E87CAFDCF /* rn-extensions-share-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "rn-extensions-share-prefix.pch"; sourceTree = ""; }; + 95A60E39B3779D451DAF8FBAA59907C0 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + 95BE51735D0BEC772F77E3CBBCA68595 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 95C15A4BF3BF113D8E6F2239D5AFA0D3 /* GoogleToolboxForMac.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleToolboxForMac.xcconfig; sourceTree = ""; }; - 9605093DCDE576A19361A5CA0D9820C0 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 960A6A17CFD5E7644DDE9B444F1FB88A /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 95E417E14EA8EC27D856057BBC13D6D6 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 95FA0CBAB334DE140BEDB28F1CD384BC /* EXCameraPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraPermissionRequester.m; path = EXPermissions/EXCameraPermissionRequester.m; sourceTree = ""; }; + 960E58738C5C3B7A0B7415B2252B7E4B /* EXFileSystemAssetLibraryHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemAssetLibraryHandler.h; path = EXFileSystem/EXFileSystemAssetLibraryHandler.h; 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 = ""; }; - 96AC5B4DA48481B642C0A6B43FF61EA9 /* UMSingletonModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMSingletonModule.h; path = UMCore/UMSingletonModule.h; sourceTree = ""; }; - 96CBF7B1D6A377DE0ADE741A58B3E116 /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 96F839F9257121D1CC5C72635DB0ABEC /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 970C19976279473D3339CEF84E4F1976 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 97117171D9D65E650FCB6E4EA37E2016 /* YGMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGMarker.cpp; path = yoga/YGMarker.cpp; sourceTree = ""; }; + 96B3D043A5291BF3693F10B2F1BAF428 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 96C1E9FECCF9957E56DAD4714555F69B /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 96C8341EDF172E2180BE2813743711B9 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 971B7AC0856A99D8A38F2D96475E6014 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; 974368B8E9D0826E48E7F274531DCB6B /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - 974BE557BF05C01EA45A5AC245DE0BCA /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; 975D4AA90560D485466B4A51B23DE27F /* FIRInstanceIDDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDDefines.h; path = Firebase/InstanceID/FIRInstanceIDDefines.h; sourceTree = ""; }; - 979097B7DB27D7F475B7C0D8B2A4293B /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; - 97B2E5BC9888896528CF9FBC3B917D22 /* EXHaptics.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXHaptics.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 97CD684EF2CE8DF8291020F2DE149B00 /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 977D131D79DBB852EA70FF5A961D9AAD /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + 97FA0363243E8B0DEE2F55D3B2A29F74 /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 980B6CC34B8595669CACC46ED860D1E7 /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + 98391E45CC78C564A12B11A4B08BFDC8 /* UMTaskLaunchReason.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskLaunchReason.h; path = UMTaskManagerInterface/UMTaskLaunchReason.h; sourceTree = ""; }; + 985DB38ACE19D8DF9D60520426A5F5C4 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 987BB4E05260418F92942F965DDF5116 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + 989738EC4DD51759354BA49761F7E9BC /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; 98A65BC0BF8190887897FA8466E7C946 /* FIRInstanceIDTokenManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenManager.h; path = Firebase/InstanceID/FIRInstanceIDTokenManager.h; sourceTree = ""; }; - 9957009B867CBC0D49D5BFAD7CF27811 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; - 997F9254809558E4F99886F52DC16625 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + 98C9B6495A315F12DF0F0BBF0F809799 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; + 9923FAE163C04AC239528B50FB5C31A9 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; + 9942DEC3CAA135C3DC8B6C219A0CF1DE /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 995A73471CAEE3ADBF0C847FC40CDF7A /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + 998D7A71BF5488B67585E441F8D0F67F /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 99CDEA48AA7C6A5DD74A61DF87922B21 /* UMModuleRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistry.m; sourceTree = ""; }; + 9A68362545A55213678CF1DA96CFEEAA /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 9A8455952F70702F48080ECDEA02F88D /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9A86DBD22BACC7289A71AAFD55351FF1 /* UMFileSystemInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFileSystemInterface.xcconfig; sourceTree = ""; }; + 9A8F23E93F343E355860B1A65AB10F6A /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 9AA4E4B0C996C966F30769EFB1D9D72C /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; 9AB317F0CFE633918FE469302716CA49 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; + 9AB31AAC90DF279AD84B7F17FD189897 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 9AF220A0CEB5E26ABE8974DD5434A3D6 /* UMTaskInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskInterface.h; path = UMTaskManagerInterface/UMTaskInterface.h; sourceTree = ""; }; + 9B27EDA41070BBB5B2512AF95F0CB155 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + 9B397AB658C7C87E77F7906818608B99 /* UMGyroscopeInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMGyroscopeInterface.h; path = UMSensorsInterface/UMGyroscopeInterface.h; sourceTree = ""; }; + 9B44C2105CDE569D2D5D56279695AD28 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 9B608457E3EFC9E959766CE35320B246 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.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 = ""; }; - 9C5AA37519C8C90BEE2FA16240662171 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 9CBF37D783FBCF065C627E76B1962256 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + 9C81E75323C511266B8854B0A3F1B396 /* EXFileSystem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXFileSystem-dummy.m"; sourceTree = ""; }; + 9C97925196FB72F25C2B0E33715AFA84 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 9D61748A16F076B54798F8F3D2927DF8 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9D9623D4DB3EC29B6AD964E55373B73D /* FIRInstanceIDKeychain.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeychain.h; path = Firebase/InstanceID/FIRInstanceIDKeychain.h; sourceTree = ""; }; - 9DDAE6A5A841F6A1CBCAC6B0A54AC509 /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9DDBA0C893A828F996D54E54B9E0B132 /* GTMSessionFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcher.m; path = Source/GTMSessionFetcher.m; sourceTree = ""; }; - 9E8DBE5F9A20BE2D3FD830A7EE2DE66E /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; 9E93B22E06F3F818C0549A563FA597AC /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 9E9CE2A4AD466F1197CBA06C676C10A0 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 9EC25853E75C57E1523E78AB5BCE00A2 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; 9ECC8E411E019FCD2AF6653ECBB8AEEC /* GULLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULLogger.m; path = GoogleUtilities/Logger/GULLogger.m; sourceTree = ""; }; - 9EDC90945743756D56B7EDEF76F71020 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 9ED2170ED57AE842E9D1436FB7E72474 /* UMReactFontManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactFontManager.h; sourceTree = ""; }; + 9F05FEF7F57667CC65C50D33432620F2 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; 9F2B2C4D4A5F2B2E0F49A001AFFFA329 /* FIRInstanceIDUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDUtilities.m; path = Firebase/InstanceID/FIRInstanceIDUtilities.m; sourceTree = ""; }; - 9F43317AE294E292CACE855324E32017 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - 9F5DA0F6A85A390976F740A64014E21A /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; - 9F6DC552674B01CD37E7D8140BA9E7FD /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 9F7A85ED957E267679CE03E652C8B5AE /* UMFontScalerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontScalerInterface.h; path = UMFontInterface/UMFontScalerInterface.h; sourceTree = ""; }; - 9FCE48EE4B07419B0A690C46027AD58E /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - 9FF348D038C506F03350D63BE6E68CD2 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + 9FD48ADAE25F1F66D5A1883170651E2E /* UMFontManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontManagerInterface.h; path = UMFontInterface/UMFontManagerInterface.h; sourceTree = ""; }; A00EC29B08CF617E218E21BB30A22296 /* Fabric.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Fabric.xcconfig; sourceTree = ""; }; - A01E1A07EB6A8204F2104597E9A77FF7 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = nanopb.xcconfig; sourceTree = ""; }; + A04BAD88B492B766034D9CEBCA71BC6F /* UMSensorsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMSensorsInterface.xcconfig; sourceTree = ""; }; + A05E838601794055D5CD912A0F798AB2 /* libEXPermissions.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXPermissions.a; path = libEXPermissions.a; sourceTree = BUILT_PRODUCTS_DIR; }; A0682B4FACC89766A12837374BA1E199 /* GPBExtensionRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBExtensionRegistry.m; path = objectivec/GPBExtensionRegistry.m; sourceTree = ""; }; - A079A52E9EFE84C17A200F946A6CBFBA /* RNLocalize.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNLocalize.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A0AB297E98B6C8A6C65F0DF2D636893E /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - A0CE6682711F2AF5F09BC2D0D13CCEA8 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + A084661DF61A1204941E3F41EF6724DE /* UMDeviceMotionInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDeviceMotionInterface.h; path = UMSensorsInterface/UMDeviceMotionInterface.h; sourceTree = ""; }; + A087D2A3FF0EF044FF978FA6EC79BFF8 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + A0F5CDB6B6DE647E899C2C0AACFD1AFD /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; A0FC4A4263889C7BB58FCA1914D25763 /* GPBMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBMessage.m; path = objectivec/GPBMessage.m; sourceTree = ""; }; - A1628DC0F6677F7DB622A59617EC21B3 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; A1C878EFBC94ECAB6800F32C740907CE /* Empty.pbobjc.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Empty.pbobjc.m; path = objectivec/google/protobuf/Empty.pbobjc.m; sourceTree = ""; }; + A1E0CB9B64E015E085ABBDAFA0C4A0EF /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; A1FF690A9214A1760165C26D7E1E7966 /* GoogleUtilities-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleUtilities-prefix.pch"; sourceTree = ""; }; A20CADD4552AE7665DC8A5AC2905BE9B /* FIRIMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRIMessageCode.h; path = Firebase/InstanceID/FIRIMessageCode.h; sourceTree = ""; }; A2412265E936E16EF8CAFEA80AC61815 /* GULLoggerCodes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULLoggerCodes.h; path = GoogleUtilities/Common/GULLoggerCodes.h; sourceTree = ""; }; - A24F0D17F9FBDCCCEC4C22FD731397F3 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + A28C059670E968893DCB314FA41AC08E /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + A294E8ECFD6B64874C919E401089E014 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; A2B5536C4DF71588F097DDAB97B554F5 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - A33F32B7C513C82889B80F3ABE64053E /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + A2DD3760347AD6DA5D92351CB268A9D1 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + A2E2AE2B851F0C5D5E40354C0994C236 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; + A30094D8BEC297DD5D27FC6EC09DC8A3 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + A33CC448A60344C3A577ECF3E96D5F20 /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; A340F0B85A7A004E4716C810327DCCF2 /* FIRAnalyticsConfiguration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRAnalyticsConfiguration.m; path = Firebase/Core/FIRAnalyticsConfiguration.m; sourceTree = ""; }; - A3A54BF0C1F02B22417B0FF9E6CB5402 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + A3515332B300538B44AC678D88BAA04E /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + A377AA40928EAA4EADADBABFD736F165 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; + A3BF3E382E3617044A8C0708B4C5E936 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + A418D113B6469B20252D61BA33AB08EC /* EXFileSystemAssetLibraryHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemAssetLibraryHandler.m; path = EXFileSystem/EXFileSystemAssetLibraryHandler.m; sourceTree = ""; }; A41B7BFEABEB2A6449351B5C578A54D3 /* FIRInstanceIDCheckinPreferences+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FIRInstanceIDCheckinPreferences+Internal.m"; path = "Firebase/InstanceID/FIRInstanceIDCheckinPreferences+Internal.m"; sourceTree = ""; }; - A43C48DF187C61578AD91D65C4C18669 /* UMTaskConsumerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskConsumerInterface.h; path = UMTaskManagerInterface/UMTaskConsumerInterface.h; sourceTree = ""; }; - A47498A3A8FBBE473C7531574A7CEEDB /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - A4779711C3A43BD673887C1240FFF225 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - A4AA342D485B0A2C2ECEE714AA427DC8 /* EXWebBrowser.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXWebBrowser.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A4AF0E10141B984E71359A7404BF5486 /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; A4BCF5D07E7A22F1BEF3C8E72DA4E002 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; A4D300827816D1923359DA1557AB9D0D /* FIRAnalyticsConnector.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FIRAnalyticsConnector.framework; path = Frameworks/FIRAnalyticsConnector.framework; sourceTree = ""; }; A4F2AA49E1687DFB015A34423BE87536 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; - A519FB84482B64E2D65FA64E361C2956 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - A51B04FCA414B4C97A67491705EB9543 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + A501CC61091EC1F04EEBAA04DE0899C3 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; + A5596C5122164ED20799774D2E0FEF76 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; A56F7E48750D68E7167D657A3975D705 /* GULReachabilityChecker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityChecker.h; path = GoogleUtilities/Reachability/Private/GULReachabilityChecker.h; sourceTree = ""; }; - A5FAEDFB4A250C3244763B36AA489C90 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + A5B243977334016B82928CA96CB409FE /* LICENSE.md */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE.md; sourceTree = ""; }; + A5B31446DF200E60BD498E5D26824349 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; 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 = ""; }; - A64F83D84FBE9EC4A8E8556A498CF948 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - A65C6F30E9DA32FEE00E5BBD535754F2 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + A6205A0D705AF5F4DD318F1FA67183B8 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.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 = ""; }; A6E9647C4980516FAEF729C99A4557DF /* FIRInstanceID+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceID+Testing.h"; path = "Firebase/InstanceID/FIRInstanceID+Testing.h"; sourceTree = ""; }; - A6F52032E24B113CC7408E54490FD8B1 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + A7825381E1BDBFF52EE48C99DBE80380 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; + A7EE13869EC45D80820FAE6779EA131A /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; A7FB755B6494E4CBB67B357467B03FBB /* FIRLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRLogger.m; path = Firebase/Core/FIRLogger.m; sourceTree = ""; }; - A81349EA8C993B86CB44D28972236524 /* UMModuleRegistryAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryAdapter.m; sourceTree = ""; }; + A85C83C31A4175477869DB633A5067E2 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + A85EAA14826EB2054D02BDC86098BBCC /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; A89317E6AEB35292207359B477B968AD /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; + A8B935D2F5E9649533D91AEA1A080454 /* UMAppLifecycleService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMAppLifecycleService.h; sourceTree = ""; }; + A8FA3CC0ABD4243D8C79EAC3C7DF955C /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; A9209D5A37DA753BC42A9DD8365F66BF /* FIRInstanceIDVersionUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDVersionUtilities.m; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.m; sourceTree = ""; }; - A9D45039C4DA76049EBA7DE8211EE7C1 /* EXReactNativeUserNotificationCenterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXReactNativeUserNotificationCenterProxy.m; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.m; sourceTree = ""; }; + A930A883F781D011116272157CE79452 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + A9F9C06F9A56D9F96B81ED3C32895E09 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; AA015B42B94D08FF3C4C36EA989F13DE /* FIRInstanceIDTokenInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenInfo.h; path = Firebase/InstanceID/FIRInstanceIDTokenInfo.h; sourceTree = ""; }; - AA78F887998852EABAED8775C5279A49 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - AA949BD556386D8F86C066563832B363 /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - AB05BB3ED8087F85BB25E0E8312C646D /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + AA421C702E8F7210B66AE39177EDCAEB /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; + AA4329487DDE9265B304E7AA19AE9529 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + AAD401BFF20F9A071065252B868A4DA2 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; AB5E8E6109691A6353CB4DD1B46E0BA2 /* GULAppEnvironmentUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppEnvironmentUtil.m; path = GoogleUtilities/Environment/third_party/GULAppEnvironmentUtil.m; sourceTree = ""; }; + AB7840A7A6F05ADA2D5C75E34FB41378 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + ABA7AAE3AF482E96144879F1986B91A2 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + ABA930968820723EF28C2972287F2EC4 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + ABBC6EA849AFF792A1A52E4003A78328 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; ABD254E522C84D25A9CACB00D98DED09 /* FIRLoggerLevel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRLoggerLevel.h; path = Firebase/Core/Public/FIRLoggerLevel.h; sourceTree = ""; }; - ABFF59E51B52F0510F338891BF4F34DF /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - AC24AF82F582FD7B3EB82A723EE2308F /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - AC4EE92D0E6B236B9F7EBA7159334C44 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; - AC6AD7DDF2713E52608C1F3F5ABACCBC /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; + ABFB764195515911ADAC273A3F7B0398 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + AC0ACBB6F3F6F22DB26D315A304A32AA /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GTMSessionFetcher.xcconfig; sourceTree = ""; }; - AC77E414040E9372625BC656B3DDECBD /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; AC827C8C29D1F41334B1DB02F51E1472 /* GULOriginalIMPConvenienceMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULOriginalIMPConvenienceMacros.h; path = GoogleUtilities/MethodSwizzler/Private/GULOriginalIMPConvenienceMacros.h; sourceTree = ""; }; - ACAA46AA6761EC3485F4A4A3B0B4272D /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - ACFDB25A700626BC243BB7F090C7D05E /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - AD41223977502296C80DCD16A0A28ED3 /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + ACBCEF542F468E55DFEF49DD9A79712B /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = instrumentation.h; path = yoga/instrumentation.h; sourceTree = ""; }; + ACFD4FB467615C5B33EA9665AF5CF93F /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + AD04C17D5218FAB57F22B8E219DB51C2 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + AD1CCEE9D4C64150A206514D2D504F79 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + AD7754760531AE40CFA5CF0B3D369299 /* UMReactFontManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactFontManager.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 = ""; }; + ADF421E3B1381BD2BC57626586FAB4EE /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + AE41912ACF3E01FFEB5E637E385EE097 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; AE4BEC52BB9C31042CC4495A10E43DB1 /* FIRInstanceIDTokenOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.m; sourceTree = ""; }; - AE64DF9A4548F8784492704BAB97A910 /* UMUserNotificationCenterProxyInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUserNotificationCenterProxyInterface.h; path = UMPermissionsInterface/UMUserNotificationCenterProxyInterface.h; sourceTree = ""; }; - AF42DB2D5BEE3E0B8711364EEE0884B7 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - AFE53E856D2D3453D69F88987D9B4290 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - B02DF5B8A78FACB9F05C5AD4E33CF9A4 /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + AE8ED82B42096279F8891649956F6742 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + AEB1559576B2BDD8B19692EBB9335A7B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + AEE6F66091233C3574C07AD866C05CDA /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + AF8EAB2CD76F37EC3D0D7A8C67D64439 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + AFB87455E9FD6ED44433B501BAF1C578 /* UMConstantsInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMConstantsInterface.xcconfig; sourceTree = ""; }; + AFCB933FAD90C7574A0D0082F6ABDA1F /* UMFilePermissionModuleInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFilePermissionModuleInterface.h; path = UMFileSystemInterface/UMFilePermissionModuleInterface.h; sourceTree = ""; }; + AFE35FBC793806FACA040539D346BBC8 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + AFF9197B88313BD043FFB8CF553625C2 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + B02B856FBAECFD9ECAC1A99D81950A80 /* UMFileSystemInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFileSystemInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B0461E1DCA29D41DDFC2168E580AA8E5 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; + B0941B1802F65F67729610EBAD449038 /* react-native-realm-path.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "react-native-realm-path.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B0A8229F1AAB021D417FBBDFB0CDCC7A /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; 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 = ""; }; - B0F7B8927FE9B5F5E66A0FE7925FD7F6 /* UMAppDelegateWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMAppDelegateWrapper.h; path = UMCore/UMAppDelegateWrapper.h; sourceTree = ""; }; - B145628F76E71EBC32DE310DF90FEA08 /* libFirebaseInstanceID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseInstanceID.a; path = libFirebaseInstanceID.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B184A621FEE2C8AA51DC852246C4BFA2 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; + B105162305C4A184BD6319070A253DF2 /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B10D758C2B43FF6BDE10429A20AEA30B /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + B12DA81D61AF5598831E84C38736F817 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 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 = ""; }; - B19A832152408DFE546CC2785BC7C0E9 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; - B1BB4F779DE264BB7D5C4D952CA67323 /* UMExportedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMExportedModule.h; path = UMCore/UMExportedModule.h; sourceTree = ""; }; - B1C1A6678EFAC8129B79CE2AA56E1E76 /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + B1C388F9EE1663816321AF7F00FA6874 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + B1C4330D3341E4ACCB065AAEC079B610 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; B20021D31A6BFA31F1E5630A69EA4CA4 /* GoogleToolboxForMac-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GoogleToolboxForMac-prefix.pch"; sourceTree = ""; }; - B2793434C02A64D8F791AD35E946D251 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - B2809DCFA8DECB1CFFE618915EDA5519 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + B2905711B6F9C0CBF1686904B8B79DD9 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; + B2A5ECADF82C69838EA2BDAA20A77404 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; + B2CA4DC693C8466086CB7D79B5AD92DA /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; B2CCC1A2B854A5AE761220034F5EFBF7 /* FirebaseAnalytics.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseAnalytics.xcconfig; sourceTree = ""; }; - B35C75E66CAE756935001764673693A0 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - B3A371FC7AA74A93B445B8B856086B1B /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - B3ADED8F8DEFA1278C85FB3E95276401 /* EXReactNativeUserNotificationCenterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXReactNativeUserNotificationCenterProxy.h; path = EXPermissions/EXReactNativeUserNotificationCenterProxy.h; sourceTree = ""; }; + B2F709F89E5553463AFB7F6E3A3C72AF /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + B36590215700373699DD00A1ADA60D84 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; B3FAFB7BCCD5C53538A4E9ED0729FF9D /* GTMSessionUploadFetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionUploadFetcher.m; path = Source/GTMSessionUploadFetcher.m; sourceTree = ""; }; - B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; - B438A1B35BDB2C17AED2E57973661B0B /* EXPermissions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXPermissions.m; path = EXPermissions/EXPermissions.m; 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 = ""; }; + B483B8451DA81080BB5E638BEA0692C3 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + B4E23C8291E1D6B7748767C5595A9840 /* UMCore.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCore.xcconfig; sourceTree = ""; }; B4EDA879A5FBC25007AEDD3699E0135E /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - B51A1C84A136169FA8964A1B7DD5FA95 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - B51F5B876AEBAF3A595B278DA5E436AF /* UMCore-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UMCore-prefix.pch"; sourceTree = ""; }; - B521D5919FC19FAF174C6CA9AD9EEA5E /* EXHapticsModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXHapticsModule.h; path = EXHaptics/EXHapticsModule.h; sourceTree = ""; }; + B4FDF4E24F80800E969CD26763481445 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + B5343997B2E6E2AB1889121AFFF37BA7 /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; B54AEDB05E5080BC1BBE0209C846D048 /* FIRInstanceIDAuthKeyChain.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAuthKeyChain.m; path = Firebase/InstanceID/FIRInstanceIDAuthKeyChain.m; sourceTree = ""; }; - B56AB4E4CC67B0F39DC3DD6891DC936A /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; - B61C97003ED9A3DB99C2880A1A608BEE /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - B61D4F72E458CF990458F2F57148257E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + B5BFF3F173B36C81F82C844F028AC2C8 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + B6619554F22313775726AA3C892BACE4 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + B67FDFBEF3DEF4469B1A6A4A52322F0D /* 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; }; + B6B565AB3EC6C2C0D6660BAB3828EE56 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; B6B6FD9F05867E267A730BD9C007D221 /* GTMNSData+zlib.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GTMNSData+zlib.m"; path = "Foundation/GTMNSData+zlib.m"; sourceTree = ""; }; - B6BB0B5F58B86884A5F6163AEA399119 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; B6BD6BC1B1EA23C048BA0ED9D296238E /* FIRInstanceIDTokenDeleteOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenDeleteOperation.m; path = Firebase/InstanceID/FIRInstanceIDTokenDeleteOperation.m; sourceTree = ""; }; - B6E5B0E6C559A02790CEDF635455BAC6 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + B6E429B65057119C1D836882B3D9D9DD /* 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 = ""; }; - B75EA0185E2AF3117759FBC14CB029A4 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - B806EE9A192E52046E51562CFC93A337 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; B843F05D718A4E6A823BF7A3D02FB40D /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - B858D65B72F9ECCC2FDA4E4117D0F6B0 /* UMFaceDetectorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFaceDetectorManager.h; path = UMFaceDetectorInterface/UMFaceDetectorManager.h; sourceTree = ""; }; - B8CC93F6B13EC4F6A6B5FE0D56939147 /* UMModuleRegistryProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMModuleRegistryProvider.m; sourceTree = ""; }; B8CE294D987D45655A14860086BE1365 /* GoogleAppMeasurement.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleAppMeasurement.xcconfig; sourceTree = ""; }; - B8FB2662CBAA57FEA849FBEF17542D6D /* react-native-realm-path-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-realm-path-dummy.m"; sourceTree = ""; }; - B920ADF161F0FEEFF91CC378F4C19347 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + B8D589E46CEDDA08867B697941BB73D2 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + B92433AEF3122CE7C6963ADEB2B9AC2B /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + B94EBA5A2442B51C7F7C8E2A374F7006 /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; B951C090165B8D26D9E040D670A5F2D9 /* GULSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULSwizzler.m; path = GoogleUtilities/MethodSwizzler/GULSwizzler.m; sourceTree = ""; }; B96E6BF56CDF4F193C79676B3893C26C /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; - B97D6B3E6BE99827CE1C25FCB858E83C /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - B9D4D551CADFCBE08BCDBCEE6BF55E70 /* EXContactsRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXContactsRequester.m; path = EXPermissions/EXContactsRequester.m; sourceTree = ""; }; - BA47D24FCD6B487BD75C30DC007D3C67 /* UMUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMUtilities.h; path = UMCore/UMUtilities.h; sourceTree = ""; }; - BA4F6AA699A11800E2DCCCCD501F455B /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + B9850662F0EB218A3A0C9CD0101C47CE /* libGoogleToolboxForMac.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGoogleToolboxForMac.a; path = libGoogleToolboxForMac.a; sourceTree = BUILT_PRODUCTS_DIR; }; + B9AEF3DD5FD8B42F1DA68082CF9E55EC /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + BA2509DFFC1886368633D37F084C87D2 /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; + BA40A0BB95533AC79A98A2BCE736E0C1 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + BA4BF7DC3FEA1EB3FE8983F7F8921FA7 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; BA73B2715BDBED36501431ADECCB9C33 /* FIRDependency.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRDependency.h; path = Firebase/Core/Private/FIRDependency.h; sourceTree = ""; }; - BAA18BAF646B573A7E457656A169C4D0 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; BAB0B55F0D83C13F4A93E9693F1E3CC0 /* FIRInstanceIDTokenOperation+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FIRInstanceIDTokenOperation+Private.h"; path = "Firebase/InstanceID/FIRInstanceIDTokenOperation+Private.h"; sourceTree = ""; }; BABA188C1E6539FAC9CE54B5C817AF80 /* GPBCodedOutputStream.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBCodedOutputStream.m; path = objectivec/GPBCodedOutputStream.m; sourceTree = ""; }; - BAE447C41D111839BA0F623B729945BD /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BB0569EBB8856E2228CF4A097F777707 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; + BAE546B495F0C3B3EF40FAA062F42026 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; BB1BBCD3F64FF8BA9250E80D83F2FCB0 /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; + BB23D727D6DC17ECBE7902E7C21C7FFB /* UMJavaScriptContextProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMJavaScriptContextProvider.h; sourceTree = ""; }; + BB283442FA1599B9711E096AC26D4B6A /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; BB9118D470BB9F2108A60D3ADF6C1EC3 /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - BBB0D5C2A7C79CC28B6DE54FDDD2AED9 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + BBC095DB5CE8597F56A47F691D873DE3 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; BBDDC56455CE2A8EEB6FD459EDBD9EC5 /* GULSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULSwizzler.h; path = GoogleUtilities/MethodSwizzler/Private/GULSwizzler.h; sourceTree = ""; }; - BC2BC32A70E8C58B0118B80ECEC6814E /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - BC645D7FEAFBDDB3CC182386E1F7C1DD /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - BC87A07FA8F48763D1B39023D4A090A2 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + BBFDC01B47C7D7CB57EB920201BEED60 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + BC3FCA2B1D6D41344F2A0C272E3B4D20 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; BC93B4AE1BC99FC3489FB009672CEBC9 /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - BCFA168B7A3D1BAB291F58C67DD31281 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - BCFB483958DAE4EDD2E7B41B8DEA8156 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + BCBF32AEAD56F4E0229BF2A2E2364F0B /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BCC782EC08BC7B7BEF3BD6627544365F /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + BCD9B3C74A07ADCDDB9F35EDF1925ADC /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; + BD04F34F2A6E1321E7A188FC752BC60F /* react-native-document-picker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-document-picker-prefix.pch"; sourceTree = ""; }; + BD13A10BFA7BFDDD63FB5700F96716BD /* RNLocalize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNLocalize.m; path = ios/RNLocalize.m; sourceTree = ""; }; BD302C365DF1C82AA1668E93CD114EE4 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - BD4CD5A896E6109E00F737BD56115439 /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; - BDA95A6B351A0F0EBE2D89BC3D4645F9 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - BDCA46324A975C7FC1D9310BFB70F8FA /* libEXHaptics.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXHaptics.a; path = libEXHaptics.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BD5264BE26F55C0C4833A38CE62BD145 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BD8086E3175C79C750AE767B580441A6 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + BD9D375A0135A74B09F54D4C4E59DC47 /* EXCalendarRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCalendarRequester.h; path = EXPermissions/EXCalendarRequester.h; sourceTree = ""; }; BDE529E1EF6279CDF6CAD08BB2113F69 /* FIRAppAssociationRegistration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppAssociationRegistration.h; path = Firebase/Core/Private/FIRAppAssociationRegistration.h; sourceTree = ""; }; + BE32583B7DF9A30FBD68F6C400F9F53E /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.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 = ""; }; - BE66EBB9341C756D85769740C62D4745 /* EXFileSystemLocalFileHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystemLocalFileHandler.m; path = EXFileSystem/EXFileSystemLocalFileHandler.m; sourceTree = ""; }; - BEE3C73D929820699DFBA89E76AC29C3 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - BF0D6215F452EBB171927DB6516893D0 /* RNRealmPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRealmPath.h; path = ios/RNRealmPath.h; sourceTree = ""; }; - BF22632E02A2510E93437480FB39165C /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - BF961443ACA833C7A8B4F74EE8EF6D18 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + BF1835452E2118377BCCA1C34B7A49C4 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + BF2297D9D53DDC5B9D99C18CD8E5648C /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + BF3BD50928E3093164C316A547CA46DB /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; C028BB3DFE4D8493D4B9D24B9C3BFDDE /* FIRInstanceIDConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDConstants.m; path = Firebase/InstanceID/FIRInstanceIDConstants.m; sourceTree = ""; }; - C083E7788F15C4F76DADA48426983C65 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - C0DE0022AD1DC91E870FCC61A28189BE /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - C12999E244F2494C774841F5478FB2CE /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - C184B9272F88416466ECBFA3455F21A5 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - C1F2B38EAD7C5B9C5D033EBF142E50F9 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - C242F16BEB2FD8D92838B66BC4FA2A15 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - C248E9ADAAB7CDD4E129BF7D744F1490 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + C02EA8C8559D4B5DD6CEECF404F45D79 /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; + C0FE924D1BED4207FD3F2A59E744ED17 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + C162188584F8CEB99FCAAB730CE8F0A8 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + C168991D7A8F01ADAD5F3B8BA4C5A452 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + C1941A6FC5BEAA56D060171FD2B4CC1E /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + C21C9EB2986186295CA694F63BC1F577 /* react-native-realm-path.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-realm-path.xcconfig"; sourceTree = ""; }; C2549B1AC6EA7BD6F62C4E7941527711 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "nanopb-dummy.m"; sourceTree = ""; }; - C29DE0FD20E597194F63023366237A97 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - C2E6BCF8D456455BD75D2FD735C2B056 /* libEXConstants.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXConstants.a; path = libEXConstants.a; sourceTree = BUILT_PRODUCTS_DIR; }; + C328B06AD47D3292157838FE6D08EB05 /* UMAppDelegateWrapper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMAppDelegateWrapper.m; path = UMCore/UMAppDelegateWrapper.m; sourceTree = ""; }; + C33766D85CA2AF9422AB4FFACAD46A3D /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; C352EE6E151EDC8523F4F13C165280E6 /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - C3788D21BBB311D01466980579177A4C /* RNDocumentPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDocumentPicker.m; path = ios/RNDocumentPicker/RNDocumentPicker.m; sourceTree = ""; }; - C38D77A4BC32DAC643556E89EC139AD6 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - C3A7B516D537AF85124336CF8F9DA990 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - C3AD7BA5C163241E1E65364D26072824 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + C399CD7AF462BB9E46F1FE13EB8D7C09 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + C3B2B7336B5E8CFF97C8B61BEC96B11D /* 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; }; C3D903C6F31578BB1496E10CC7660C28 /* FIRInstanceIDCheckinPreferences.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinPreferences.h; path = Firebase/InstanceID/FIRInstanceIDCheckinPreferences.h; sourceTree = ""; }; - C3E201D7D0C0BAAFE35C46A6AEBC2873 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - C4062FEB153BD14C0A05654C630FEFE4 /* UMModuleRegistryAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryAdapter.h; sourceTree = ""; }; - C45AAF02E1EA7B247872B2079B47B969 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - C4CC8AB97350E59F67EB7DA517E8C908 /* 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; }; - C4CFC4C94B4768CD357C6D07640A6DD4 /* EXCameraRollRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXCameraRollRequester.m; path = EXPermissions/EXCameraRollRequester.m; sourceTree = ""; }; - C4D3D2C6049772A96AA81EDCFF2EA170 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - C541176C1A2500C5AF3259B71245AD3C /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; - C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFontInterface.xcconfig; sourceTree = ""; }; - C634F322B5B1194698FD4B9E675776D2 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - C64056D32F066C90251D8F1E56AB1B12 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - C67383D0AF70F2E2A7BB47E5A88BE66C /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - C69AD05A88E25AB493B5776520545AEE /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXFileSystem.xcconfig; sourceTree = ""; }; - C6D6727FB427F2F11F0E655687F52C70 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - C7000BCE93F98265875ECD1F406342B7 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + C3E89A2F9DA30827F2E01756427873B2 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + C3F1E63983363B0BAC42BBBF870EE017 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + C475743AA465FDC29102D9BD778DF2CC /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + C4BCA140EA89C7A3B6A9D3AE19E91403 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + C50BE01867132C962614DDB0C92D61A7 /* EXLocationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXLocationRequester.m; path = EXPermissions/EXLocationRequester.m; sourceTree = ""; }; + C53C2DC52112F074D3D1ECDFBEC4EB7E /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + C6373E2A10D1EB234C2F5732F3B624A4 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; C74F06CA3396E64F308DC487B0BD1373 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; - C7A9707CAFF01395793578FF8342D703 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - C7AB6A18322B8BF20E815C4D88D0C3F3 /* EXAudioRecordingPermissionRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXAudioRecordingPermissionRequester.m; path = EXPermissions/EXAudioRecordingPermissionRequester.m; sourceTree = ""; }; - C7BA9EA63C543F7EEE456E0535D2E0BE /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + C7C7C70B6AC20A3CE7B38DD3163FBED9 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + C82B2B32BF0A98BDDEB578ED5296F08A /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; C835B8E4E53C0605BC7F8BA70CCB892F /* FIRComponentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentType.h; path = Firebase/Core/Private/FIRComponentType.h; sourceTree = ""; }; - C85CB6ADE38F01EC5F5DB0556BD13636 /* EXWebBrowser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXWebBrowser.h; path = EXWebBrowser/EXWebBrowser.h; sourceTree = ""; }; - C9761CD65CD28E48AD431D2CADE56D77 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - C9967B2B3C2D49FEFE3D7B209540C2C5 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - C9CB7D304DD04F14ADDCF1FA7818AE48 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + C88D7AD2B2D2F25A96C353E47A342EB2 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + C89DF540C9877A359AB232816C9E994A /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + C910D9985940CB9DFA2AE6B44E15A6CF /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + C932F5702285DA164282616AC236A493 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + C99FB4EBDEB546AD84EA6861368FBBD2 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; + C9D64FAA19C31BF4A9FDB26B3DCB034D /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; C9E29F269A06919AA1FD1E466BCF137C /* GoogleIDFASupport.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GoogleIDFASupport.xcconfig; sourceTree = ""; }; - CA93B2399BF1EC6C34D29DF06D6D07B0 /* UMReactNativeAdapter.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMReactNativeAdapter.xcconfig; sourceTree = ""; }; - CA9D21CE6138DBD4F0BA8799DB6E6E16 /* UMUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMUtilities.m; path = UMCore/UMUtilities.m; sourceTree = ""; }; - CB1AFF08E59CD65DD957CFED13476C3D /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - CB2F572C6E5E8BE17CBF38A2A93AAC07 /* libreact-native-document-picker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-document-picker.a"; path = "libreact-native-document-picker.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - CB40424474E4450C43F1D567643247BF /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - CB74A35FB5355FB96FE7ABD109EB592C /* EXCameraRollRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraRollRequester.h; path = EXPermissions/EXCameraRollRequester.h; sourceTree = ""; }; + CA4DE7109603690584FE42B36E9DAF36 /* EXWebBrowser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXWebBrowser.m; path = EXWebBrowser/EXWebBrowser.m; sourceTree = ""; }; + CAD7790E8A894A789836396ACBC8E0A7 /* EXWebBrowser-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXWebBrowser-dummy.m"; sourceTree = ""; }; + CAFE45CBF3EFCF18F807545086BAA78C /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + CB143658AC6A5E5973EAA5FD265E45DD /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + CB5C37A73F3A4D961FF32EC2A9D090C2 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + CB86389B4550729E8FA647763D87603B /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; CB8724C8D4D696AD4C067B9326224A01 /* FIRInstanceIDUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDUtilities.h; path = Firebase/InstanceID/FIRInstanceIDUtilities.h; sourceTree = ""; }; CC02B9C0F1CEDC2E11D97AAFA570B60F /* FIRInstanceIDTokenStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDTokenStore.m; path = Firebase/InstanceID/FIRInstanceIDTokenStore.m; sourceTree = ""; }; + CC6F6A70DA3D14ED906AEA391484D7CF /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; + CC70ECFA3DFE4306859F0CCD4B6DA347 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; CC9DFE33B02231AD63A6E8D6916F6E68 /* FIRInstanceIDVersionUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDVersionUtilities.h; path = Firebase/InstanceID/FIRInstanceIDVersionUtilities.h; sourceTree = ""; }; - CCBFB9C2A9B0A4DE9787C48CBE5BD58B /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - CCDA0AF1FF28783170CE15AD9DE1BC48 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - CCEE4F7E63FB943730904F4833447B5D /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - CD43BC845F3312E0B19B9A512B7C1D8A /* UMFaceDetectorInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMFaceDetectorInterface.xcconfig; sourceTree = ""; }; - CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNLocalize.xcconfig; sourceTree = ""; }; - CD723597BC7E878A613B6CBC61CDB542 /* UMModuleRegistryConsumer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryConsumer.h; sourceTree = ""; }; + CCC5A01F52C10D3742860835CA4BA9B5 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + CD33524B116ABBF2E5ECB4E8B86B50D3 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; 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 = ""; }; + CDEDF50E898677402AD9FE41B47A34F9 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; + CDEEEA4F2BE34769E6BE9BA5F2B8AB56 /* libPods-ShareRocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-ShareRocketChatRN.a"; path = "libPods-ShareRocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + CE17FB3F5FC90B3C55DEB760D5BD8F6E /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; + CE274FB60C2EB484F164D4E6D279C723 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + CE2DA584BD5F8B8AFB04C4D45254768C /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + CE3E08CEE309E938F24C0F6D94A0E651 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + CE6E50ED3B600932EF66F81D489CE56E /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; CE8C6D11CF7E5AF31E2AE0306111F7F1 /* FIRInstanceIDConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDConstants.h; path = Firebase/InstanceID/FIRInstanceIDConstants.h; sourceTree = ""; }; CEC87000B140231CF19A20D1E01F05BE /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; - CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; - CEF911BCB17DBFF64FEB78BD39119AEE /* libEXAppLoaderProvider.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libEXAppLoaderProvider.a; path = libEXAppLoaderProvider.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CEE2CD49C3BD4F44F54B7F305BDDA25C /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + CF0CD3A58600E5998F546A5CF9EB1C8D /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; 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 = ""; }; - CF95CFB5C3C1133DF4665A8F42EC1A28 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - CFC198466623951BAB94A47122750183 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + CF56ED05321A0A3CFB66FF9AF356FD12 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + CFA3F93C73CD4C5563D8D364DA02C14E /* RNRealmPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNRealmPath.h; path = ios/RNRealmPath.h; sourceTree = ""; }; + CFF49C56E787C9F802A097E310272EA1 /* EXCameraPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXCameraPermissionRequester.h; path = EXPermissions/EXCameraPermissionRequester.h; sourceTree = ""; }; + D08A44EA9106CE90C42A828F4DDE3FF1 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; D08A5D686D77F6A0E33952D2AD2EA06C /* GPBCodedInputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBCodedInputStream.h; path = objectivec/GPBCodedInputStream.h; sourceTree = ""; }; - D0DDE1BE48EAD5679B70F9210270241E /* EXFileSystem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXFileSystem.m; path = EXFileSystem/EXFileSystem.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 = ""; }; + D16EE0A72B6050EF54BC4341ABB3D8F4 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; D19E2F79B0006C6B374700D05DB3D121 /* FirebaseInstanceID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FirebaseInstanceID-dummy.m"; sourceTree = ""; }; + D1AEFC87209E1CF339ADE2E0384F3A54 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; D1D409B472D80F2EB4C71563990FC72D /* pb_common.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = pb_common.h; sourceTree = ""; }; - D269DEE52BE9BD492980057C5570F31D /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - D281363BAC67A31CA84C0D3423EEE4B8 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; - D2AA48971D1167CDAFD4D0A3C655D819 /* EXDownloadDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXDownloadDelegate.m; path = EXFileSystem/EXDownloadDelegate.m; sourceTree = ""; }; - D3049A18CD3AC667DC38BCFEBD4E3A6C /* libProtobuf.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libProtobuf.a; path = libProtobuf.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D22BF7FEEF84631A11BFCFDD91EEAE9B /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; 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 = ""; }; + D340B73579DEDE88F0A3E6FCC8BAD2D2 /* UMReactNativeAdapter-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UMReactNativeAdapter-dummy.m"; 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 = ""; }; - D3A5C088BDC11C4DB7646EBEA842AAFF /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; D3BF9F21DC67AEF716304B2F5468563F /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; D3D856CFC6310D66AC7461C87AFE11D4 /* GPBDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBDescriptor.m; path = objectivec/GPBDescriptor.m; sourceTree = ""; }; D3D924AF6D72DD9606771699E3E1312A /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; D3DBBC941A09E991D876BEC8E8857BC8 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; D4640D3CB0EE847C77BD022CCBE88A4D /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - D4C9853A162E110003E63A2C77CDF6DA /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + D4A914BD27DE7BAC374B64D74891FE53 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; D4D269F2C9249EB3191A02DBF3D4391C /* FIRInstanceIDKeyPairUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDKeyPairUtilities.h; path = Firebase/InstanceID/FIRInstanceIDKeyPairUtilities.h; sourceTree = ""; }; - D5038BF877B1D4E908BB74DF9EEBA1EE /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - D5369D829EF70F3E2D3D170BC19D0E33 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D5405FEBAC392B770AD99B5AC7687E55 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - D554CD6CF79A41EF70F277E7D543A6DC /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - D5A7DAC61F948F8F9DC50843B518E87C /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - D5BA6F8CDE5B0E880EAB4A3D0521D6CC /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + D5A2D6C2FF895D2F3990D36989D0D941 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; D5C124EA6E1C40165CF089F6400F47EF /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - D5C5618AAECC011C23975CAD363216A5 /* UMViewManagerAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapter.h; sourceTree = ""; }; - D5CC35B6F1D11EFB6ED5235C649EED0B /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - D5CF3F1EF50886879A3A88AFF4009484 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; D5E3DCD7AD1C184DF5044B42DDE421E4 /* FIRComponentContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainer.h; path = Firebase/Core/Private/FIRComponentContainer.h; sourceTree = ""; }; - D5FB42623D8F6D266D15D896AF6F1D1F /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - D616628FAB61D0DF8B176C02C7EADA32 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - D62FDC62FCC67CE4C4C92219AD9A31DB /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + D61732064A4B0F507C5C1C6083235AA5 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; D64988EA80D874BD49F788383ACA30DC /* FIRInstanceIDCheckinStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDCheckinStore.h; path = Firebase/InstanceID/FIRInstanceIDCheckinStore.h; sourceTree = ""; }; + D66F10867009F10F54E8B0D9ED4960C9 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + D694638ECDE446160A11CE7C443A9F4B /* UMInternalModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMInternalModule.h; sourceTree = ""; }; + D694C5E25FF2B4DC0FA88E7ADAC8241C /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; + D6983C5B3C8B9FC1B086853B24466E56 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + D69BBC80246F5A3CDC15F03F2797FE3B /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; D69DDA1B5884AD21A1C167DA920F1D88 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - D6B036858181751E543BD79C7B405FF3 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; + D6B53C0418EF080C43CDBBDF078ADCC8 /* UMReactLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactLogHandler.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 = ""; }; - D76793AAE2366882DD0947572947FCA1 /* UMReactLogHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactLogHandler.m; sourceTree = ""; }; + D771D84A3DE58AABA383BDEA64884F49 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + D790D6C2551A2F2940BF6DA6D9066943 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; D7D23CD108787BFAAD18B7070B91E9C1 /* FIRAppInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRAppInternal.h; path = Firebase/Core/Private/FIRAppInternal.h; sourceTree = ""; }; - D8926E17B143BD65BE649ABE4A94AE24 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - D8A487015C737A75C4327A9FD8795843 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - D8C2F9C4A7E6A4EDFF1C29A3F7EE27BD /* UMFontProcessorInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFontProcessorInterface.h; path = UMFontInterface/UMFontProcessorInterface.h; sourceTree = ""; }; - D8DA9110313A76B2AC5618810D021D45 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + D86FE703525C109A753A41F11307E8A9 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; + D8B20EE7A04EAEB3BF871780B1811C06 /* libUMReactNativeAdapter.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libUMReactNativeAdapter.a; path = libUMReactNativeAdapter.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D904D474A2185D51082E92508520B717 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; D9154A2A59EE836C6B4C8ABE26903A93 /* FirebaseInstanceID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FirebaseInstanceID.xcconfig; sourceTree = ""; }; - D920F18086083E959BEDE1A89508580F /* EXRemindersRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXRemindersRequester.h; path = EXPermissions/EXRemindersRequester.h; sourceTree = ""; }; - D944AF06DC39B934D33D00CA4330AA9B /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - D9C1466DA1D6A511BC82DF6DBC8A90C5 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; + D952C17F373424C7EB20A25B8F0816DC /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + D956A2DB8F3191461E2E03D39F968421 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + D99FFB840E2908C2783BBDC2A24B95B3 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + D9BBDFDE5F92E22E277330595C690321 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; DA25CB04EA64550643955E87AD36DBB1 /* FIROptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIROptions.h; path = Firebase/Core/Public/FIROptions.h; sourceTree = ""; }; - DA354997F8B268C34524FA4EBE1EE915 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - DA364DC8821E6F2F3525D9A1AD78D002 /* UMEventEmitterService.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMEventEmitterService.h; sourceTree = ""; }; - DA50D6E0F3C463849AF3CD3B8CC5A56F /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - DAA030E3F4936AA5994DE4196D91D233 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - DB50905479B83DD824B725CC00A8EE3B /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - DBE108DDDBE372FA6EE8746B16DD0713 /* EXConstants-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXConstants-prefix.pch"; sourceTree = ""; }; - DC01493F439984AB671E13BA523D2B40 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - DC21D94EE3031E2045C0C0890B2F1506 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; - DC96135AC6C0009BC8F36D80DF7A35B7 /* EXAppLoaderProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAppLoaderProvider.h; path = EXAppLoaderProvider/EXAppLoaderProvider.h; sourceTree = ""; }; - DCBB427CB227193DA6236812D3D8A754 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + DA2A7186945F649F67E3BBB2E5FEEA76 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + DB22EFD9AF1D4824E4218D5BDA71624E /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + DB422DF51B865432C5A40FC13A8F08E7 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + DB8896936FC90153AC5C4A2CCFAC1073 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + DBC26C1CDA31F58543B77AAA6B1C2280 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + DBC7C1FB496BADAF83466B5345AA83E6 /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + DC1D9C41BE0D6642A4C77DA02452588E /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + DC532CF9AF7C56DBC1EBADEC7782AD60 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; DCC7600BC172CA9427C27FD82BF17552 /* GULReachabilityMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULReachabilityMessageCode.h; path = GoogleUtilities/Reachability/Private/GULReachabilityMessageCode.h; sourceTree = ""; }; - DCF71DE19AC2D44EDF9D409B80BF4E8D /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - DD54DDEA8CBF5403C7237C3E351EAAFB /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - DEB63BB149F828635F4B61AB9C206E4B /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - DEC93D0837A9EACE50D36AB42ABA00EE /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - DF278BF9B2BD2A98B410B6211E2C0AB2 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - DF3CB5219994521549C3C9F959AC67E0 /* EXPermissions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXPermissions.h; path = EXPermissions/EXPermissions.h; sourceTree = ""; }; - DF47297C4313E3953C87E3E78635D49E /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + DD2B0ABEBD3A4EF916F144E8899B1E9C /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + DD7A06453E2EB96C64A69660E62A35DD /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + DE5587953C9FA2FB8B884FAAAC0F6159 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + DEA1327D6CB319EBBF1F99481FA9AEAE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + DEF4FA0819A3CBA766DA5DAE47770994 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + DF55BF2F017EC2EEBD923E93BC4127AA /* EXFileSystem.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXFileSystem.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DFB3B3A22A1D883E021456672D098678 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; E0C49F12A12309D11B852442959A76BB /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - E10B34D1A2E61BEC228AE0A659F3CABB /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - E17B6543B311CAFA8804134B127F61B4 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - E2130431BC79C2529F9B7D997EA45C78 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - E24FCCDAE287E29E82358408CA3C2D37 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - E279D903900E6598EFE62B1DE65A8AF0 /* UMTaskManagerInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMTaskManagerInterface.h; path = UMTaskManagerInterface/UMTaskManagerInterface.h; sourceTree = ""; }; - E30033587DC12B1D881646BEC45EDF9E /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; + E11CCC93DDC4AF6AE3FD7CBD6045A700 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + E14EEA84BBEC43A368F77E606BE69C10 /* UMConstantsInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMConstantsInterface.h; path = UMConstantsInterface/UMConstantsInterface.h; sourceTree = ""; }; + E19CDE63BE4733D11802A487B94A5C92 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + E1E7996E9754942E03E4F50F7DE6B44D /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; + E1F8D5C95A535BECEDD520356F1AC403 /* UMSingletonModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMSingletonModule.m; path = UMCore/UMSingletonModule.m; sourceTree = ""; }; + E200BFF0D128DCBB9EF3A9CF33EB6ED4 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + E305FD6D8CDA02A06B6BA1BC056EEF59 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + E308C024484C63E58C4FDC60AE57CE0C /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.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 = ""; }; - E39027A4C027F40F932C0B3B372FF435 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - E4796E70EB1654C669BDB192982CACE2 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; + E33F4F829EB8318A474F83BA66505C2F /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + E496537E146839156B21FC66BA315F5E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; E4C48284CABF83F748FB75471EE6008D /* FIROptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIROptions.m; path = Firebase/Core/FIROptions.m; sourceTree = ""; }; - E523F08DDF628983B8080538442746D3 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - E5432881AEBE5FB0661DAC3DDEF45791 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + E4DF03EB88D5E0A8E8346E61DC7EDF04 /* UMCore.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMCore.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + E4E323CE9FBD0AB4B6EA5F2261094124 /* EXUserNotificationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXUserNotificationRequester.h; path = EXPermissions/EXUserNotificationRequester.h; sourceTree = ""; }; + E55CA6DF1E6911C02FDDE69AEC8ACFB8 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; E587B3F2F5ACE664165F9212BAC58A0B /* FIRInstanceIDCheckinService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDCheckinService.m; path = Firebase/InstanceID/FIRInstanceIDCheckinService.m; sourceTree = ""; }; - E680598082C2589742298F53D35A3B38 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - E686419BE49164D82939A97379EBCB93 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - E6C88B62D410B42E3450055C1E5F3A23 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; - E6D1D60641E2AA793C28DF28387CB301 /* RNLocalize-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNLocalize-dummy.m"; sourceTree = ""; }; - E6E593B2F2AEE6DFE4D0610A1738DB8D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E70EDE8E5C9FFEB42682E1C0370C5D02 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - E71BE6475BF9C92E753E8D5D991332C7 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - E786A6183AA3E8AD0FA61A82EAF88AD4 /* UMReactNativeEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMReactNativeEventEmitter.m; sourceTree = ""; }; - E7CA4B021924C03E3DD9695981FE8001 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + E5D819E66F5445E3A289D683321CC983 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + E671EEA96299221035D42FE7A66C663B /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + E68E370505536340F7398315CFF5E1B1 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + E74EB7EEFACEDA355A0CDF05EF8D9FCE /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + E7A6C2EFC5E0831010052E25B8EBE262 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + E7B09E4E364A85B47226F225E5706AA7 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; E7D881ED2B5743223827914D984E15E1 /* GTMSessionFetcherLogging.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GTMSessionFetcherLogging.m; path = Source/GTMSessionFetcherLogging.m; sourceTree = ""; }; E7EBE525A09050866014CB02AF5B19BB /* GPBRootObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject.h; path = objectivec/GPBRootObject.h; sourceTree = ""; }; - E7F0058442084B5BFB38165037D8B848 /* EXFileSystemLocalFileHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystemLocalFileHandler.h; path = EXFileSystem/EXFileSystemLocalFileHandler.h; sourceTree = ""; }; E80614B9501CBE2DC0DFD0CB76C51905 /* GPBMessage_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBMessage_PackagePrivate.h; path = objectivec/GPBMessage_PackagePrivate.h; sourceTree = ""; }; - E81397F2569E875C452758A4E7315E13 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - E82EBDC8A490B30236C3D15AB2331BA1 /* EXUserNotificationRequester.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXUserNotificationRequester.m; path = EXPermissions/EXUserNotificationRequester.m; sourceTree = ""; }; - E8911EE6854F117C3D9F61D562E6E66B /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; + E81605AE12AB3C6ED32EC2CA47574EA2 /* EXConstantsService.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstantsService.m; path = EXConstants/EXConstantsService.m; sourceTree = ""; }; + E8368B943061A344453110026B8C881F /* UMTaskManagerInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMTaskManagerInterface.xcconfig; sourceTree = ""; }; + E838BC04B95A580DA7869C6FFD8489C0 /* EXFileSystem-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXFileSystem-prefix.pch"; 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 = ""; }; - E928C14C9CA406B961ECB44E8B747C57 /* react-native-document-picker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-document-picker-dummy.m"; sourceTree = ""; }; - E98EAEC6C9E8BE7CEAA1A7C5AC870A81 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; E99B0D64B717D3685A2D48961E286C54 /* GULAppDelegateSwizzler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULAppDelegateSwizzler.h; path = GoogleUtilities/AppDelegateSwizzler/Private/GULAppDelegateSwizzler.h; sourceTree = ""; }; - EA2854C43CBDF62983B30CB07AFFDA65 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + E9A4772BE7728E05602AA8EBDAABA405 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; + E9D868AB05F6B945839951F8E957416C /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; EA452AF7C2948DFAEDF5BF8E102BDAA3 /* FIRInstanceIDTokenOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenOperation.h; sourceTree = ""; }; - EA87488CE220919948AC09172D36AE5A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; - EAEAD074F444D3A0470FD94B5DECA4BA /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - EAEB8B7D74C586229A49D42A0E320D19 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + EA5E8F13087811F854BCCD2FD0963A8C /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; + EA9539992D00C21175CCFE91ADDAF15C /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; EB054FF8A5D97A01475935D8C8EF580E /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; - EB42551B3B22F5EBE62EBA642F5D8121 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; EB42AB4A769B8206971D52BD7228724B /* FIRComponentContainerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponentContainerInternal.h; path = Firebase/Core/Private/FIRComponentContainerInternal.h; sourceTree = ""; }; EB42C933792B47AC97EF02831256A945 /* Api.pbobjc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Api.pbobjc.h; path = objectivec/google/protobuf/Api.pbobjc.h; sourceTree = ""; }; EB463BA7EB74852828A7F95F2E718754 /* Protobuf-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Protobuf-prefix.pch"; sourceTree = ""; }; + EB564F0DB3C9367ECB2D38DBEA788314 /* UMModuleRegistryDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMModuleRegistryDelegate.h; sourceTree = ""; }; EB6981EF8981D724C17B40BCE18F4DF1 /* GULNetworkMessageCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkMessageCode.h; path = GoogleUtilities/Network/Private/GULNetworkMessageCode.h; sourceTree = ""; }; + EBD50F4A8364BF447D268C0A4A530C83 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; EBE07153C75AA5C1C38348F1B3A27364 /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - EC2269E126D621AB1E66CF1DB22D6E7A /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - EC71B3E59CBBE31FCF280ADCA8C78635 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - EC7A2943F3A4FE81ABCE3C9BA79596DB /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - EC99704FED67D4EE92F9886C9515F602 /* UMReactNativeAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMReactNativeAdapter.h; sourceTree = ""; }; + EC0A89A3D764886A21C19501366A66EF /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + EC407B52833A65107E0305EBE14FB09F /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; ECAA1BE70470727702FE925831A02A0D /* FIRInstanceIDAPNSInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDAPNSInfo.m; path = Firebase/InstanceID/FIRInstanceIDAPNSInfo.m; sourceTree = ""; }; - ECBDF16A20F05203CC4DE3B15C23AF93 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; ECDE53F648C58F537F5674A4108DEB3E /* GPBWireFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWireFormat.m; path = objectivec/GPBWireFormat.m; sourceTree = ""; }; - ECEC42AABDB60647DFC254D0D36C4840 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + ECFFFF522D8931F2F6F874F6CDAEA26B /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + ED25FDEED89D33AC4377D9AEB66F7CAC /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; ED3F83DE07B36FFE21FC3707F2802DDF /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - ED42783DB5DA2933B2315DBF1FC4562C /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - ED546660CBC80ADC35EC448936703263 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + ED5EF83ADD18B845E6A6B6841EECCD21 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + ED6504C328BF723BD73F5E7CB2384503 /* EXAppRecordInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EXAppRecordInterface.h; sourceTree = ""; }; ED6B7E5A61EF834B72AD4268D2B5F4D1 /* FIRConfiguration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRConfiguration.h; path = Firebase/Core/Public/FIRConfiguration.h; sourceTree = ""; }; + ED77A0684F5F8B68C3335468CC219DA4 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + ED7F1D3599134F13C4D1D92E4A4E4F20 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + ED7F4E2DCAFBBE893DC1BBEC06DB4AFB /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + EDA106EB9B24F18AB2B57E8D96A3A54A /* UMFontInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFontInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EDAD05B23801E11022A8FDC250132DC0 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + EDDE3A9D27D5668A18E7CD5CEBAA5C2C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + EDF161986A4EE7FD43D0BEC090C9DD6D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; EE0E0D2257A57CE5396CC60C20291BA9 /* GULNetworkURLSession.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkURLSession.h; path = GoogleUtilities/Network/Private/GULNetworkURLSession.h; sourceTree = ""; }; - EEAE6C9E3B10AAC75054F3CDFAFCEEB0 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - EECB4F3A81F1FB4F694A03F1EDE10895 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - EF10AB902332DFA0E488803B92804A4E /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - EF1C56D47C620750CB08FBB28D7188B0 /* EXFileSystem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXFileSystem.h; path = EXFileSystem/EXFileSystem.h; sourceTree = ""; }; - EF4BDF5F4EADF81300A71703E6CE8DC6 /* EXHapticsModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXHapticsModule.m; path = EXHaptics/EXHapticsModule.m; sourceTree = ""; }; - EF9E1BB641DD0FAA0F6A6BA00FEA5346 /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - EFF9593F541CBE9541A7DA5E2123D221 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EFFF9FF9CECA6A3664C1E116308C8E47 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + EE45CBED6FB1E33B5B758979479A6154 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + EE7D84B9547E65AAAFFFC99997E8DD6C /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + EF4F14EBDB06885C964F9AC0D13AD2B1 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; + EF55E77FBB890620897539EE8E410239 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + EF6217D63DF4997BDF877711D51D71B2 /* EXConstants.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = EXConstants.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EF8A8DC49CA3E5D37221D6F3804E2108 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + EF90FC5992D5E7F14FF1D78CEA0948DF /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; + EFF6CB0C40451CEA24C8867BB565D25D /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + F04FA91948976F37B5EA76A6B9FEE5BF /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; F070DB8778F84DDDEFFBD0B665025401 /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - F0F2FAE6500D04ED6F1312A01D565447 /* EXConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXConstants.h; path = EXConstants/EXConstants.h; sourceTree = ""; }; - F101F26D6BABEF2FA1A0AB350F225A68 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - F1322D928C8D0BAF91B3BD4E388F637F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F13A1475E182AC393417BA122E41795B /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + F0EFC0D1FE8CC33786ABC404C7A930BF /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; F13C9827FFA6E7331D6E301FE4773240 /* FIRComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRComponent.h; path = Firebase/Core/Private/FIRComponent.h; sourceTree = ""; }; + F1A79ADA8F23B66F1213A7CDE897C09A /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + F1BD8F851B06E7A5F966E760A059E987 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; + F1EB6F9DAF3815628A2A7501E0CEA18D /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + F2380EE9D5D25BBA82FD4246691ABBFB /* YGMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMarker.h; path = yoga/YGMarker.h; sourceTree = ""; }; F253D6BB700AA13956A26AA399F054C7 /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - F2C876D08005460E640E6D01B6D36D7F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F27F6172C9331DB1CF37B9FB68A27FF1 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + F2AA1B74D0048866C46DA82422165773 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + F2C5E64DF0AD6057CA2C8D1C3005F580 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; F2D27DF69275FBA4A8A9B94D0AE1274C /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - F2FB2F97B1B6324FC7F47C781F5301F2 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - F32735F3F9AEE7E85996C828D31C7B09 /* UMDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMDefines.h; path = UMCore/UMDefines.h; sourceTree = ""; }; - F370DDB86CC7FA6C7F679D146C8175AD /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; F3BCBFAD374F9A20E01958A9D04855DC /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; F3FE69CB45C28524B38B3FC95BAC3A6F /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; 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 = ""; }; + F43D364438EFBCA83A230500836E8291 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + F4423B717E9E41A193EF5066EDDF3598 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.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 = ""; }; - F4896AA3946A7938DBBB7FE360514320 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + F48CBC11B22925A278C6258D9AF707FF /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; F4A3E35C402DA8FA4C4B62F2269FFC1C /* FIRInstanceIDStringEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRInstanceIDStringEncoding.m; path = Firebase/InstanceID/FIRInstanceIDStringEncoding.m; sourceTree = ""; }; - F4AA899FDC53A68D4D167D763E3098FE /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - F4C480E1EF4112F2B28FCBE872E65262 /* libGTMSessionFetcher.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libGTMSessionFetcher.a; path = libGTMSessionFetcher.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F4CC5D457DF57726C2D0A610CE2458E1 /* UMLogHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMLogHandler.h; sourceTree = ""; }; - F4ED9DFA4844C96F7BC6E6BD607C3C16 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - F5089D3701C2B26D1C38E9B2946A958B /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + F4D3C90F5DFD062A69A6E7F23DF92009 /* UMViewManagerAdapterClassesRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMViewManagerAdapterClassesRegistry.h; sourceTree = ""; }; + F4E2BAD8C1A25F5DDE6D9D63C99D3690 /* EXPermissions-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "EXPermissions-dummy.m"; sourceTree = ""; }; + F510D03F16C8024C3EC626F26F42271D /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; F5242D0FBCBD7A1D99CEB88585EA682A /* GULNetworkConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GULNetworkConstants.h; path = GoogleUtilities/Network/Private/GULNetworkConstants.h; sourceTree = ""; }; + F55CED461FD33013B5620FBE382C5CC5 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; F5C9D78CFBB7872339127A65C944A51D /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - F615CC887D9EAF7CAA992A33E04C75A3 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - F6334B5F131CDD267C933341A87CF382 /* EXConstants.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXConstants.xcconfig; sourceTree = ""; }; - F638FE4C03C9A3EE084643A992859882 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - F6AA524138805DA430C724041E4742E8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - F6E0C1BD080830E926F2C82F519089CE /* UMLogManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UMLogManager.m; sourceTree = ""; }; - F78898A13A5EB6B8F912D6AFE173D928 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - F7B2AB6DCABD12BA606D58C2E2683864 /* EXAudioRecordingPermissionRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXAudioRecordingPermissionRequester.h; path = EXPermissions/EXAudioRecordingPermissionRequester.h; sourceTree = ""; }; - F7F6EC030F63CDFB6FACCF29A7D9AFBC /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + F70D4C7ABB866BF3CFCEC46DED3D7979 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; F861D6FCD688186A198304576ADBC85F /* FIRApp.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FIRApp.m; path = Firebase/Core/FIRApp.m; sourceTree = ""; }; + F88D1B4F236C157D5A6E33684E6FA984 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; F89E875D985FE68C85B60F895874D56F /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - F8AD3679AA01C28391BB0E4EEFC99E0C /* UMFaceDetectorInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMFaceDetectorInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F8DA1AEA97F03FD29E7E2DF4DB7EC28B /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; + F8FAC1C7A904593FD24187BB32263C7A /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; F92900861A1536FC2C06F634018F7F6A /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - F96AC914BC20FD8AFD2A10879BEFF079 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; F96F86515F70B8C017E7FC355A2B7CDB /* FirebaseCoreDiagnostics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = FirebaseCoreDiagnostics.framework; path = Frameworks/FirebaseCoreDiagnostics.framework; sourceTree = ""; }; - F9C214A40C36EAAD0F5701D8022693FA /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - FA46778D7C9968FAD1789A65BCE856C3 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + F98C555B1B1D2985AFA6F85BF6F35FEC /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + FA682C64DE217BC07006055C66C8E23D /* RNLocalize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNLocalize.h; path = ios/RNLocalize.h; sourceTree = ""; }; + FAB7E7FC8259AF74EDD04353887856B9 /* UMBarCodeScannerInterface.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UMBarCodeScannerInterface.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + FAE06984E33A459B73245A09CE0F0B54 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + FAF11A789ED046A5EC6B8309A5AA324B /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + FB23EA80DA28DE296F54F03C29EF63A2 /* EXConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXConstants.m; path = EXConstants/EXConstants.m; sourceTree = ""; }; + FB3CC529B3CD124790706FD5A5868B2C /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + FB6DA20B67261BE9C9F550A62286D7DA /* libFirebaseCore.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFirebaseCore.a; path = libFirebaseCore.a; sourceTree = BUILT_PRODUCTS_DIR; }; FB8F83C766BDABDF47DC628A400C9E8D /* GPBRootObject_PackagePrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBRootObject_PackagePrivate.h; path = objectivec/GPBRootObject_PackagePrivate.h; sourceTree = ""; }; - FB956F4A9C08F6F93A75AE1ABC309ABB /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UMCameraInterface.xcconfig; sourceTree = ""; }; - FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - FC1C996686A1F90C85CD90B283C45718 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - FC4CB5AD065A832D25A342A4F4A29D36 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; + FC0ECB3607B22F1B0AA3CDF015FD4333 /* UMFileSystemInterface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UMFileSystemInterface.h; path = UMFileSystemInterface/UMFileSystemInterface.h; 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 = ""; }; - FCBE4D1BC80B2F6BEB45098E409D8860 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - FCD0244F066FB140E7E71129A74233F8 /* EXSystemBrightnessRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXSystemBrightnessRequester.h; path = EXPermissions/EXSystemBrightnessRequester.h; sourceTree = ""; }; - FD08E8618ED304A352AB5216DECCAE0D /* EXAppLoaderProvider-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXAppLoaderProvider-prefix.pch"; sourceTree = ""; }; + FCCB4B19115C1E28D677C69971D5E205 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; FD1FC6E5021013DE598D3FECD7E43103 /* GPBWellKnownTypes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBWellKnownTypes.m; path = objectivec/GPBWellKnownTypes.m; sourceTree = ""; }; - FD4F67FD4DC2D7E5C9CDD5A175081EFC /* EXLocationRequester.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXLocationRequester.h; path = EXPermissions/EXLocationRequester.h; sourceTree = ""; }; - FD714FE59015A6D32C235D297DDE6207 /* UMViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UMViewManager.m; path = UMCore/UMViewManager.m; sourceTree = ""; }; + FDD0F2EC845F13D871D34897081DB260 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + FDDE31A959AFFAFC27B1F066CE624198 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; FE0AD6A2B458F3446F9F710454023AD2 /* GPBRootObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GPBRootObject.m; path = objectivec/GPBRootObject.m; sourceTree = ""; }; - FE183C24C287338F5BAF7AD026D94B60 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + FE0CB1E9A3F32780017E341B3AAB6126 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; FE503EE8D17258B72EFA6478A1EE7BB2 /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; FE56DCBF8D844549273B298E9EF13AC6 /* GPBProtocolBuffers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GPBProtocolBuffers.h; path = objectivec/GPBProtocolBuffers.h; sourceTree = ""; }; - FE9149882F1AA0961340D16718BBD529 /* EXPermissions.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXPermissions.xcconfig; sourceTree = ""; }; - FE92E48E5B04DEFDBF3F9D1DE2D69469 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; - FE9808B896A721E209136FB2F00D6A7E /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; - FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = EXWebBrowser.xcconfig; sourceTree = ""; }; + FE6722C345411A079BA93E8063ADBB4E /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + FE913A7CD2966C11EEE6EFE508FBD973 /* UMNativeModulesProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UMNativeModulesProxy.h; sourceTree = ""; }; + FE9DD4CC964466464B6F7653BC01D0E5 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + FECD5C21001D8D02CD289C5397A13742 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; + FEF7E5FF62FBD0CBFAEFBBECFF9F9B0E /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + FF21DDD9EF9B94CD2AC3909D60F1DE6C /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; FF53A904DED58A3B128E71C3BB3400C2 /* GULAppDelegateSwizzler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GULAppDelegateSwizzler.m; path = GoogleUtilities/AppDelegateSwizzler/GULAppDelegateSwizzler.m; sourceTree = ""; }; - FF65769C4516554E9EAFE1DE4843AB65 /* EXPermissions-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "EXPermissions-prefix.pch"; sourceTree = ""; }; - FF989EAE5950A3B7029120BF819FC3D0 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - FFC4FF72B18B537D921C182B9AE258C8 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; FFFA6C4730580F08F48B1B15E8603BB6 /* FIRInstanceIDTokenFetchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FIRInstanceIDTokenFetchOperation.h; path = Firebase/InstanceID/FIRInstanceIDTokenFetchOperation.h; sourceTree = ""; }; /* End PBXFileReference section */ @@ -2795,7 +2821,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 51165801A7AF675E12E317A5B86C75F9 /* Frameworks */ = { + 5C05DCAB8592E6572DA437E35C900900 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -2844,6 +2870,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 906D946E5B7154DDB764288FC5516B6C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; 9A22F16A5E9D7F5EA2A5F36905D8D1DD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -2966,10 +2999,24 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0056AB3FABE2E0650C6BCE190DE87F72 /* Pod */ = { + 000A4BA31F832A4EB668DA54200A6412 /* RNDeviceInfo */ = { + isa = PBXGroup; + children = ( + FF21DDD9EF9B94CD2AC3909D60F1DE6C /* DeviceUID.h */, + F98C555B1B1D2985AFA6F85BF6F35FEC /* DeviceUID.m */, + 4400133C07DE7744AE95239FEEDC1451 /* RNDeviceInfo.h */, + 4E1139362F8D95462E8E79984493C7E1 /* RNDeviceInfo.m */, + F2BE8BABB02DA99169371EB261AA0758 /* Pod */, + A1C5F47D7E884E036F8BED86BB4EEF14 /* Support Files */, + ); + name = RNDeviceInfo; + path = "../../node_modules/react-native-device-info"; + sourceTree = ""; + }; + 02AD8901E20A973BC1833FDCD84B5F33 /* Pod */ = { isa = PBXGroup; children = ( - 6F1C772A621F52EF8AC0C72A67330354 /* UMTaskManagerInterface.podspec */, + EF6217D63DF4997BDF877711D51D71B2 /* EXConstants.podspec */, ); name = Pod; sourceTree = ""; @@ -2981,6 +3028,27 @@ name = decode; sourceTree = ""; }; + 04366EBC475203AD5EEE17977DF19492 /* Support Files */ = { + isa = PBXGroup; + children = ( + 9A86DBD22BACC7289A71AAFD55351FF1 /* UMFileSystemInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + sourceTree = ""; + }; + 05902DBEE17888A0649F75E439036700 /* rn-extensions-share */ = { + isa = PBXGroup; + children = ( + 5907C4386D97EB3E15F0B0B994F61B0F /* ReactNativeShareExtension.h */, + 0234855FEA2E6D501D22206A277BF76E /* ReactNativeShareExtension.m */, + 2CC15AAE7644C18C39C95FE1A866C618 /* Pod */, + 07DF9BC1162ADDAE79E8D91F6F97E90F /* Support Files */, + ); + name = "rn-extensions-share"; + path = "../../node_modules/rn-extensions-share"; + sourceTree = ""; + }; 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */ = { isa = PBXGroup; children = ( @@ -2990,42 +3058,37 @@ path = "../Target Support Files/GoogleIDFASupport"; sourceTree = ""; }; - 060FB9DA233C5414528BFD668CC6D21B /* Pod */ = { + 071410E9EF37583D4345D76EE43898D7 /* Support Files */ = { isa = PBXGroup; children = ( - 1A342D6CA0E0B6DBBB400AB956F8C3CE /* UMConstantsInterface.podspec */, + C21C9EB2986186295CA694F63BC1F577 /* react-native-realm-path.xcconfig */, + 8DC23CD178D303363B1318CEFF5092F6 /* react-native-realm-path-dummy.m */, + 7865641C4439823A8779EF2DE5E37517 /* react-native-realm-path-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-realm-path"; sourceTree = ""; }; - 0633161BA9AB788A778C7E05B87193DB /* Pod */ = { + 07DF9BC1162ADDAE79E8D91F6F97E90F /* Support Files */ = { isa = PBXGroup; children = ( - 5800AED6AC59723F6BB5DE3ADA24D86A /* EXPermissions.podspec */, + 0D4415440EB5DB10110BA5BA29F02BBE /* rn-extensions-share.xcconfig */, + 7FA23A71CE1BCA68915B41A32887485D /* rn-extensions-share-dummy.m */, + 94E5E763087CD40423D7325E87CAFDCF /* rn-extensions-share-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/rn-extensions-share"; sourceTree = ""; }; - 098178F3362E7B21FA308EED1FDD441F /* React */ = { + 0955E3247803F9FFEEB602DBABC4E188 /* Support Files */ = { isa = PBXGroup; children = ( - 493D0D47E7DBC9AECCEF30AA3D7B3DB3 /* Core */, - 65F7A9589DDF3FF7AAA46696E23E681D /* fishhook */, - 84D1EC32AFF6CB750055338C60D16E61 /* Pod */, - E8E8565407739129590521B1A421C4F6 /* RCTActionSheet */, - D0EBC53065BCC20D5A814EAE43158E76 /* RCTAnimation */, - 78A9C31FF448E481192D15CB2D1EA49C /* RCTBlob */, - 85995E69A09E200E81FA2640DBA3D49F /* RCTImage */, - 412FEC52042E2F378DF20BB8E7C200F2 /* RCTLinkingIOS */, - 42F9DCAA038063C06E31A102C90EDA16 /* RCTNetwork */, - CA8287CD74F1DA185E01D170FD6D4975 /* RCTSettings */, - B66FE2D9D5D56986EF5EED0979CFF82D /* RCTText */, - 25EAC9DF18E27438982011DDC5A883CA /* RCTVibration */, - 416345419E7863560CE8D7FB0786291C /* RCTWebSocket */, - BDDCC3D73E8F01DE84567069080D11FB /* Support Files */, + AEE6F66091233C3574C07AD866C05CDA /* EXWebBrowser.xcconfig */, + CAD7790E8A894A789836396ACBC8E0A7 /* EXWebBrowser-dummy.m */, + 265189100A40D99B0679492ADB8F4B8B /* EXWebBrowser-prefix.pch */, ); - name = React; - path = "../../node_modules/react-native"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; sourceTree = ""; }; 0A7E0F530CEEA581B16197A5A636FC13 /* NSData+zlib */ = { @@ -3037,157 +3100,108 @@ name = "NSData+zlib"; sourceTree = ""; }; - 0B18FD8FF99FDC490F20C6C5F91113E2 /* UMConstantsInterface */ = { + 0B148B2EBF3CA1E2F72ABBD745E6554A /* Pod */ = { isa = PBXGroup; children = ( - B19A832152408DFE546CC2785BC7C0E9 /* UMConstantsInterface.h */, - 060FB9DA233C5414528BFD668CC6D21B /* Pod */, - 8C9BDB38E9BB836D32C340A4C1023E9E /* Support Files */, + 1F8DFA416DD1FDF4C2F9ABE583F63C8A /* UMSensorsInterface.podspec */, ); - name = UMConstantsInterface; - path = "../../node_modules/unimodules-constants-interface/ios"; + name = Pod; sourceTree = ""; }; - 0BBD05D4AF2024F9B2FFDEDEA7C816B1 /* UMImageLoaderInterface */ = { + 0B284B27DDFBEA8E95A4FF941C40CE07 /* Interfaces */ = { isa = PBXGroup; children = ( - 1764713FC3100BAF4A60A03AADC99E3A /* UMImageLoaderInterface.h */, - 61732052366C01AE2AD7D0405C4D9820 /* Pod */, - 62702C2AD6D5481E806F4CCCE5BE1DE1 /* Support Files */, + 05B565509009609D1961991C8ADC6B79 /* EXAppLoaderInterface.h */, + ED6504C328BF723BD73F5E7CB2384503 /* EXAppRecordInterface.h */, ); - name = UMImageLoaderInterface; - path = "../../node_modules/unimodules-image-loader-interface/ios"; - sourceTree = ""; - }; - 0DFDA18E3B59B2B158CD057D79830762 /* encode */ = { - isa = PBXGroup; - children = ( - ); - name = encode; + name = Interfaces; + path = EXAppLoaderProvider/Interfaces; sourceTree = ""; }; - 1236BC3FA18CAE87BFF0ED4ED0934871 /* FirebaseAnalytics */ = { + 0BA0C4E7EB027E509315007C9CAD2601 /* Pod */ = { isa = PBXGroup; children = ( - BE1169435555F8BB378D77074E239BD2 /* Frameworks */, - 7D97861288D65B04CFD2336E0071DF8D /* Support Files */, + AEB1559576B2BDD8B19692EBB9335A7B /* LICENSE */, + C3B2B7336B5E8CFF97C8B61BEC96B11D /* react-native-splash-screen.podspec */, + 197FA0F85349393D401AE651A5482BE3 /* README.md */, ); - name = FirebaseAnalytics; - path = FirebaseAnalytics; + name = Pod; sourceTree = ""; }; - 12A0356DED4D13A8ACB9C13E686B8463 /* Pod */ = { + 0BB1EA33CC6731755DAE1999C80D83E3 /* Support Files */ = { isa = PBXGroup; children = ( - 614DD65B6873751CF524AB61C31DC521 /* LICENSE */, - 939C463B19D94781AF90514C5875182F /* README.md */, - 79C0E7B6B62D12F73DCA5492EDF02096 /* RNImageCropPicker.podspec */, + D08A44EA9106CE90C42A828F4DDE3FF1 /* react-native-webview.xcconfig */, + 5C8C008075BC4CC3AA389BAAC9554E15 /* react-native-webview-dummy.m */, + 865E348806BBC2C469F71B70B10685F9 /* react-native-webview-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; sourceTree = ""; }; - 13F1A34C7197750A5941061AD6B2EB70 /* UMCameraInterface */ = { + 0DFDA18E3B59B2B158CD057D79830762 /* encode */ = { isa = PBXGroup; children = ( - 7FB6FEF6E9C65093F21494725704EF43 /* UMCameraInterface.h */, - F5AC219D2FCD1EA501A0F8A3803E0636 /* Pod */, - 53781992D22A710EA24D8DAB88AFD578 /* Support Files */, - ); - name = UMCameraInterface; - path = "../../node_modules/unimodules-camera-interface/ios"; - sourceTree = ""; - }; - 156F2031BD682F1D8516960ED6F43C86 /* EXPermissions */ = { - isa = PBXGroup; - children = ( - F7B2AB6DCABD12BA606D58C2E2683864 /* EXAudioRecordingPermissionRequester.h */, - C7AB6A18322B8BF20E815C4D88D0C3F3 /* EXAudioRecordingPermissionRequester.m */, - 831929E581515A1F83140528906C2E4D /* EXCalendarRequester.h */, - 626A07274D4EB6A940A6B2AF98F40A12 /* EXCalendarRequester.m */, - 7F2DF0B466309B5A279FBA1DC687B6B8 /* EXCameraPermissionRequester.h */, - 28507E4DF8A45DB17887372FAFC2467D /* EXCameraPermissionRequester.m */, - CB74A35FB5355FB96FE7ABD109EB592C /* EXCameraRollRequester.h */, - C4CFC4C94B4768CD357C6D07640A6DD4 /* EXCameraRollRequester.m */, - 8126B6469CB961532063EC12B48E0E40 /* EXContactsRequester.h */, - B9D4D551CADFCBE08BCDBCEE6BF55E70 /* EXContactsRequester.m */, - FD4F67FD4DC2D7E5C9CDD5A175081EFC /* EXLocationRequester.h */, - 2F7BA665B98DC5E312B0A27CF309B94E /* EXLocationRequester.m */, - DF3CB5219994521549C3C9F959AC67E0 /* EXPermissions.h */, - B438A1B35BDB2C17AED2E57973661B0B /* EXPermissions.m */, - B3ADED8F8DEFA1278C85FB3E95276401 /* EXReactNativeUserNotificationCenterProxy.h */, - A9D45039C4DA76049EBA7DE8211EE7C1 /* EXReactNativeUserNotificationCenterProxy.m */, - D920F18086083E959BEDE1A89508580F /* EXRemindersRequester.h */, - 5150A9358391484C756E8161910D3C18 /* EXRemindersRequester.m */, - 90DB96D3D50579807B2CF5979ACCD04C /* EXRemoteNotificationRequester.h */, - 4CAC3B2203776ADA84BCAE41FBE0379F /* EXRemoteNotificationRequester.m */, - FCD0244F066FB140E7E71129A74233F8 /* EXSystemBrightnessRequester.h */, - 8084D3241A42B62A15B74F8C533C2B59 /* EXSystemBrightnessRequester.m */, - 845309D152A4F00257529AA2AB7FB409 /* EXUserNotificationRequester.h */, - E82EBDC8A490B30236C3D15AB2331BA1 /* EXUserNotificationRequester.m */, - 0633161BA9AB788A778C7E05B87193DB /* Pod */, - CEB949F417EDD257837365D0995D69E7 /* Support Files */, ); - name = EXPermissions; - path = "../../node_modules/expo-permissions/ios"; + name = encode; sourceTree = ""; }; - 162034FB2417C91365D01E931B0F1931 /* UMPermissionsInterface */ = { + 0F521BEC3B2B3428C9E2FA5E99B00583 /* Pod */ = { isa = PBXGroup; children = ( - 6BB2A262F38170E8E7DCFD64388D952C /* UMPermissionsInterface.h */, - AE64DF9A4548F8784492704BAB97A910 /* UMUserNotificationCenterProxyInterface.h */, - A4DDA38DB29B95D5F4F6F8BF5171AF91 /* Pod */, - B7CB9BD5D292E1470CE452C1215D2996 /* Support Files */, + EDA106EB9B24F18AB2B57E8D96A3A54A /* UMFontInterface.podspec */, ); - name = UMPermissionsInterface; - path = "../../node_modules/unimodules-permissions-interface/ios"; + name = Pod; sourceTree = ""; }; - 1749EA678928E5272262EC889C6C4A5D /* EXWebBrowser */ = { + 11079311D0FE4E27FFE88851828FD68E /* SafeAreaView */ = { isa = PBXGroup; children = ( - C85CB6ADE38F01EC5F5DB0556BD13636 /* EXWebBrowser.h */, - A6F52032E24B113CC7408E54490FD8B1 /* EXWebBrowser.m */, - 907B1AA9C9A23B16A07F690E51D4B145 /* Pod */, - AE361E9A4AED25932BFC2C3A0897C497 /* Support Files */, + 20468C911C68E33DFD8136C18D3CD2DE /* RCTSafeAreaShadowView.h */, + B483B8451DA81080BB5E638BEA0692C3 /* RCTSafeAreaShadowView.m */, + CB5C37A73F3A4D961FF32EC2A9D090C2 /* RCTSafeAreaView.h */, + 38223AD675A4533DC26A88BD0C59CB99 /* RCTSafeAreaView.m */, + 94CB6BEE50E60CB745D3EB7396A9C9EF /* RCTSafeAreaViewLocalData.h */, + 9C97925196FB72F25C2B0E33715AFA84 /* RCTSafeAreaViewLocalData.m */, + F27F6172C9331DB1CF37B9FB68A27FF1 /* RCTSafeAreaViewManager.h */, + 52F60C67CF02A607C546DD6A91C9CD9F /* RCTSafeAreaViewManager.m */, ); - name = EXWebBrowser; - path = "../../node_modules/expo-web-browser/ios"; + name = SafeAreaView; + path = SafeAreaView; sourceTree = ""; }; - 1931CBCD0012949C6489C3390BE2C7CD /* Services */ = { + 1236BC3FA18CAE87BFF0ED4ED0934871 /* FirebaseAnalytics */ = { isa = PBXGroup; children = ( - 461925347A30AE6FAE3CD7B318D4600B /* UMReactFontManager.h */, - 8F8443BF9243EF19D3F65759F6816464 /* UMReactFontManager.m */, - 6BD770217FE1351E2C0E91F27F6BF098 /* UMReactLogHandler.h */, - D76793AAE2366882DD0947572947FCA1 /* UMReactLogHandler.m */, - EC99704FED67D4EE92F9886C9515F602 /* UMReactNativeAdapter.h */, - 1776896CFB2DB7D53F6870D097871B60 /* UMReactNativeAdapter.m */, - 8EB5F6DC65441C2F195024FFCD646DC2 /* UMReactNativeEventEmitter.h */, - E786A6183AA3E8AD0FA61A82EAF88AD4 /* UMReactNativeEventEmitter.m */, + BE1169435555F8BB378D77074E239BD2 /* Frameworks */, + 7D97861288D65B04CFD2336E0071DF8D /* Support Files */, ); - name = Services; - path = UMReactNativeAdapter/Services; + name = FirebaseAnalytics; + path = FirebaseAnalytics; sourceTree = ""; }; - 19CF214DE4DB403160C9256DE211A746 /* Services */ = { + 143CE66E54FDEE4537BC65F6B1EE2851 /* react-native-realm-path */ = { isa = PBXGroup; children = ( - 480C81E4CEDE746C6B881C6D572D92CE /* UMLogManager.h */, - F6E0C1BD080830E926F2C82F519089CE /* UMLogManager.m */, + CFA3F93C73CD4C5563D8D364DA02C14E /* RNRealmPath.h */, + 0A39CBA97D7DACE9DF0EB6890334A8A9 /* RNRealmPath.m */, + 926014325594C5710A89F3B8F6A6487A /* Pod */, + 071410E9EF37583D4345D76EE43898D7 /* Support Files */, ); - name = Services; - path = UMCore/Services; + name = "react-native-realm-path"; + path = "../../node_modules/react-native-realm-path"; sourceTree = ""; }; - 1A434263C054BEB5669E4D1ACB5EE187 /* Support Files */ = { + 18DAC32AD40F63C4520A65740602080B /* UMPermissionsInterface */ = { isa = PBXGroup; children = ( - 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */, + 5025F8862873EA2F5E91530992ECA631 /* UMPermissionsInterface.h */, + 1F4BB69F376CF13D997076F35CA76153 /* UMUserNotificationCenterProxyInterface.h */, + 90EF32D23F937BD17C39CC1682926714 /* Pod */, + FA1D218CD3EDC929D509F6915ED48FDD /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; + name = UMPermissionsInterface; + path = "../../node_modules/unimodules-permissions-interface/ios"; sourceTree = ""; }; 1ABDC0FAE3BBF85CF0DAACCB8AC673AA /* Core */ = { @@ -3225,6 +3239,15 @@ path = FirebaseABTesting; sourceTree = ""; }; + 1E60A4B023A56750C51BD45F3BC19FE6 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5B97B164E84A784D2495D17C80F8758C /* UMFontInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + sourceTree = ""; + }; 2141029150C2FA187180BCCCB97AC3C0 /* Folly */ = { isa = PBXGroup; children = ( @@ -3257,141 +3280,43 @@ name = Frameworks; sourceTree = ""; }; - 25A95FAE53C8AF8650D41F45973F39F7 /* Pod */ = { + 2456E38240EA05F2A1C06B5C4911D139 /* RCTAnimation */ = { isa = PBXGroup; children = ( - 46DFE42EE0D6F54E9FE6E8AB5C5272DE /* EXConstants.podspec */, + 161CBC379C74E1C7B1158D7F07D08C16 /* RCTAnimationUtils.h */, + 24ED74EC3B902FAA45F70972F2FCB099 /* RCTAnimationUtils.m */, + EDAD05B23801E11022A8FDC250132DC0 /* RCTNativeAnimatedModule.h */, + F1BD8F851B06E7A5F966E760A059E987 /* RCTNativeAnimatedModule.m */, + 6397684B59F1742331FAAF45128404CE /* RCTNativeAnimatedNodesManager.h */, + B92433AEF3122CE7C6963ADEB2B9AC2B /* RCTNativeAnimatedNodesManager.m */, + B99B6C7D50AA4C76F0BA22D88D86B3D0 /* Drivers */, + 69EBA6C92DC4B196217726E2B558FEB4 /* Nodes */, ); - name = Pod; + name = RCTAnimation; sourceTree = ""; }; - 25EAC9DF18E27438982011DDC5A883CA /* RCTVibration */ = { + 255D0F6A63B8D073FE0D1A016C5C0F22 /* Pod */ = { isa = PBXGroup; children = ( - 9F6DC552674B01CD37E7D8140BA9E7FD /* RCTVibration.h */, - 5CD210D74B0444D19FD5459685DD774C /* RCTVibration.m */, + A5B31446DF200E60BD498E5D26824349 /* LICENSE */, + 94B9713A0A80A1F896C44E908CEA5F03 /* react-native-webview.podspec */, + 60FC6D4A3DA037F72285CFB738810C99 /* README.md */, ); - name = RCTVibration; - sourceTree = ""; - }; - 26422DCDA3E9A5F0135AEC10C5CCA190 /* Views */ = { - isa = PBXGroup; - children = ( - EF10AB902332DFA0E488803B92804A4E /* RCTActivityIndicatorView.h */, - 18CC51F21164F07278902C05F56DC095 /* RCTActivityIndicatorView.m */, - 097AE4854DE413C10366147CADC084F1 /* RCTActivityIndicatorViewManager.h */, - 937E1CF55B4A88FB57F205E5A26EE1E4 /* RCTActivityIndicatorViewManager.m */, - BEE3C73D929820699DFBA89E76AC29C3 /* RCTAnimationType.h */, - C45AAF02E1EA7B247872B2079B47B969 /* RCTAutoInsetsProtocol.h */, - 91A9F04829BCC6F42AF429262D314BB0 /* RCTBorderDrawing.h */, - 350194664AD90B13B8325EF9C94429F6 /* RCTBorderDrawing.m */, - 2D50D991C41C2A400FF364635DE87971 /* RCTBorderStyle.h */, - 81679495E33F981696E19ED18C1B485A /* RCTComponent.h */, - 937C951DA1C9667808565CF6BDF68D53 /* RCTComponentData.h */, - 281E951947D4190E42DE8143BF13C3B9 /* RCTComponentData.m */, - 17F1E0CD0FF555CDFBC37146CF250C38 /* RCTConvert+CoreLocation.h */, - 201154431839DDDE3CE20ABBC609F03F /* RCTConvert+CoreLocation.m */, - 7E58DC49A2D4D26720415F4EF77EAD0F /* RCTConvert+Transform.h */, - C7000BCE93F98265875ECD1F406342B7 /* RCTConvert+Transform.m */, - EFFF9FF9CECA6A3664C1E116308C8E47 /* RCTDatePicker.h */, - C29DE0FD20E597194F63023366237A97 /* RCTDatePicker.m */, - 884FE6F7BDE05D9A77E2BB9B5F5B55B7 /* RCTDatePickerManager.h */, - 0232A18EAEC249F47B610ED510163A1E /* RCTDatePickerManager.m */, - B61D4F72E458CF990458F2F57148257E /* RCTFont.h */, - ED42783DB5DA2933B2315DBF1FC4562C /* RCTFont.mm */, - 0512A223ED5909FE37306B7788C70AF8 /* RCTLayout.h */, - 164F926D7F59098CD017B5D0C2CE62C2 /* RCTLayout.m */, - 38A5683A8BD41FB382059740D6082296 /* RCTMaskedView.h */, - 32CF95A31BEDBF962A756F6BE0DBFD42 /* RCTMaskedView.m */, - 88825D9BB2C364E8A225EBF57B64AC16 /* RCTMaskedViewManager.h */, - D3A5C088BDC11C4DB7646EBEA842AAFF /* RCTMaskedViewManager.m */, - 8DA63778E26593951ACF860325A76F2E /* RCTModalHostView.h */, - 859C4F23EA9F010854D5711CE603E006 /* RCTModalHostView.m */, - 678CA992E44B00AAC55BFD1EBEF71CE4 /* RCTModalHostViewController.h */, - 904AF1C4870C8009B28B1AC932F01339 /* RCTModalHostViewController.m */, - E10B34D1A2E61BEC228AE0A659F3CABB /* RCTModalHostViewManager.h */, - A65C6F30E9DA32FEE00E5BBD535754F2 /* RCTModalHostViewManager.m */, - 2CE066FCA4FE127AC639460F79B3E4B8 /* RCTModalManager.h */, - ACFDB25A700626BC243BB7F090C7D05E /* RCTModalManager.m */, - 9E9CE2A4AD466F1197CBA06C676C10A0 /* RCTPicker.h */, - 81A4A2D931A40792CAEFDD49740B6183 /* RCTPicker.m */, - 418F84B1BC853CE1E7778D1CE01C8C39 /* RCTPickerManager.h */, - D8A487015C737A75C4327A9FD8795843 /* RCTPickerManager.m */, - F638FE4C03C9A3EE084643A992859882 /* RCTPointerEvents.h */, - B2793434C02A64D8F791AD35E946D251 /* RCTProgressViewManager.h */, - 65593785A256392F171E73214D13D3AA /* RCTProgressViewManager.m */, - C3E201D7D0C0BAAFE35C46A6AEBC2873 /* RCTRefreshControl.h */, - AB05BB3ED8087F85BB25E0E8312C646D /* RCTRefreshControl.m */, - 0B091891802470C094603B4CE4C92B0D /* RCTRefreshControlManager.h */, - C12999E244F2494C774841F5478FB2CE /* RCTRefreshControlManager.m */, - 46E3CBCDE514D6A5F8963BE47AC1CF3C /* RCTRootShadowView.h */, - 1B718E7142F8CC53B8F1D6137C99962D /* RCTRootShadowView.m */, - 7CA7AA353495310B184835E788C1BDEA /* RCTSegmentedControl.h */, - 85DFCC7B268D27AB2EB0ACB8EC6CE74A /* RCTSegmentedControl.m */, - 87E9725B7C81C851ABD18E37872EDCA6 /* RCTSegmentedControlManager.h */, - 20CEAE3E21A1A598377AEF37AA77F518 /* RCTSegmentedControlManager.m */, - 93FEB25F87DEAA393B579B56A163DED6 /* RCTShadowView.h */, - C7BA9EA63C543F7EEE456E0535D2E0BE /* RCTShadowView.m */, - 4057EDA81321BC411E742EDA4FC195A7 /* RCTShadowView+Internal.h */, - 6E6EDEBAB005F945C63F59DBDF1D0563 /* RCTShadowView+Internal.m */, - A47498A3A8FBBE473C7531574A7CEEDB /* RCTShadowView+Layout.h */, - 41AACC33F0CED1172B53008DBFE3F4C1 /* RCTShadowView+Layout.m */, - BDA95A6B351A0F0EBE2D89BC3D4645F9 /* RCTSlider.h */, - 413521BFE065BB2AF805AEE3005FAA3B /* RCTSlider.m */, - 55084514ED99B37BF77EE63C2CAE3806 /* RCTSliderManager.h */, - EEAE6C9E3B10AAC75054F3CDFAFCEEB0 /* RCTSliderManager.m */, - C3A7B516D537AF85124336CF8F9DA990 /* RCTSwitch.h */, - DA354997F8B268C34524FA4EBE1EE915 /* RCTSwitch.m */, - A0CE6682711F2AF5F09BC2D0D13CCEA8 /* RCTSwitchManager.h */, - 8CEA057C37BDF210879789C260FC1446 /* RCTSwitchManager.m */, - CF95CFB5C3C1133DF4665A8F42EC1A28 /* RCTTextDecorationLineType.h */, - 8CABF880BB0E034539A1BAFE9E9093BB /* RCTView.h */, - 72D7296DCA2ADBEF058949326873E89E /* RCTView.m */, - DF47297C4313E3953C87E3E78635D49E /* RCTViewManager.h */, - 44DF0AE6FE0F26A22941191B212A4DCB /* RCTViewManager.m */, - 8DB980F641C363494126F4A26051E81A /* RCTWebView.h */, - 0BF063273AEE6D2CE8618E0CB76990FC /* RCTWebView.m */, - A4AF0E10141B984E71359A7404BF5486 /* RCTWebViewManager.h */, - 7440D1263C8C236D9E80386E59139187 /* RCTWebViewManager.m */, - E6C88B62D410B42E3450055C1E5F3A23 /* RCTWKWebView.h */, - 9194651291BD92C94897911196845215 /* RCTWKWebView.m */, - 7A4C2A63A87EB9D60417017F86685D95 /* RCTWKWebViewManager.h */, - 5D232D2C7844F7A78426B79BF4A4E345 /* RCTWKWebViewManager.m */, - 305D748336532294A6D1F1837DB1C8F1 /* RCTWrapperViewController.h */, - 96F839F9257121D1CC5C72635DB0ABEC /* RCTWrapperViewController.m */, - 012DCC84D8FA7FD348A1DF06C0C4A7F2 /* UIView+Private.h */, - 783582406C0AAEC09C992FD4E848F92A /* UIView+React.h */, - F370DDB86CC7FA6C7F679D146C8175AD /* UIView+React.m */, - 46B97B7A9E6F10400C1F2E6D456F2FF8 /* SafeAreaView */, - 3E8CB0A79E266439BC6D31230CC26620 /* ScrollView */, - ); - name = Views; - path = React/Views; + name = Pod; sourceTree = ""; }; - 2AACB9432CC9053280D2FE63874A054F /* RNLocalize */ = { + 2B6EF19EF8EAF0581938C8D929AC3394 /* RNLocalize */ = { isa = PBXGroup; children = ( - 8738A9EE57BD71142B12D552AF59C2CF /* RNLocalize.h */, - 979097B7DB27D7F475B7C0D8B2A4293B /* RNLocalize.m */, - 2F45D66C2D302B1CDB11E58B6BB4B2CC /* Pod */, - 463861864FFBB759261E1BCE385D6935 /* Support Files */, + FA682C64DE217BC07006055C66C8E23D /* RNLocalize.h */, + BD13A10BFA7BFDDD63FB5700F96716BD /* RNLocalize.m */, + C3FF0FBCB091238F0F229B125B8ECD90 /* Pod */, + 74C3282DD11ACB203ECFDD852DCE3C9B /* Support Files */, ); name = RNLocalize; path = "../../node_modules/react-native-localize"; sourceTree = ""; }; - 2B12C0FA6975DE073FC7649DA834B90D /* Support Files */ = { - isa = PBXGroup; - children = ( - 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */, - 05681DFC28945653595E17F4E93C9D56 /* RNDeviceInfo-dummy.m */, - 80697C5F9E2712674F529C4476DF023A /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; 2BD9E0D96E3A87D9AF2D1911D3C55E10 /* Support Files */ = { isa = PBXGroup; children = ( @@ -3403,57 +3328,72 @@ path = "../Target Support Files/Folly"; sourceTree = ""; }; - 2F45D66C2D302B1CDB11E58B6BB4B2CC /* Pod */ = { + 2C53E4F41C4E128414D4EBD909082B14 /* Services */ = { isa = PBXGroup; children = ( - 743FA771575F96193CB1D17C45BB8147 /* README.md */, - A079A52E9EFE84C17A200F946A6CBFBA /* RNLocalize.podspec */, + 9ED2170ED57AE842E9D1436FB7E72474 /* UMReactFontManager.h */, + AD7754760531AE40CFA5CF0B3D369299 /* UMReactFontManager.m */, + D6B53C0418EF080C43CDBBDF078ADCC8 /* UMReactLogHandler.h */, + 13EA00E6E93985BA00E8B87651DDBDB1 /* UMReactLogHandler.m */, + DC1D9C41BE0D6642A4C77DA02452588E /* UMReactNativeAdapter.h */, + 09652E514397D75FBE030F206451DEC3 /* UMReactNativeAdapter.m */, + 4BBA16C20886A05824A60626E0DB96E5 /* UMReactNativeEventEmitter.h */, + A501CC61091EC1F04EEBAA04DE0899C3 /* UMReactNativeEventEmitter.m */, ); - name = Pod; + name = Services; + path = UMReactNativeAdapter/Services; + sourceTree = ""; + }; + 2C8AA844956C02DD03D814C13E47657B /* Support Files */ = { + isa = PBXGroup; + children = ( + 035BABF6A0639F365E75ABFC9D984518 /* react-native-document-picker.xcconfig */, + 0F00049C5DD12A9EFDB3AEBEA3AF8EE6 /* react-native-document-picker-dummy.m */, + BD04F34F2A6E1321E7A188FC752BC60F /* react-native-document-picker-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-document-picker"; sourceTree = ""; }; - 2F8944B9C1E58526E98BFB86452FCEE6 /* Pod */ = { + 2CC15AAE7644C18C39C95FE1A866C618 /* Pod */ = { isa = PBXGroup; children = ( - F8AD3679AA01C28391BB0E4EEFC99E0C /* UMFaceDetectorInterface.podspec */, + DEA1327D6CB319EBBF1F99481FA9AEAE /* LICENSE */, + A3BF3E382E3617044A8C0708B4C5E936 /* README.md */, + 18801C8DB347EDD6647B4AAFA354C8DF /* rn-extensions-share.podspec */, ); name = Pod; sourceTree = ""; }; - 2FC70A117921446789CF74F482DDCF0B /* react-native-orientation-locker */ = { + 2D12515E4598E16A72100812D034C476 /* Support Files */ = { isa = PBXGroup; children = ( - F13A1475E182AC393417BA122E41795B /* Orientation.h */, - F7F6EC030F63CDFB6FACCF29A7D9AFBC /* Orientation.m */, - 4DA1E107322A698257660425245CCBBA /* Pod */, - 6FD0E2C4BBD04D03E984E8CAA283611B /* Support Files */, + 73AEC71AD31C34C9FFB33071AF5483F3 /* EXPermissions.xcconfig */, + F4E2BAD8C1A25F5DDE6D9D63C99D3690 /* EXPermissions-dummy.m */, + D1AEFC87209E1CF339ADE2E0384F3A54 /* EXPermissions-prefix.pch */, ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXPermissions"; sourceTree = ""; }; - 30570BA9A5B9617BDE745792C4DF80E1 /* Singleline */ = { + 30607CF3B30B7DD6A4F5B9A0B4C136D3 /* RCTLinkingIOS */ = { isa = PBXGroup; children = ( - 54B57C0ADF05903074C65E624C0E439F /* RCTSinglelineTextInputView.h */, - 269BB7C29768AE4AE43F0C37D6A48C8B /* RCTSinglelineTextInputView.m */, - 39BBFE25A926E5BCA0D4A66F3B963613 /* RCTSinglelineTextInputViewManager.h */, - CCBFB9C2A9B0A4DE9787C48CBE5BD58B /* RCTSinglelineTextInputViewManager.m */, - 0AA3AD8840FCA5C82348C0B7469A06A0 /* RCTUITextField.h */, - B806EE9A192E52046E51562CFC93A337 /* RCTUITextField.m */, + 15F0B326590C7CEB368A54A38459785C /* RCTLinkingManager.h */, + 8B7D3082C8D084878DAB7755D645CBC3 /* RCTLinkingManager.m */, ); - name = Singleline; - path = Singleline; + name = RCTLinkingIOS; sourceTree = ""; }; - 3124562268872FD3B1A39C24CE6FDDEB /* UMModuleRegistryProvider */ = { + 30A81F1A016F3280CD6F7AE7FBF9B473 /* Support Files */ = { isa = PBXGroup; children = ( - 4682CCF683C4BAD900558FDA6C3A7A7F /* UMModuleRegistryProvider.h */, - B8CC93F6B13EC4F6A6B5FE0D56939147 /* UMModuleRegistryProvider.m */, + 96C8341EDF172E2180BE2813743711B9 /* React.xcconfig */, + 695DBE91E3CAD19D872E217FB0BC4E62 /* React-dummy.m */, + 246BDD074B966719D084F830473FD86B /* React-prefix.pch */, ); - name = UMModuleRegistryProvider; - path = UMCore/UMModuleRegistryProvider; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; 31B663C5361B9A0EEB26334960644935 /* Network */ = { @@ -3473,140 +3413,127 @@ name = Network; sourceTree = ""; }; - 34A37080B6F05E6577A9E8803274F297 /* Firebase */ = { + 31F3C39E2412F26163FB2D68AF84F085 /* Pod */ = { isa = PBXGroup; children = ( - 7A804DE04C1813D3D24693407FB779A9 /* CoreOnly */, - AE43448F0C94E65C7C200A838A5A94BF /* Support Files */, + 046B0537DA149F1FA5DBDEF7BA75CA8B /* UMTaskManagerInterface.podspec */, ); - name = Firebase; - path = Firebase; + name = Pod; sourceTree = ""; }; - 38BC477C45CA05239B7A40870306EEDA /* UMFileSystemInterface */ = { + 34A37080B6F05E6577A9E8803274F297 /* Firebase */ = { isa = PBXGroup; children = ( - 6113A5F1DC0B84656CD70D7A8E335A92 /* UMFilePermissionModuleInterface.h */, - 47B726840D4225B546CD9BD81E2D9A86 /* UMFileSystemInterface.h */, - 688DC0AF21AA3A999DBB1BF4C9AD9B6A /* Pod */, - B9DCA5B9DDC21DE5BF05F534C9122E39 /* Support Files */, + 7A804DE04C1813D3D24693407FB779A9 /* CoreOnly */, + AE43448F0C94E65C7C200A838A5A94BF /* Support Files */, ); - name = UMFileSystemInterface; - path = "../../node_modules/unimodules-file-system-interface/ios"; + name = Firebase; + path = Firebase; sourceTree = ""; }; - 392E4784A690A07630EAD5B1548E949F /* Frameworks */ = { + 350B8F5581C8F1F6B58DB4114FE4B33F /* Pod */ = { isa = PBXGroup; children = ( - 82EBFF5DB156A96271B0169DA4006590 /* libAdIdAccessLibrary.a */, + 20F17F5A9159D6C8BE33723B79E91424 /* EXHaptics.podspec */, ); - name = Frameworks; + name = Pod; sourceTree = ""; }; - 3DD57CD372B61DAA93718DAD46191979 /* Support Files */ = { + 352B200F5A4DBD55D7950569DE8BA39F /* EXFileSystem */ = { isa = PBXGroup; children = ( - 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.xcconfig */, + 3742D94C24447157A870310F38FC925E /* EXDownloadDelegate.h */, + A7825381E1BDBFF52EE48C99DBE80380 /* EXDownloadDelegate.m */, + 51C888F9B06035DACE72B2F14A31B663 /* EXFilePermissionModule.h */, + 527DD5CB6764488D52C1F16E4793E0F4 /* EXFilePermissionModule.m */, + 09E96652959070EFFDDB899D668EB98B /* EXFileSystem.h */, + 6C99FDF088E786E8BA2C08E5FB1D670A /* EXFileSystem.m */, + 960E58738C5C3B7A0B7415B2252B7E4B /* EXFileSystemAssetLibraryHandler.h */, + A418D113B6469B20252D61BA33AB08EC /* EXFileSystemAssetLibraryHandler.m */, + A2E2AE2B851F0C5D5E40354C0994C236 /* EXFileSystemLocalFileHandler.h */, + 18144E9C5707FA382E0113FD844087ED /* EXFileSystemLocalFileHandler.m */, + 9B810F0AA99216B8CCCDCDF5C875B879 /* Pod */, + 587926634BB5C8A43A0C1A91DF611A85 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; + name = EXFileSystem; + path = "../../node_modules/expo-file-system/ios"; sourceTree = ""; }; - 3E8CB0A79E266439BC6D31230CC26620 /* ScrollView */ = { + 3633668E808EC04BCD9CBB9F74D105B2 /* Pod */ = { isa = PBXGroup; children = ( - F5089D3701C2B26D1C38E9B2946A958B /* RCTScrollableProtocol.h */, - 2942B5CB2BE222AEF2E0D84B8F758B4A /* RCTScrollContentShadowView.h */, - F78898A13A5EB6B8F912D6AFE173D928 /* RCTScrollContentShadowView.m */, - 5DB1AB07BBF2DBAF40ABD80E52F55D31 /* RCTScrollContentView.h */, - E686419BE49164D82939A97379EBCB93 /* RCTScrollContentView.m */, - 42D1EAA2B127008A1FBD347BB1569FC5 /* RCTScrollContentViewManager.h */, - 262757B1EEFE3577ECE6B42C3C191DE4 /* RCTScrollContentViewManager.m */, - 796605920141ACEF9364E34651E8DFB2 /* RCTScrollView.h */, - 5A98F58275B7CEF021261333C77FCE29 /* RCTScrollView.m */, - 5D2032E9F4019B31D00610FD21267D5D /* RCTScrollViewManager.h */, - D5038BF877B1D4E908BB74DF9EEBA1EE /* RCTScrollViewManager.m */, + B02B856FBAECFD9ECAC1A99D81950A80 /* UMFileSystemInterface.podspec */, ); - name = ScrollView; - path = ScrollView; + name = Pod; sourceTree = ""; }; - 40AF612B6D0FC914E432F9D396D9D3AC /* Pods-ShareRocketChatRN */ = { + 392E4784A690A07630EAD5B1548E949F /* Frameworks */ = { isa = PBXGroup; children = ( - 8981A3DCA2B5E70074AD0F0F1AF4F345 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, - 75E5F2FAE3615F969E1B0DA9DD23A307 /* Pods-ShareRocketChatRN-acknowledgements.plist */, - 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */, - 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */, - 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */, + 82EBFF5DB156A96271B0169DA4006590 /* libAdIdAccessLibrary.a */, ); - name = "Pods-ShareRocketChatRN"; - path = "Target Support Files/Pods-ShareRocketChatRN"; + name = Frameworks; sourceTree = ""; }; - 412FEC52042E2F378DF20BB8E7C200F2 /* RCTLinkingIOS */ = { + 3BD459D3A587ECEB928B99985F338521 /* BaseText */ = { isa = PBXGroup; children = ( - EF9E1BB641DD0FAA0F6A6BA00FEA5346 /* RCTLinkingManager.h */, - E4796E70EB1654C669BDB192982CACE2 /* RCTLinkingManager.m */, + E7A6C2EFC5E0831010052E25B8EBE262 /* RCTBaseTextShadowView.h */, + FE9DD4CC964466464B6F7653BC01D0E5 /* RCTBaseTextShadowView.m */, + 1AF6168CBC8E652FBF466FC273D44D3A /* RCTBaseTextViewManager.h */, + CAFE45CBF3EFCF18F807545086BAA78C /* RCTBaseTextViewManager.m */, ); - name = RCTLinkingIOS; + name = BaseText; + path = Libraries/Text/BaseText; sourceTree = ""; }; - 416345419E7863560CE8D7FB0786291C /* RCTWebSocket */ = { + 3D20957E3280BE00D4348AFAF283EB8B /* react-native-document-picker */ = { isa = PBXGroup; children = ( - DCF71DE19AC2D44EDF9D409B80BF4E8D /* RCTReconnectingWebSocket.h */, - 8C2E147BC317303C418A8924BF2D93AB /* RCTReconnectingWebSocket.m */, - AF42DB2D5BEE3E0B8711364EEE0884B7 /* RCTSRWebSocket.h */, - FCBE4D1BC80B2F6BEB45098E409D8860 /* RCTSRWebSocket.m */, - F101F26D6BABEF2FA1A0AB350F225A68 /* RCTWebSocketExecutor.h */, - 9FF348D038C506F03350D63BE6E68CD2 /* RCTWebSocketExecutor.m */, - 4BD4B8AFBAFC43A30659BE157117345A /* RCTWebSocketModule.h */, - 2C5D702F4198078197CD9FA676606EAA /* RCTWebSocketModule.m */, + 66637907B5AF15F4C98B4D15F2955F16 /* RNDocumentPicker.h */, + 6FCEA1F86CAAF63F2819D5249EC003AE /* RNDocumentPicker.m */, + 545A00B3A3A1096AD936B664ACF3585C /* Pod */, + 2C8AA844956C02DD03D814C13E47657B /* Support Files */, ); - name = RCTWebSocket; + name = "react-native-document-picker"; + path = "../../node_modules/react-native-document-picker"; sourceTree = ""; }; - 41E09B3A44547CD4E53D37EBE2D67DC0 /* Pod */ = { + 3DE968596D86E5F5A807BB74164CA24B /* Pod */ = { isa = PBXGroup; children = ( - 881F03CBCC958AC8B719DC865A9D5B12 /* LICENSE */, - 44EDF5C1322BE3BAF0972A2222A06B24 /* react-native-splash-screen.podspec */, - ED546660CBC80ADC35EC448936703263 /* README.md */, + EE45CBED6FB1E33B5B758979479A6154 /* LICENSE */, + 14AA6BE98612FB91ED2BDAC39B4AAE1F /* React.podspec */, + EDF161986A4EE7FD43D0BEC090C9DD6D /* README.md */, ); name = Pod; sourceTree = ""; }; - 4253570E7EC86F0CFD83388C02DBE5D4 /* UMModuleRegistryAdapter */ = { + 40AF612B6D0FC914E432F9D396D9D3AC /* Pods-ShareRocketChatRN */ = { isa = PBXGroup; children = ( - C4062FEB153BD14C0A05654C630FEFE4 /* UMModuleRegistryAdapter.h */, - A81349EA8C993B86CB44D28972236524 /* UMModuleRegistryAdapter.m */, - 5C8C31C622D5C9E2D324202444C2EE59 /* UMViewManagerAdapterClassesRegistry.h */, - 1FDAE339B7B4EAE8669C929838EE87D8 /* UMViewManagerAdapterClassesRegistry.m */, + 8981A3DCA2B5E70074AD0F0F1AF4F345 /* Pods-ShareRocketChatRN-acknowledgements.markdown */, + 75E5F2FAE3615F969E1B0DA9DD23A307 /* Pods-ShareRocketChatRN-acknowledgements.plist */, + 6C6494BF3BBF96C9957F9676F8B880E2 /* Pods-ShareRocketChatRN-dummy.m */, + 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */, + 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */, ); - name = UMModuleRegistryAdapter; - path = UMReactNativeAdapter/UMModuleRegistryAdapter; + name = "Pods-ShareRocketChatRN"; + path = "Target Support Files/Pods-ShareRocketChatRN"; sourceTree = ""; }; - 42F9DCAA038063C06E31A102C90EDA16 /* RCTNetwork */ = { + 418962344098C5971BD2ED3DF6019E7A /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - BBB0D5C2A7C79CC28B6DE54FDDD2AED9 /* RCTDataRequestHandler.h */, - 7AD15F6451DE91C26A0FBA916918F698 /* RCTDataRequestHandler.m */, - 48FF6D55B4E5998A341BDF28BC20DD9D /* RCTFileRequestHandler.h */, - E8911EE6854F117C3D9F61D562E6E66B /* RCTFileRequestHandler.m */, - 829EFF3386559FD009EE63FF426BA7C7 /* RCTHTTPRequestHandler.h */, - FFC4FF72B18B537D921C182B9AE258C8 /* RCTHTTPRequestHandler.mm */, - BC645D7FEAFBDDB3CC182386E1F7C1DD /* RCTNetInfo.h */, - 642AF918983609F8A2E09DF67928CF55 /* RCTNetInfo.m */, - 3E3948F850A1CB063386B3E7A8F82FC4 /* RCTNetworking.h */, - 9F5DA0F6A85A390976F740A64014E21A /* RCTNetworking.mm */, - 05CC4FEAF72AF6EB2EF7ABB1897CF97C /* RCTNetworkTask.h */, - BB0569EBB8856E2228CF4A097F777707 /* RCTNetworkTask.m */, + D771D84A3DE58AABA383BDEA64884F49 /* RCTSurfaceHostingProxyRootView.h */, + 21E7B92B831DEA56C05A2366F80CA01A /* RCTSurfaceHostingProxyRootView.mm */, + 71575EF092325EEF016E4CCC47B95670 /* RCTSurfaceHostingView.h */, + 1A1830BF278CE033BD61A54FB18BD9C0 /* RCTSurfaceHostingView.mm */, + 549F516343B8C77FB8A824418F664E10 /* RCTSurfaceSizeMeasureMode.h */, + C9D64FAA19C31BF4A9FDB26B3DCB034D /* RCTSurfaceSizeMeasureMode.mm */, ); - name = RCTNetwork; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; 444D3A51C52BDCF503FA7733BB2A4739 /* nanopb */ = { @@ -3700,96 +3627,20 @@ path = FirebaseInstanceID; sourceTree = ""; }; - 459DDEAC8A3E38EF22369BE53053E1B3 /* Protocols */ = { + 4809A4B92F01F17317F6F201B0B8CEE6 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 291D5E4B3399B7FBF6C658E3D6B3EFF0 /* UMAppLifecycleListener.h */, - 01F8FA667020A7E45792DEEFC49F0A2D /* UMAppLifecycleService.h */, - 12EDFC33FED7F5C4559BC237114B9556 /* UMEventEmitter.h */, - DA364DC8821E6F2F3525D9A1AD78D002 /* UMEventEmitterService.h */, - 668AE27C04386475A4F88728253D308A /* UMInternalModule.h */, - AD41223977502296C80DCD16A0A28ED3 /* UMJavaScriptContextProvider.h */, - 73EFD8BA63B9A167937E339F74455143 /* UMKernelService.h */, - F4CC5D457DF57726C2D0A610CE2458E1 /* UMLogHandler.h */, - CD723597BC7E878A613B6CBC61CDB542 /* UMModuleRegistryConsumer.h */, - 47AEF13B03A35A95FFBD0419401781BC /* UMUIManager.h */, - 68D28C2718DE550E5EFCC4D6C2A317CD /* UMUtilitiesInterface.h */, + D69BBC80246F5A3CDC15F03F2797FE3B /* Compression.h */, + E671EEA96299221035D42FE7A66C663B /* Compression.m */, + 4875BEBAB31CF2EF28ABC854B6489D27 /* ImageCropPicker.h */, + EA9539992D00C21175CCFE91ADDAF15C /* ImageCropPicker.m */, + 74F2166E623CF220F1F4869AB585D64D /* UIImage+Resize.h */, + D9BBDFDE5F92E22E277330595C690321 /* UIImage+Resize.m */, + 80D596E784FCC3BBD69DC763DF7DF32B /* Pod */, + D26112CF631EE33EFBB365039EB18CE5 /* Support Files */, ); - name = Protocols; - path = UMCore/Protocols; - sourceTree = ""; - }; - 463861864FFBB759261E1BCE385D6935 /* Support Files */ = { - isa = PBXGroup; - children = ( - CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */, - E6D1D60641E2AA793C28DF28387CB301 /* RNLocalize-dummy.m */, - 0EB28CDB8C69EFA983BC669827685933 /* RNLocalize-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNLocalize"; - sourceTree = ""; - }; - 46B97B7A9E6F10400C1F2E6D456F2FF8 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - D269DEE52BE9BD492980057C5570F31D /* RCTSafeAreaShadowView.h */, - FA46778D7C9968FAD1789A65BCE856C3 /* RCTSafeAreaShadowView.m */, - 0F4C6F41A6E3350AD45942B5D81157AB /* RCTSafeAreaView.h */, - 6A110EC136EFD924DC27529D5AA5BBEF /* RCTSafeAreaView.m */, - 41C8503B94E6A30E3BEFDE038A998283 /* RCTSafeAreaViewLocalData.h */, - EC71B3E59CBBE31FCF280ADCA8C78635 /* RCTSafeAreaViewLocalData.m */, - 2F99EE79C025EB9F2A9E303721C5092D /* RCTSafeAreaViewManager.h */, - E680598082C2589742298F53D35A3B38 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 493D0D47E7DBC9AECCEF30AA3D7B3DB3 /* Core */ = { - isa = PBXGroup; - children = ( - 71E5006FC0B6D1F91FCB06840B2029CA /* Base */, - 54360D821A4F4FB609DBE982E45456A7 /* Modules */, - D2FFB40B538C838430F364498F00361E /* Profiler */, - 7D2DC9DC724ADBEA00077C7C398C9557 /* UIUtils */, - 26422DCDA3E9A5F0135AEC10C5CCA190 /* Views */, - ); - name = Core; - sourceTree = ""; - }; - 4CFD99EE74DB318C2CB320AD61D2E320 /* Pod */ = { - isa = PBXGroup; - children = ( - 5F33CBB2C282BAC4429A8808AB9AA208 /* EXAppLoaderProvider.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4DA1E107322A698257660425245CCBBA /* Pod */ = { - isa = PBXGroup; - children = ( - F1322D928C8D0BAF91B3BD4E388F637F /* LICENSE */, - 6F9D2C2C8648E85CB2D32F25F6BB0195 /* react-native-orientation-locker.podspec */, - 21ACB0CB855CA8D0ADB6C4F5E8DBE9CD /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 4F24E462D72846485459502D84C08ABB /* Pod */ = { - isa = PBXGroup; - children = ( - 36F1618203FA7946D46848EC7809DFDA /* UMFontInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4F31834BD7C7BF3CD094570D77F21CDB /* Pod */ = { - isa = PBXGroup; - children = ( - 084AAC9E013FD43A6105F4A7AA686C40 /* EXFileSystem.podspec */, - ); - name = Pod; + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; sourceTree = ""; }; 4FC37C41F11924A2602F786314152701 /* Pods */ = { @@ -3821,180 +3672,93 @@ name = Pods; sourceTree = ""; }; - 50FCEB63D541A827419E20E05EFA6AF5 /* Products */ = { - isa = PBXGroup; - children = ( - 60584D3AA8192A7EB3622726C89CAB29 /* libDoubleConversion.a */, - CEF911BCB17DBFF64FEB78BD39119AEE /* libEXAppLoaderProvider.a */, - C2E6BCF8D456455BD75D2FD735C2B056 /* libEXConstants.a */, - 8FC09F8F473E743C692CF37481AD28EE /* libEXFileSystem.a */, - BDCA46324A975C7FC1D9310BFB70F8FA /* libEXHaptics.a */, - 7D1572D0A81CB920AC0A5BEBE601742B /* libEXPermissions.a */, - 48EE6575C1CFEA2AEDE0D19DF8D79F0E /* libEXWebBrowser.a */, - 9DDAE6A5A841F6A1CBCAC6B0A54AC509 /* libFirebaseCore.a */, - B145628F76E71EBC32DE310DF90FEA08 /* libFirebaseInstanceID.a */, - 650F1F89B44BDADA600F9DD8034D21E5 /* libFolly.a */, - C4D3D2C6049772A96AA81EDCFF2EA170 /* libglog.a */, - 97CD684EF2CE8DF8291020F2DE149B00 /* libGoogleToolboxForMac.a */, - 24172F1F2D1120AE004421165710D403 /* libGoogleUtilities.a */, - F4C480E1EF4112F2B28FCBE872E65262 /* libGTMSessionFetcher.a */, - 38B5379326830579CE5929312968EED4 /* libnanopb.a */, - 63A2C7F825019C2F37A3D5B672CCC93A /* libPods-RocketChatRN.a */, - 3DEEC8163F843FED9B19708AD5E1533B /* libPods-ShareRocketChatRN.a */, - D3049A18CD3AC667DC38BCFEBD4E3A6C /* libProtobuf.a */, - 96CBF7B1D6A377DE0ADE741A58B3E116 /* libQBImagePickerController.a */, - EA87488CE220919948AC09172D36AE5A /* libReact.a */, - CB2F572C6E5E8BE17CBF38A2A93AAC07 /* libreact-native-document-picker.a */, - 7EBB09FA3648B85F3F0BC62F81786778 /* libreact-native-orientation-locker.a */, - 22B1D6FD8E5BFE1294F9BF136FD98AE5 /* libreact-native-realm-path.a */, - 8B3C7D3B1BE1479AAEE455CF7FCFB931 /* libreact-native-splash-screen.a */, - 40AAD9902F8CFC8829E817508F6DC261 /* libreact-native-webview.a */, - BAE447C41D111839BA0F623B729945BD /* libRNDeviceInfo.a */, - 7FE734CD6E27A147E8CD7BF2385CAB68 /* libRNImageCropPicker.a */, - 4C2E17571810B87B9073CBD85639CAF4 /* libRNLocalize.a */, - 35D64FD4EA6D92431EB73684DC2C82E3 /* libRNScreens.a */, - 9C5AA37519C8C90BEE2FA16240662171 /* libRSKImageCropper.a */, - 7419615BE9C77060447B9498E8C5BC09 /* libUMCore.a */, - 004FA892142BC5EF9C7C3646A89CA8A8 /* libUMReactNativeAdapter.a */, - 6D5C418B5EEC894AA078554767CE3DDC /* libyoga.a */, - 92EFFC5DCEABAA1F19A0EA043792A75A /* QBImagePicker.bundle */, - ); - name = Products; - sourceTree = ""; - }; - 510D958F9391BACFEE5CA1BCA6200204 /* EXConstants */ = { + 51D6A2FC1CB04425FB2575712A592889 /* Support Files */ = { isa = PBXGroup; children = ( - F0F2FAE6500D04ED6F1312A01D565447 /* EXConstants.h */, - C541176C1A2500C5AF3259B71245AD3C /* EXConstants.m */, - 7EA2FB1ED4183EC2BD2FE34C37E15B07 /* EXConstantsService.h */, - 4191361051666A0D9CF54E7E9F6E10B5 /* EXConstantsService.m */, - 25A95FAE53C8AF8650D41F45973F39F7 /* Pod */, - 9DE3F19B7CA8739BC1A77B6CA9ED5C1D /* Support Files */, + 7B8AC83E75F8743AA886A5A76441C042 /* UMCameraInterface.xcconfig */, ); - name = EXConstants; - path = "../../node_modules/expo-constants/ios"; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; sourceTree = ""; }; - 52C184D1199C93E85BBE09F061E87670 /* react-native-document-picker */ = { + 545A00B3A3A1096AD936B664ACF3585C /* Pod */ = { isa = PBXGroup; children = ( - 8AC20F93FB89F173A1218882C6857514 /* RNDocumentPicker.h */, - C3788D21BBB311D01466980579177A4C /* RNDocumentPicker.m */, - 9642B91576DBB897576C4375540C3258 /* Pod */, - 67E07740912F5F8C93089C9D832084C3 /* Support Files */, + A5B243977334016B82928CA96CB409FE /* LICENSE.md */, + 016A4ED51A2D6FCAB0E40BEBFA9E3698 /* react-native-document-picker.podspec */, + EDDE3A9D27D5668A18E7CD5CEBAA5C2C /* README.md */, ); - name = "react-native-document-picker"; - path = "../../node_modules/react-native-document-picker"; + name = Pod; sourceTree = ""; }; - 53152682CFA3EA8D618198CF6FEB91B7 /* EXHaptics */ = { + 56C4113046A7F522D04511B0C2ADAF8B /* UMTaskManagerInterface */ = { isa = PBXGroup; children = ( - B521D5919FC19FAF174C6CA9AD9EEA5E /* EXHapticsModule.h */, - EF4BDF5F4EADF81300A71703E6CE8DC6 /* EXHapticsModule.m */, - CD05FDDA92FE9A9853FD157BF128E67A /* Pod */, - 553C32DF22136F0F8567289CAF4C4B80 /* Support Files */, + 8D70612E280E00B2633B1649E07D95D1 /* UMTaskConsumerInterface.h */, + 9AF220A0CEB5E26ABE8974DD5434A3D6 /* UMTaskInterface.h */, + 98391E45CC78C564A12B11A4B08BFDC8 /* UMTaskLaunchReason.h */, + 6853BBD96FB2E280FE34AFEAA76F978B /* UMTaskManagerInterface.h */, + 0FB6DA1BBEC2550C4355B0F9A23E5928 /* UMTaskServiceInterface.h */, + 31F3C39E2412F26163FB2D68AF84F085 /* Pod */, + 6CD9B10DE8A5FA93B821BDB194F14285 /* Support Files */, ); - name = EXHaptics; - path = "../../node_modules/expo-haptics/ios"; + name = UMTaskManagerInterface; + path = "../../node_modules/unimodules-task-manager-interface/ios"; sourceTree = ""; }; - 53781992D22A710EA24D8DAB88AFD578 /* Support Files */ = { + 573B4066EFF7C5E412147F4AB7DF2D9D /* RCTSettings */ = { isa = PBXGroup; children = ( - FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.xcconfig */, + 34EB34F90A2462EB833EE95F32243F19 /* RCTSettingsManager.h */, + 2BBC125967C2BD87E2E5EB5D64590D2A /* RCTSettingsManager.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMCameraInterface"; + name = RCTSettings; sourceTree = ""; }; - 539CF61882E45282259F6672A57E6A72 /* Pod */ = { + 587926634BB5C8A43A0C1A91DF611A85 /* Support Files */ = { isa = PBXGroup; children = ( - 626BFA717D2D14B01FA5E1C99B9403F8 /* UMSensorsInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 54360D821A4F4FB609DBE982E45456A7 /* Modules */ = { - isa = PBXGroup; - children = ( - DAA030E3F4936AA5994DE4196D91D233 /* RCTAccessibilityManager.h */, - 39823D0CADDD07BE24C0F0AD6B419033 /* RCTAccessibilityManager.m */, - AC24AF82F582FD7B3EB82A723EE2308F /* RCTAlertManager.h */, - 9FCE48EE4B07419B0A690C46027AD58E /* RCTAlertManager.m */, - 170A9AA051DF6569384D3575AAE94D52 /* RCTAppState.h */, - D5FB42623D8F6D266D15D896AF6F1D1F /* RCTAppState.m */, - 6A21E7816440B010D5C26FCE956D83FD /* RCTAsyncLocalStorage.h */, - EA2854C43CBDF62983B30CB07AFFDA65 /* RCTAsyncLocalStorage.m */, - 9F43317AE294E292CACE855324E32017 /* RCTClipboard.h */, - 10C70F490652DB309BA6145EB0AE9B83 /* RCTClipboard.m */, - A33F32B7C513C82889B80F3ABE64053E /* RCTDeviceInfo.h */, - 8356753F26FEF1EE58E015A2B46FF942 /* RCTDeviceInfo.m */, - C7A9707CAFF01395793578FF8342D703 /* RCTDevSettings.h */, - B61C97003ED9A3DB99C2880A1A608BEE /* RCTDevSettings.mm */, - F4AA899FDC53A68D4D167D763E3098FE /* RCTEventEmitter.h */, - 76433928D4430C19868E79A86734E323 /* RCTEventEmitter.m */, - 8E26A342169EB482773E67D7D32F9788 /* RCTExceptionsManager.h */, - A1628DC0F6677F7DB622A59617EC21B3 /* RCTExceptionsManager.m */, - 3196A703CD641D488C5EA5E5CF995DF4 /* RCTI18nManager.h */, - 32BA152A12F5CB214EFDB52F9BCDA3D9 /* RCTI18nManager.m */, - C248E9ADAAB7CDD4E129BF7D744F1490 /* RCTI18nUtil.h */, - C38D77A4BC32DAC643556E89EC139AD6 /* RCTI18nUtil.m */, - ABFF59E51B52F0510F338891BF4F34DF /* RCTKeyboardObserver.h */, - B2809DCFA8DECB1CFFE618915EDA5519 /* RCTKeyboardObserver.m */, - 22462B515DBBEBBC284F1C23FAEC8F8F /* RCTLayoutAnimation.h */, - B920ADF161F0FEEFF91CC378F4C19347 /* RCTLayoutAnimation.m */, - B6BB0B5F58B86884A5F6163AEA399119 /* RCTLayoutAnimationGroup.h */, - 75717BEF0A669997409833CF33E496CA /* RCTLayoutAnimationGroup.m */, - 612E527E6C2BC5806B7E9FA73C73858B /* RCTRedBox.h */, - 4F6F20E40599421E57D12627A5538ED4 /* RCTRedBox.m */, - D554CD6CF79A41EF70F277E7D543A6DC /* RCTRedBoxExtraDataViewController.h */, - C083E7788F15C4F76DADA48426983C65 /* RCTRedBoxExtraDataViewController.m */, - FE183C24C287338F5BAF7AD026D94B60 /* RCTSourceCode.h */, - 1C4785B1DDB61C47FF2EC81C8649FAA5 /* RCTSourceCode.m */, - 20CC13DF451E62D3958DD5354B20BB3D /* RCTStatusBarManager.h */, - 0561F4FA9F99CA4E3EA734D0114AF789 /* RCTStatusBarManager.m */, - 53A029829CB0C1059313046ABCF15D59 /* RCTTiming.h */, - 48332F5C5CC746B2E69E6468BDDFEC98 /* RCTTiming.m */, - 91A00B0D8CE236601318F4CA2FA44005 /* RCTUIManager.h */, - C9967B2B3C2D49FEFE3D7B209540C2C5 /* RCTUIManager.m */, - D62FDC62FCC67CE4C4C92219AD9A31DB /* RCTUIManagerObserverCoordinator.h */, - E2130431BC79C2529F9B7D997EA45C78 /* RCTUIManagerObserverCoordinator.mm */, - 11E3D039DD6885FED8CB12CF16627CCC /* RCTUIManagerUtils.h */, - A4779711C3A43BD673887C1240FFF225 /* RCTUIManagerUtils.m */, + 3F7B39BCACD65567E035BEC3AA4A7321 /* EXFileSystem.xcconfig */, + 9C81E75323C511266B8854B0A3F1B396 /* EXFileSystem-dummy.m */, + E838BC04B95A580DA7869C6FFD8489C0 /* EXFileSystem-prefix.pch */, ); - name = Modules; - path = React/Modules; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXFileSystem"; sourceTree = ""; }; - 553C32DF22136F0F8567289CAF4C4B80 /* Support Files */ = { + 588F0EB398061B7F7EEEA079177587F8 /* EXConstants */ = { isa = PBXGroup; children = ( - 465361999C9275A0EB0D18E87ACF63BA /* EXHaptics.xcconfig */, - 73445129AC7FB86EE46F20FB12E729DF /* EXHaptics-dummy.m */, - 8832B7683A7BCE3E7412EBDE088EE906 /* EXHaptics-prefix.pch */, + 2488680621032E6B1FDFC8C6DA1BF8F0 /* EXConstants.h */, + FB23EA80DA28DE296F54F03C29EF63A2 /* EXConstants.m */, + 5618E111FD384FAC7A811F088536E90E /* EXConstantsService.h */, + E81605AE12AB3C6ED32EC2CA47574EA2 /* EXConstantsService.m */, + 02AD8901E20A973BC1833FDCD84B5F33 /* Pod */, + 9BB5FE976FD26E1C541954AAAF1412AC /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXHaptics"; + name = EXConstants; + path = "../../node_modules/expo-constants/ios"; sourceTree = ""; }; - 591C07F0849F9751BD563022B3E9B00D /* Pod */ = { + 59EAC9B27BBEBE4D06636C18F39D114A /* RCTActionSheet */ = { isa = PBXGroup; children = ( - 34B9CEF05B764B94F7CFDA5EB025FC44 /* yoga.podspec */, + 05CE96B4E1F5D6BE1C1B21461839E6A4 /* RCTActionSheetManager.h */, + 1835D5950DA13377A37929968F4B5F8A /* RCTActionSheetManager.m */, ); - name = Pod; + name = RCTActionSheet; sourceTree = ""; }; - 596850BDA09F8EA404BEA8700C9C8F60 /* Support Files */ = { + 5AA124124826C4DB0FEDDA7E23387C4C /* UMModuleRegistryAdapter */ = { isa = PBXGroup; children = ( - CD43BC845F3312E0B19B9A512B7C1D8A /* UMFaceDetectorInterface.xcconfig */, + 86FD7573084DFAFCBB84A59DF4D5D16B /* UMModuleRegistryAdapter.h */, + 5A27AF3E202827907932160629BBEAA1 /* UMModuleRegistryAdapter.m */, + F4D3C90F5DFD062A69A6E7F23DF92009 /* UMViewManagerAdapterClassesRegistry.h */, + 89FAA21ECDD98DD632D528837AEE9970 /* UMViewManagerAdapterClassesRegistry.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; + name = UMModuleRegistryAdapter; + path = UMReactNativeAdapter/UMModuleRegistryAdapter; sourceTree = ""; }; 5AEF3ADCEFFED332FBD4A8B103D40EF0 /* ISASwizzler */ = { @@ -4008,64 +3772,45 @@ name = ISASwizzler; sourceTree = ""; }; - 5D2800FFFE136D15E2E8893A3BD4F914 /* UMReactNativeAdapter */ = { + 5B75650FDC4D90B051D8A40BD1B9AE39 /* react-native-splash-screen */ = { isa = PBXGroup; children = ( - 7392E40D706A1072611B4CFFF50E1D2E /* UMBridgeModule.h */, - 967221DF8C8593004E75CEEF95AEFDBC /* Pod */, - 1931CBCD0012949C6489C3390BE2C7CD /* Services */, - D4B8FE515FAFB1AA71B9D18311251DAA /* Support Files */, - 4253570E7EC86F0CFD83388C02DBE5D4 /* UMModuleRegistryAdapter */, - DB049F46A0736A0FE7E5DEAFB9BB15EE /* UMNativeModulesProxy */, - CB2C372FB027ECE8D944BB55DB8F82EB /* UMViewManagerAdapter */, + E308C024484C63E58C4FDC60AE57CE0C /* RNSplashScreen.h */, + 478D780CC2805F8C2397C2F781FED4CB /* RNSplashScreen.m */, + 0BA0C4E7EB027E509315007C9CAD2601 /* Pod */, + D848137B92C7567B4ED5108D732DD520 /* Support Files */, ); - name = UMReactNativeAdapter; - path = "../../node_modules/@unimodules/react-native-adapter/ios"; + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; sourceTree = ""; }; - 5D960600974426BAAB9E2D3E2F802DB8 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 861F27824E66E148533FB638DD7CD54A /* EXAppLoaderProvider */, - 510D958F9391BACFEE5CA1BCA6200204 /* EXConstants */, - F6617680FC01FF767AB5A2C324B4B882 /* EXFileSystem */, - 53152682CFA3EA8D618198CF6FEB91B7 /* EXHaptics */, - 156F2031BD682F1D8516960ED6F43C86 /* EXPermissions */, - 1749EA678928E5272262EC889C6C4A5D /* EXWebBrowser */, - 098178F3362E7B21FA308EED1FDD441F /* React */, - 52C184D1199C93E85BBE09F061E87670 /* react-native-document-picker */, - 2FC70A117921446789CF74F482DDCF0B /* react-native-orientation-locker */, - C0E6D6C2C62D91205AF43F6F4E8BB0DA /* react-native-realm-path */, - 60E3357A51899E8E483BE0E88BF71836 /* react-native-splash-screen */, - F01C339A2AC1EFE3C66C04D6BCFA2FF0 /* react-native-webview */, - 87CAAD6630443C4AB48A67133895E56A /* RNDeviceInfo */, - E9A4AA61CA9CED8388027AF5F72DA401 /* RNImageCropPicker */, - 2AACB9432CC9053280D2FE63874A054F /* RNLocalize */, - 93677593B3138D9BF03E6004DDB5AC04 /* RNScreens */, - 718E8CC121346575775637004EB01B67 /* UMBarCodeScannerInterface */, - 13F1A34C7197750A5941061AD6B2EB70 /* UMCameraInterface */, - 0B18FD8FF99FDC490F20C6C5F91113E2 /* UMConstantsInterface */, - 7760BFEFE689C497A372D9C2DC06FDA2 /* UMCore */, - FCAEBA250836CDEE970A451D990A7DE0 /* UMFaceDetectorInterface */, - 38BC477C45CA05239B7A40870306EEDA /* UMFileSystemInterface */, - A5628DF172DE58FBA3F68C4A45D0E1E8 /* UMFontInterface */, - 0BBD05D4AF2024F9B2FFDEDEA7C816B1 /* UMImageLoaderInterface */, - 162034FB2417C91365D01E931B0F1931 /* UMPermissionsInterface */, - 5D2800FFFE136D15E2E8893A3BD4F914 /* UMReactNativeAdapter */, - EBD8152D142832DB584AEDFB57C2806E /* UMSensorsInterface */, - D4A13B0CAEE1DB1F010BC4B287E8C656 /* UMTaskManagerInterface */, - 7721A1AB4BC2125A272CA4A14C433FFC /* yoga */, + 5D3EE8CA4CF6ABC251C66F2A9AD907F0 /* UMFaceDetectorInterface */ = { + isa = PBXGroup; + children = ( + 8F38970EDC8D3290B93FB6FBA911D887 /* UMFaceDetectorManager.h */, + 50972B7DEEE7CCCA8C3520FA5FEF7662 /* UMFaceDetectorManagerProvider.h */, + A1FD70A5680917B7F103AB46789831F9 /* Pod */, + F83C9EDE2B9C4F70736EAF59659A3F6E /* Support Files */, ); - name = "Development Pods"; + name = UMFaceDetectorInterface; + path = "../../node_modules/unimodules-face-detector-interface/ios"; sourceTree = ""; }; - 5F631F306FEC17890D0D0ADAB1E286FC /* Support Files */ = { + 5EE23DF5858E6E47A19337A818F6BDD8 /* RCTVibration */ = { isa = PBXGroup; children = ( - 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */, + CDEDF50E898677402AD9FE41B47A34F9 /* RCTVibration.h */, + 18F0206DEBA714184C0B3387C62BA51E /* RCTVibration.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; + name = RCTVibration; + sourceTree = ""; + }; + 5FF4FF5E21C97939213C6A8AD8F1DC1D /* Pod */ = { + isa = PBXGroup; + children = ( + FAB7E7FC8259AF74EDD04353887856B9 /* UMBarCodeScannerInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 6063987EB40204B4B3CF5FB8995D3747 /* Support Files */ = { @@ -4079,43 +3824,86 @@ path = "../Target Support Files/GoogleUtilities"; sourceTree = ""; }; - 60E3357A51899E8E483BE0E88BF71836 /* react-native-splash-screen */ = { - isa = PBXGroup; - children = ( - C9761CD65CD28E48AD431D2CADE56D77 /* RNSplashScreen.h */, - 127F912C8B415191F86EC0E2753DA599 /* RNSplashScreen.m */, - 41E09B3A44547CD4E53D37EBE2D67DC0 /* Pod */, - 7B0BC7937E079209C3B0BE3CE96D1A85 /* Support Files */, + 6226D840D68F47EE981F951306844C19 /* Modules */ = { + isa = PBXGroup; + children = ( + 5FBE610AD691C44574E2F71AE15C0439 /* RCTAccessibilityManager.h */, + FE0CB1E9A3F32780017E341B3AAB6126 /* RCTAccessibilityManager.m */, + 4DD5A0B14466337BCE3EC72821E56E4D /* RCTAlertManager.h */, + ED7F4E2DCAFBBE893DC1BBEC06DB4AFB /* RCTAlertManager.m */, + BB283442FA1599B9711E096AC26D4B6A /* RCTAppState.h */, + F04FA91948976F37B5EA76A6B9FEE5BF /* RCTAppState.m */, + 2D05475EEC9613DA4B7F417838917F8F /* RCTAsyncLocalStorage.h */, + 41AA37830646A7505F0BD1FB4B11EFEB /* RCTAsyncLocalStorage.m */, + 0B97AD63C1A35D433767EC6A1B60DA0E /* RCTClipboard.h */, + D956A2DB8F3191461E2E03D39F968421 /* RCTClipboard.m */, + 14A458304DFE221C61A5B6602C32FC0B /* RCTDeviceInfo.h */, + DB8896936FC90153AC5C4A2CCFAC1073 /* RCTDeviceInfo.m */, + 67DBBD813B61D652667BE09BFFA4C9BD /* RCTDevSettings.h */, + CF56ED05321A0A3CFB66FF9AF356FD12 /* RCTDevSettings.mm */, + 8D502D2218A7F591BFEB0939D93DC8A8 /* RCTEventEmitter.h */, + 298ADE80A6340C75F571A7F31738D964 /* RCTEventEmitter.m */, + A377AA40928EAA4EADADBABFD736F165 /* RCTExceptionsManager.h */, + 15E8BCE0630549F294E4EE77E2A829A4 /* RCTExceptionsManager.m */, + 3773C7EE7F2E241B499128123193872E /* RCTI18nManager.h */, + EF55E77FBB890620897539EE8E410239 /* RCTI18nManager.m */, + 3E9F7F3A247ED78956B212405025F11B /* RCTI18nUtil.h */, + 998D7A71BF5488B67585E441F8D0F67F /* RCTI18nUtil.m */, + ED25FDEED89D33AC4377D9AEB66F7CAC /* RCTKeyboardObserver.h */, + 76FCFEA1AB935CF4F581AE5DA1E1546F /* RCTKeyboardObserver.m */, + 35695EFEF2CF560DE3449A89233ECD5F /* RCTLayoutAnimation.h */, + 3D61DC35A55C833ACA0C55ED74D0C700 /* RCTLayoutAnimation.m */, + FEF7E5FF62FBD0CBFAEFBBECFF9F9B0E /* RCTLayoutAnimationGroup.h */, + AE8ED82B42096279F8891649956F6742 /* RCTLayoutAnimationGroup.m */, + 6B9B85CCB85EF863D6AEE37F9599579C /* RCTRedBox.h */, + 7A266BD0EA0D76366F7173850654802E /* RCTRedBox.m */, + D61732064A4B0F507C5C1C6083235AA5 /* RCTRedBoxExtraDataViewController.h */, + 49366E08DC95080D025D468AD6EA099C /* RCTRedBoxExtraDataViewController.m */, + 585DCDD494D8C78C8E8C347155F77D00 /* RCTSourceCode.h */, + C932F5702285DA164282616AC236A493 /* RCTSourceCode.m */, + 03C93A6D5E9F2B3F59586D6649159B39 /* RCTStatusBarManager.h */, + 2396B16B3040F32E2ACC187E715275DF /* RCTStatusBarManager.m */, + 0C81F86763D79B80578D5E45FBB8D992 /* RCTTiming.h */, + A087D2A3FF0EF044FF978FA6EC79BFF8 /* RCTTiming.m */, + F1EB6F9DAF3815628A2A7501E0CEA18D /* RCTUIManager.h */, + 1F0CF672C33BA34E532B9CD5AD106578 /* RCTUIManager.m */, + 26BF2261E94727A684EFAE1196413B0C /* RCTUIManagerObserverCoordinator.h */, + 6F851957B97E23C3925BD65153F74A60 /* RCTUIManagerObserverCoordinator.mm */, + FE6722C345411A079BA93E8063ADBB4E /* RCTUIManagerUtils.h */, + 84B2E2EE3FF192280B0F402420C43425 /* RCTUIManagerUtils.m */, ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; + name = Modules; + path = React/Modules; sourceTree = ""; }; - 61732052366C01AE2AD7D0405C4D9820 /* Pod */ = { + 641A583F5B6C8CDDF7A7C7DD4F43439C /* Support Files */ = { isa = PBXGroup; children = ( - 76C577F39BDA1D3D359845B58D76A5C9 /* UMImageLoaderInterface.podspec */, + 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */, + 7ECE1CF94802F266870C32A042C6A6AE /* FirebaseCore-dummy.m */, ); - name = Pod; + name = "Support Files"; + path = "../Target Support Files/FirebaseCore"; sourceTree = ""; }; - 62702C2AD6D5481E806F4CCCE5BE1DE1 /* Support Files */ = { + 647ED6B9F278F7366F399477C6687951 /* Support Files */ = { isa = PBXGroup; children = ( - 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.xcconfig */, + 04799348BADCBB02946FF664E2CD91CA /* UMBarCodeScannerInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; + path = "../../../ios/Pods/Target Support Files/UMBarCodeScannerInterface"; sourceTree = ""; }; - 641A583F5B6C8CDDF7A7C7DD4F43439C /* Support Files */ = { + 64B5C02D36852AF088E6E3D3EF508A3D /* Support Files */ = { isa = PBXGroup; children = ( - 378AAB43F6447375572F48EAA16ACF04 /* FirebaseCore.xcconfig */, - 7ECE1CF94802F266870C32A042C6A6AE /* FirebaseCore-dummy.m */, + B4E23C8291E1D6B7748767C5595A9840 /* UMCore.xcconfig */, + 55CBB8F4113EEE690294787F140CE5F0 /* UMCore-dummy.m */, + 0BAE7D173C69097325C108F1FDBF3337 /* UMCore-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/FirebaseCore"; + path = "../../../../ios/Pods/Target Support Files/UMCore"; sourceTree = ""; }; 64D5ADFE66A831C57B21155A1D450359 /* UserDefaults */ = { @@ -4127,76 +3915,202 @@ name = UserDefaults; sourceTree = ""; }; - 65F7A9589DDF3FF7AAA46696E23E681D /* fishhook */ = { + 695F14F5C911ACECC1375EA56E53BEA8 /* Support Files */ = { isa = PBXGroup; children = ( - 739A7736657BD48D2E30CEF963896A54 /* fishhook.c */, - 49159153A4FDE38C500578FA94C253BE /* fishhook.h */, + AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */, + 7228F1A5DD1E7449CFFAA650E17D8BF7 /* GTMSessionFetcher-dummy.m */, + 833461056D9A489B4099E8A0F59BBFE7 /* GTMSessionFetcher-prefix.pch */, ); - name = fishhook; + name = "Support Files"; + path = "../Target Support Files/GTMSessionFetcher"; sourceTree = ""; }; - 67E07740912F5F8C93089C9D832084C3 /* Support Files */ = { + 69AE7B73118214327FC7CAEB67F8526D /* React */ = { isa = PBXGroup; children = ( - 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.xcconfig */, - E928C14C9CA406B961ECB44E8B747C57 /* react-native-document-picker-dummy.m */, - B1C1A6678EFAC8129B79CE2AA56E1E76 /* react-native-document-picker-prefix.pch */, + A817EC4997CC3BDAB90C9378228DDAD2 /* Core */, + 9703693042DE987867BFDFF2510EA10B /* fishhook */, + 3DE968596D86E5F5A807BB74164CA24B /* Pod */, + 59EAC9B27BBEBE4D06636C18F39D114A /* RCTActionSheet */, + 2456E38240EA05F2A1C06B5C4911D139 /* RCTAnimation */, + 78FE8A721D17048284EBCA865213D67D /* RCTBlob */, + DA096581B71285F662A6E6DC2BF3F41D /* RCTImage */, + 30607CF3B30B7DD6A4F5B9A0B4C136D3 /* RCTLinkingIOS */, + AFFE2845B4B880D44235BB92E102256C /* RCTNetwork */, + 573B4066EFF7C5E412147F4AB7DF2D9D /* RCTSettings */, + CC3DA3F8E5BACC800DA8AB009D7703BE /* RCTText */, + 5EE23DF5858E6E47A19337A818F6BDD8 /* RCTVibration */, + 9E64073D821D5B174A5C13B09E5B1995 /* RCTWebSocket */, + 30A81F1A016F3280CD6F7AE7FBF9B473 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-document-picker"; + name = React; + path = "../../node_modules/react-native"; sourceTree = ""; }; - 688DC0AF21AA3A999DBB1BF4C9AD9B6A /* Pod */ = { - isa = PBXGroup; - children = ( - 03582ABF8F2C49917A06DFB77732C395 /* UMFileSystemInterface.podspec */, + 69EBA6C92DC4B196217726E2B558FEB4 /* Nodes */ = { + isa = PBXGroup; + children = ( + 0AE99833CE723840E7FBC1F95FAAFFDA /* RCTAdditionAnimatedNode.h */, + 4A562E39035EA6F7A65A2F499AF8F220 /* RCTAdditionAnimatedNode.m */, + 987BB4E05260418F92942F965DDF5116 /* RCTAnimatedNode.h */, + 3EDCDC0403670CC101959B55E0A8BB4C /* RCTAnimatedNode.m */, + 7380B6F798EAB5DDB16BCFD3F5374E73 /* RCTDiffClampAnimatedNode.h */, + 4D1E980B7514EAF3259E0574FC00ABAC /* RCTDiffClampAnimatedNode.m */, + F2AA1B74D0048866C46DA82422165773 /* RCTDivisionAnimatedNode.h */, + 7CBE627257CC2913E8DD954CB89DA8AC /* RCTDivisionAnimatedNode.m */, + 569CC37C0800BB57811047E4404D9A7E /* RCTInterpolationAnimatedNode.h */, + 15DBE6C1471B0FC0D90963A744131317 /* RCTInterpolationAnimatedNode.m */, + C4BCA140EA89C7A3B6A9D3AE19E91403 /* RCTModuloAnimatedNode.h */, + B9AEF3DD5FD8B42F1DA68082CF9E55EC /* RCTModuloAnimatedNode.m */, + F70D4C7ABB866BF3CFCEC46DED3D7979 /* RCTMultiplicationAnimatedNode.h */, + C88D7AD2B2D2F25A96C353E47A342EB2 /* RCTMultiplicationAnimatedNode.m */, + A85EAA14826EB2054D02BDC86098BBCC /* RCTPropsAnimatedNode.h */, + CF0CD3A58600E5998F546A5CF9EB1C8D /* RCTPropsAnimatedNode.m */, + 07B04C2FB2572B0D5A7F10F32FDA6A72 /* RCTStyleAnimatedNode.h */, + 6257BDC60E0997415FFC730D059CF499 /* RCTStyleAnimatedNode.m */, + D16EE0A72B6050EF54BC4341ABB3D8F4 /* RCTSubtractionAnimatedNode.h */, + 4EF703861ADC2B4CFD740A1C97B8C856 /* RCTSubtractionAnimatedNode.m */, + F8DA1AEA97F03FD29E7E2DF4DB7EC28B /* RCTTrackingAnimatedNode.h */, + F0EFC0D1FE8CC33786ABC404C7A930BF /* RCTTrackingAnimatedNode.m */, + 0F8226AB0169B49F5A297BDF6EAABAD5 /* RCTTransformAnimatedNode.h */, + 4F0F152F0C3E24AE52DAA9017313CBAC /* RCTTransformAnimatedNode.m */, + 85239ECBBFD07E09F702436F73D035F1 /* RCTValueAnimatedNode.h */, + 79B7CFC35B3671D959756BB364690FAB /* RCTValueAnimatedNode.m */, ); - name = Pod; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 695F14F5C911ACECC1375EA56E53BEA8 /* Support Files */ = { + 6B86D21EA6574709E66278377C0E2086 /* Views */ = { + isa = PBXGroup; + children = ( + F4423B717E9E41A193EF5066EDDF3598 /* RCTActivityIndicatorView.h */, + 70C888E22C032A482582B43128A9241D /* RCTActivityIndicatorView.m */, + 470A4D6779E73C33741CB80CC971C014 /* RCTActivityIndicatorViewManager.h */, + 8BECD015B3ACE496AF884BCDCAD6AC2E /* RCTActivityIndicatorViewManager.m */, + EFF6CB0C40451CEA24C8867BB565D25D /* RCTAnimationType.h */, + 4EC2C4C87D578E5BFFBFAB45848DB639 /* RCTAutoInsetsProtocol.h */, + 4F9D6196916CAD22A622E43A2B6A3696 /* RCTBorderDrawing.h */, + AF8EAB2CD76F37EC3D0D7A8C67D64439 /* RCTBorderDrawing.m */, + 4B5E3D8861444B50212F1A8B6FEB75CC /* RCTBorderStyle.h */, + 96B3D043A5291BF3693F10B2F1BAF428 /* RCTComponent.h */, + 4A092FE4E95DDB999644B6834337A3F0 /* RCTComponentData.h */, + 012CC4F4CE39BEA1113C719E1A03D9DD /* RCTComponentData.m */, + 0C2D0C4E3DD01CC23493A51405A42A5E /* RCTConvert+CoreLocation.h */, + DBC7C1FB496BADAF83466B5345AA83E6 /* RCTConvert+CoreLocation.m */, + 80F5F7D0AEAEF37EBDE43C19A67DD4D1 /* RCTConvert+Transform.h */, + 08F9EA87CD2C0E7B7A232D33E8D27672 /* RCTConvert+Transform.m */, + F43D364438EFBCA83A230500836E8291 /* RCTDatePicker.h */, + E5D819E66F5445E3A289D683321CC983 /* RCTDatePicker.m */, + 29AB01E8C988C69632B4D5ADC4D9D10B /* RCTDatePickerManager.h */, + B4FDF4E24F80800E969CD26763481445 /* RCTDatePickerManager.m */, + D952C17F373424C7EB20A25B8F0816DC /* RCTFont.h */, + A1E0CB9B64E015E085ABBDAFA0C4A0EF /* RCTFont.mm */, + 6324862968388FC93391066C21459338 /* RCTLayout.h */, + 6017026751C37A8A0FD8F350FDC895F2 /* RCTLayout.m */, + 8EA368A64722A2F9858521D7E630AADC /* RCTMaskedView.h */, + 9A8F23E93F343E355860B1A65AB10F6A /* RCTMaskedView.m */, + 10517D038E73A84BA63071DC7643E46B /* RCTMaskedViewManager.h */, + D22BF7FEEF84631A11BFCFDD91EEAE9B /* RCTMaskedViewManager.m */, + 2FCD795944EFDB3E8C45CDBD5A917960 /* RCTModalHostView.h */, + A28C059670E968893DCB314FA41AC08E /* RCTModalHostView.m */, + 94500A634A9DFCCF1AED4EB65B4E22B6 /* RCTModalHostViewController.h */, + 24AB796901D14448DD6CE6141BCD584B /* RCTModalHostViewController.m */, + ABA7AAE3AF482E96144879F1986B91A2 /* RCTModalHostViewManager.h */, + C399CD7AF462BB9E46F1FE13EB8D7C09 /* RCTModalHostViewManager.m */, + 496C41B48B597572205EF9B77DB757B7 /* RCTModalManager.h */, + A33CC448A60344C3A577ECF3E96D5F20 /* RCTModalManager.m */, + 5F51E2A6DC86D71E742DDDFEE9BCAEBD /* RCTPicker.h */, + 9B44C2105CDE569D2D5D56279695AD28 /* RCTPicker.m */, + 8DEF3102A1896A3567DCB476EB24B8A0 /* RCTPickerManager.h */, + 20CC907601F73CD2958F1D2249456EEA /* RCTPickerManager.m */, + C910D9985940CB9DFA2AE6B44E15A6CF /* RCTPointerEvents.h */, + 35049AAC69B3D33D5FF9F050EC9E80AE /* RCTProgressViewManager.h */, + 8BC93D90AB24AC3DDAFAA785145C79F7 /* RCTProgressViewManager.m */, + 3B5BA1FC000216952E131B2069430B0A /* RCTRefreshControl.h */, + 2D8A9DF4DDEAF8CCDB70BE5D240B2D46 /* RCTRefreshControl.m */, + 007861CAC2AD1B131FED6308B05B02D1 /* RCTRefreshControlManager.h */, + F55CED461FD33013B5620FBE382C5CC5 /* RCTRefreshControlManager.m */, + 36552EB74BE0C9D4E06E87CBC77562E1 /* RCTRootShadowView.h */, + AB7840A7A6F05ADA2D5C75E34FB41378 /* RCTRootShadowView.m */, + C82B2B32BF0A98BDDEB578ED5296F08A /* RCTSegmentedControl.h */, + 2E9D2D860B9119D4EE4AD76DA0F1E665 /* RCTSegmentedControl.m */, + 22BDB39123DE4CFDED08760DC5AD3D9E /* RCTSegmentedControlManager.h */, + 5F3C01234A9411013A3F4E42CBE90098 /* RCTSegmentedControlManager.m */, + 37C87788C56409200810B88249E769F1 /* RCTShadowView.h */, + 386BD85FD58E4AEBF63F178AC6E1E44D /* RCTShadowView.m */, + 0C27CEA303A1BC6D1A9121157169DAB6 /* RCTShadowView+Internal.h */, + 889F03FCBFC49C2CB3394A0F44932A60 /* RCTShadowView+Internal.m */, + DE5587953C9FA2FB8B884FAAAC0F6159 /* RCTShadowView+Layout.h */, + 971B7AC0856A99D8A38F2D96475E6014 /* RCTShadowView+Layout.m */, + 158A1C06C54E900C84FD004C91766406 /* RCTSlider.h */, + 5A4B55A616D7106D4AB00876E018A6DB /* RCTSlider.m */, + 666353E6CD317D4C671BC2E14AB4F4C2 /* RCTSliderManager.h */, + 84720C7C74724FD3BA9A8E1D950E1A7F /* RCTSliderManager.m */, + DD7A06453E2EB96C64A69660E62A35DD /* RCTSwitch.h */, + 977D131D79DBB852EA70FF5A961D9AAD /* RCTSwitch.m */, + 2256AF91C293424565B8693C696CC776 /* RCTSwitchManager.h */, + DC532CF9AF7C56DBC1EBADEC7782AD60 /* RCTSwitchManager.m */, + B10D758C2B43FF6BDE10429A20AEA30B /* RCTTextDecorationLineType.h */, + 41FA85B01A80408827573E48A4761B56 /* RCTView.h */, + DBC26C1CDA31F58543B77AAA6B1C2280 /* RCTView.m */, + 2B5FD5AC0B922882D7C3B67E3314F737 /* RCTViewManager.h */, + 0C829A14B9E2891E18BC023993B2698D /* RCTViewManager.m */, + EF8A8DC49CA3E5D37221D6F3804E2108 /* RCTWebView.h */, + 5CEFE8D9A9AA343EDDAD991C475D71F6 /* RCTWebView.m */, + B5343997B2E6E2AB1889121AFFF37BA7 /* RCTWebViewManager.h */, + B0461E1DCA29D41DDFC2168E580AA8E5 /* RCTWebViewManager.m */, + 2B5D44ADCA18D7B9DB3064B0387EBCA8 /* RCTWKWebView.h */, + 98C9B6495A315F12DF0F0BBF0F809799 /* RCTWKWebView.m */, + ABBC6EA849AFF792A1A52E4003A78328 /* RCTWKWebViewManager.h */, + 83362C6819433DECA0881033CB70BB5B /* RCTWKWebViewManager.m */, + FAF11A789ED046A5EC6B8309A5AA324B /* RCTWrapperViewController.h */, + CEE2CD49C3BD4F44F54B7F305BDDA25C /* RCTWrapperViewController.m */, + 96C1E9FECCF9957E56DAD4714555F69B /* UIView+Private.h */, + FB3CC529B3CD124790706FD5A5868B2C /* UIView+React.h */, + 035418379C06BE517C187FE85A054171 /* UIView+React.m */, + 11079311D0FE4E27FFE88851828FD68E /* SafeAreaView */, + 788EEA1C4F9B51FC05C9564FC9AA4C5F /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + 6CD9B10DE8A5FA93B821BDB194F14285 /* Support Files */ = { isa = PBXGroup; children = ( - AC7124E4822DB66558352E10DD54CBFA /* GTMSessionFetcher.xcconfig */, - 7228F1A5DD1E7449CFFAA650E17D8BF7 /* GTMSessionFetcher-dummy.m */, - 833461056D9A489B4099E8A0F59BBFE7 /* GTMSessionFetcher-prefix.pch */, + E8368B943061A344453110026B8C881F /* UMTaskManagerInterface.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/GTMSessionFetcher"; + path = "../../../ios/Pods/Target Support Files/UMTaskManagerInterface"; sourceTree = ""; }; - 6A9659952CFC20DAF6368F779FD25706 /* Surface */ = { + 6F1F74FFDAB367299EBEDC752BF9AFA3 /* Pod */ = { isa = PBXGroup; children = ( - 9EC25853E75C57E1523E78AB5BCE00A2 /* RCTSurface.h */, - 0BB45AB28FE66209EECDD5939F6CFD78 /* RCTSurface.mm */, - C0DE0022AD1DC91E870FCC61A28189BE /* RCTSurfaceDelegate.h */, - 5419204EE00E59FC874A55C46F153D6D /* RCTSurfaceRootShadowView.h */, - 17FB9BC182E05A836B45311886723FF1 /* RCTSurfaceRootShadowView.m */, - 6F82F325D530BDDAF3B5EEFCFB0411D9 /* RCTSurfaceRootShadowViewDelegate.h */, - 2039655505827A180E799523D0C59074 /* RCTSurfaceRootView.h */, - D5BA6F8CDE5B0E880EAB4A3D0521D6CC /* RCTSurfaceRootView.mm */, - A0AB297E98B6C8A6C65F0DF2D636893E /* RCTSurfaceStage.h */, - 1E667B3C96D4F999D2410D9B2AB9CCAF /* RCTSurfaceStage.m */, - B35C75E66CAE756935001764673693A0 /* RCTSurfaceView.h */, - 66D0F358A416D7411CBE30E3A6E5571F /* RCTSurfaceView.mm */, - 7DAD5E4B525E5A44ED572B37F5F1C820 /* RCTSurfaceView+Internal.h */, - FF95C3FFA2A75EC3C1A9BBCC3DACE1A5 /* SurfaceHostingView */, + 70E97D4C8A8F0E19829E48D05FC41083 /* EXAppLoaderProvider.podspec */, ); - name = Surface; - path = Surface; + name = Pod; sourceTree = ""; }; - 6FD0E2C4BBD04D03E984E8CAA283611B /* Support Files */ = { + 6F8EE15BA322BA34CC464064A80B19F8 /* Protocols */ = { isa = PBXGroup; children = ( - 7C9619DE9593734D5AC0F94D7FDF851F /* react-native-orientation-locker.xcconfig */, - 45678E0D230C8C88D1244A897B54EFAE /* react-native-orientation-locker-dummy.m */, - D5CF3F1EF50886879A3A88AFF4009484 /* react-native-orientation-locker-prefix.pch */, + 85DB4BBD1D7C604D3B61AE4E0B4F697C /* UMAppLifecycleListener.h */, + A8B935D2F5E9649533D91AEA1A080454 /* UMAppLifecycleService.h */, + 6719C0CED787A95CCE7D3CFD54B344EA /* UMEventEmitter.h */, + 4A0F7E860ED61D48C06BFFC7B7C91FBF /* UMEventEmitterService.h */, + D694638ECDE446160A11CE7C443A9F4B /* UMInternalModule.h */, + BB23D727D6DC17ECBE7902E7C21C7FFB /* UMJavaScriptContextProvider.h */, + 2E4B449F06F1604344EB2DF8F09022CC /* UMKernelService.h */, + EF90FC5992D5E7F14FF1D78CEA0948DF /* UMLogHandler.h */, + AFE35FBC793806FACA040539D346BBC8 /* UMModuleRegistryConsumer.h */, + 58C501BCAB1C88C37707F9F125599661 /* UMUIManager.h */, + 6F19DE6D3EC387FCC9908A1D7BDE4FEE /* UMUtilitiesInterface.h */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = Protocols; + path = UMCore/Protocols; sourceTree = ""; }; 70762B0582BC2A467644A69BD840DA98 /* Support Files */ = { @@ -4210,16 +4124,16 @@ path = "../Target Support Files/DoubleConversion"; sourceTree = ""; }; - 718E8CC121346575775637004EB01B67 /* UMBarCodeScannerInterface */ = { + 7150F8944B8D9E725DDA8BD809C27A88 /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - 8AD54F5D93130676A1EBDEC6F1D91059 /* UMBarCodeScannerInterface.h */, - 755EBB24F0F2AF4ABC96112910076E99 /* UMBarCodeScannerProviderInterface.h */, - 95A1AAB935E3B6F3C935FF16BFE4C582 /* Pod */, - 3DD57CD372B61DAA93718DAD46191979 /* Support Files */, + AA4329487DDE9265B304E7AA19AE9529 /* Orientation.h */, + BF3BD50928E3093164C316A547CA46DB /* Orientation.m */, + A353455D80C7F901D82CA643DE45C955 /* Pod */, + C2FA21EE9462577CD0690F7AE94122A9 /* Support Files */, ); - name = UMBarCodeScannerInterface; - path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; 71B0BFB486A87D59EE40E41812FEF850 /* Support Files */ = { @@ -4231,130 +4145,26 @@ path = "../Target Support Files/boost-for-react-native"; sourceTree = ""; }; - 71E5006FC0B6D1F91FCB06840B2029CA /* Base */ = { - isa = PBXGroup; - children = ( - 5E7EF2A91C8C320D932C4F7C42E6CC7E /* RCTAssert.h */, - FC1C996686A1F90C85CD90B283C45718 /* RCTAssert.m */, - 21DC604AEE66B5EE0E5BD031F2C959B8 /* RCTBridge.h */, - 3B778136501A6230F2FF88C52F56DD8D /* RCTBridge.m */, - EAEB8B7D74C586229A49D42A0E320D19 /* RCTBridge+Private.h */, - 49CA5986950067CEA5A6219E63D41349 /* RCTBridgeDelegate.h */, - 3A661AD17FFBAF7F488FF7A504646504 /* RCTBridgeMethod.h */, - 06EC3E9E278989CB18DB212AFA60A879 /* RCTBridgeModule.h */, - 11A15A252F18D6812482C6F38982085D /* RCTBundleURLProvider.h */, - B97D6B3E6BE99827CE1C25FCB858E83C /* RCTBundleURLProvider.m */, - AA949BD556386D8F86C066563832B363 /* RCTConvert.h */, - 5CE3172E3F8B84D856023FF63BC204B7 /* RCTConvert.m */, - 4E562CAB1F4E2736432E19B7B6E87F87 /* RCTCxxConvert.h */, - 2874BC72566B368977EAC98634FDB1DC /* RCTCxxConvert.m */, - 0695A3F3BB62B830B2659E8E4A8F5AD1 /* RCTDefines.h */, - CB40424474E4450C43F1D567643247BF /* RCTDisplayLink.h */, - 838CE0A524A9BFE592B14C1114CEBC4A /* RCTDisplayLink.m */, - 8861A2E4A89ADE152A17D576BFDD7658 /* RCTErrorCustomizer.h */, - D4C9853A162E110003E63A2C77CDF6DA /* RCTErrorInfo.h */, - ECEC42AABDB60647DFC254D0D36C4840 /* RCTErrorInfo.m */, - FF989EAE5950A3B7029120BF819FC3D0 /* RCTEventDispatcher.h */, - C6D6727FB427F2F11F0E655687F52C70 /* RCTEventDispatcher.m */, - E81397F2569E875C452758A4E7315E13 /* RCTFrameUpdate.h */, - 1C114DDAD1165D430FB0128DECA1DD6C /* RCTFrameUpdate.m */, - 1E24E3899E9008960CF08C5FF92E9DA0 /* RCTImageSource.h */, - 44CC9C6744E46E695B59227BC3EBA162 /* RCTImageSource.m */, - 2B83F8FCB805DB9022EA00C30FB56B14 /* RCTInvalidating.h */, - E24FCCDAE287E29E82358408CA3C2D37 /* RCTJavaScriptExecutor.h */, - 432064AEBC8B44129D819261DB9BB286 /* RCTJavaScriptLoader.h */, - C67383D0AF70F2E2A7BB47E5A88BE66C /* RCTJavaScriptLoader.mm */, - A3A54BF0C1F02B22417B0FF9E6CB5402 /* RCTJSStackFrame.h */, - 612E87842C8211908C4495C9188EE21D /* RCTJSStackFrame.m */, - 51E708DA0A9C14F35DD05A9DCCC21217 /* RCTKeyCommands.h */, - 71BD25DC2A473B72A2B6D5B498555F86 /* RCTKeyCommands.m */, - 5E5C57C3F09EA49FB14D2E70C1AB3C41 /* RCTLog.h */, - 7747133CB90512689C8EA90EE1341B77 /* RCTLog.mm */, - 9EDC90945743756D56B7EDEF76F71020 /* RCTManagedPointer.h */, - EC7A2943F3A4FE81ABCE3C9BA79596DB /* RCTManagedPointer.mm */, - 81229E7BA982B90815E3B704711C1683 /* RCTModuleData.h */, - CFC198466623951BAB94A47122750183 /* RCTModuleData.mm */, - E71BE6475BF9C92E753E8D5D991332C7 /* RCTModuleMethod.h */, - F4ED9DFA4844C96F7BC6E6BD607C3C16 /* RCTModuleMethod.mm */, - 31D92F756446ACCF493B74AC39028F5C /* RCTMultipartDataTask.h */, - 041D321E945275712137D8AAD409F514 /* RCTMultipartDataTask.m */, - BCFA168B7A3D1BAB291F58C67DD31281 /* RCTMultipartStreamReader.h */, - B51A1C84A136169FA8964A1B7DD5FA95 /* RCTMultipartStreamReader.m */, - CCEE4F7E63FB943730904F4833447B5D /* RCTNullability.h */, - 038A2011AC8677988781CBA4F80BCDEA /* RCTParserUtils.h */, - A64F83D84FBE9EC4A8E8556A498CF948 /* RCTParserUtils.m */, - 2D0691D0AB3567DD03FB1BD831456F56 /* RCTPerformanceLogger.h */, - 114DA39D192F75C48D0BCFDE068BB5F1 /* RCTPerformanceLogger.m */, - 5750F3E6A2AA50C6FF6AA2DD3170DB67 /* RCTPlatform.h */, - B6E5B0E6C559A02790CEDF635455BAC6 /* RCTPlatform.m */, - A5FAEDFB4A250C3244763B36AA489C90 /* RCTReloadCommand.h */, - 2A48F5A061224C167FB239B2E1C612B6 /* RCTReloadCommand.m */, - 32FDC3D31CB29B257DC3BE2114033AF1 /* RCTRootContentView.h */, - 8AC1ECCEBE98EC21E41B286C7D87BFE5 /* RCTRootContentView.m */, - 8C3DEED89DFCC68C97F4E5B0318BB31E /* RCTRootView.h */, - 028687FDDB3162866BB092E57CEE3113 /* RCTRootView.m */, - 970C19976279473D3339CEF84E4F1976 /* RCTRootViewDelegate.h */, - 7EC62407C213D641C084B8982037FD72 /* RCTRootViewInternal.h */, - D944AF06DC39B934D33D00CA4330AA9B /* RCTTouchEvent.h */, - 6E39E7D7708C363FA17DE810515F8A00 /* RCTTouchEvent.m */, - 56CC963AEEF20D3D02D0A547B7C8275E /* RCTTouchHandler.h */, - 9E8DBE5F9A20BE2D3FD830A7EE2DE66E /* RCTTouchHandler.m */, - BCFB483958DAE4EDD2E7B41B8DEA8156 /* RCTURLRequestDelegate.h */, - 11AE43F67658221783C00F77B5A05FCC /* RCTURLRequestHandler.h */, - 936F3813673F74017A7D3974D70CFFEC /* RCTUtils.h */, - DD54DDEA8CBF5403C7237C3E351EAAFB /* RCTUtils.m */, - 600A53DDA7B71049FA55035529E60C61 /* RCTVersion.h */, - 5B3327C8B6A38BF190B2AA888DD7E075 /* RCTVersion.m */, - 6A9659952CFC20DAF6368F779FD25706 /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - 756893E803E691282EE3E1F4846862E6 /* BaseText */ = { + 74C3282DD11ACB203ECFDD852DCE3C9B /* Support Files */ = { isa = PBXGroup; children = ( - 1091C019674D2BFF76B94607EC7CD0FB /* RCTBaseTextShadowView.h */, - 5B069C131AFA870F406AEEA75A8AEEC4 /* RCTBaseTextShadowView.m */, - F9C214A40C36EAAD0F5701D8022693FA /* RCTBaseTextViewManager.h */, - D5A7DAC61F948F8F9DC50843B518E87C /* RCTBaseTextViewManager.m */, + 0559A5BB087D9A0ED6FF57A53DAC8C88 /* RNLocalize.xcconfig */, + 2137B90FD471FEDF11AA8F200058BA43 /* RNLocalize-dummy.m */, + 340483C25F2752D63DE4E74885A2D4FD /* RNLocalize-prefix.pch */, ); - name = BaseText; - path = Libraries/Text/BaseText; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNLocalize"; sourceTree = ""; }; - 75D0283661CAFF4749D81968846D67AA /* Nodes */ = { - isa = PBXGroup; - children = ( - D8926E17B143BD65BE649ABE4A94AE24 /* RCTAdditionAnimatedNode.h */, - EC2269E126D621AB1E66CF1DB22D6E7A /* RCTAdditionAnimatedNode.m */, - 59ED33093AE35BF1B618556219072CB8 /* RCTAnimatedNode.h */, - 02F83E97A0FE46EC0B5F0F49EE2A3DB6 /* RCTAnimatedNode.m */, - 5CF5D732BAB724EF51C5903942CC6B51 /* RCTDiffClampAnimatedNode.h */, - 54BE76A522C9DABBC35493B27C458A39 /* RCTDiffClampAnimatedNode.m */, - 865DE2323FC3A3421462A2A91301343B /* RCTDivisionAnimatedNode.h */, - 23FCB7B958C238F900BDE295D6EA6A20 /* RCTDivisionAnimatedNode.m */, - 997F9254809558E4F99886F52DC16625 /* RCTInterpolationAnimatedNode.h */, - AFE53E856D2D3453D69F88987D9B4290 /* RCTInterpolationAnimatedNode.m */, - 647A2D104D639DD94A4305CABAF06022 /* RCTModuloAnimatedNode.h */, - 03A1D5BDF26AE993D32E8CA1FEC5ECCA /* RCTModuloAnimatedNode.m */, - 150097019E4858507C8959CF60FC0322 /* RCTMultiplicationAnimatedNode.h */, - 1929B7E531E232773EDA047347324E93 /* RCTMultiplicationAnimatedNode.m */, - 37883D95D5D7529CBE8638392C856871 /* RCTPropsAnimatedNode.h */, - 533D6BFB91D7A458BC726FE1222BE85D /* RCTPropsAnimatedNode.m */, - 183C6EBF70401B1425D41AEF4161F091 /* RCTStyleAnimatedNode.h */, - C3AD7BA5C163241E1E65364D26072824 /* RCTStyleAnimatedNode.m */, - D616628FAB61D0DF8B176C02C7EADA32 /* RCTSubtractionAnimatedNode.h */, - 3F8A3BDAAA1AA90414AB0385713C4B28 /* RCTSubtractionAnimatedNode.m */, - 423E31257B82A0A0E656FD66322616E8 /* RCTTrackingAnimatedNode.h */, - 8CAC5BFA8B1009021DC5A88FDD6419DC /* RCTTrackingAnimatedNode.m */, - 6E5E0610745F4E4308299B84727BCC34 /* RCTTransformAnimatedNode.h */, - 688FCEAA10FD16A660802F663039A8B6 /* RCTTransformAnimatedNode.m */, - AA78F887998852EABAED8775C5279A49 /* RCTValueAnimatedNode.h */, - 0EF37620C76E2F0CE32163DFBEA0B009 /* RCTValueAnimatedNode.m */, + 75D2B1B3B73A951CB373B7F22880889E /* Support Files */ = { + isa = PBXGroup; + children = ( + 7A5F6BFB6726AAD76EE7C861E1E86256 /* RNScreens.xcconfig */, + 95A60E39B3779D451DAF8FBAA59907C0 /* RNScreens-dummy.m */, + 2524CFF625433FE9CB5B4F7F44F0E173 /* RNScreens-prefix.pch */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; 762603A95890769E48FE92655C29EAB8 /* Logger */ = { @@ -4366,73 +4176,32 @@ name = Logger; sourceTree = ""; }; - 7721A1AB4BC2125A272CA4A14C433FFC /* yoga */ = { - isa = PBXGroup; - children = ( - 13410CAFB030BCA55ABD16F4561D78BD /* CompactValue.h */, - 34DFAF2D1DED544692E495C783EF7E82 /* instrumentation.h */, - 0F531AC7EF738B44C66AB3A306585BD7 /* Utils.cpp */, - 751B6FB6DE9B5B296B0C4CF7E0F625C9 /* Utils.h */, - DCBB427CB227193DA6236812D3D8A754 /* YGConfig.cpp */, - 4E35DF6C0874AF4CA50F6D2C650272A0 /* YGConfig.h */, - 026462320DF0A64CDFA59DC46E5A77D8 /* YGEnums.cpp */, - DC01493F439984AB671E13BA523D2B40 /* YGEnums.h */, - 4563015111A319DAA36733D21E4E32A4 /* YGFloatOptional.h */, - 0DECA38109375851DE9F22197028E797 /* YGLayout.cpp */, - A519FB84482B64E2D65FA64E361C2956 /* YGLayout.h */, - 46B0BA5CC740171CCC1DBF9EE7E4BE7C /* YGMacros.h */, - 97117171D9D65E650FCB6E4EA37E2016 /* YGMarker.cpp */, - 4C9888A3379C92194BD14FCA592E7445 /* YGMarker.h */, - 62B8E9E1E88EB990E7AC76F3B6B38A71 /* YGNode.cpp */, - 8C4838D77CAFA6A9F6153336C544453F /* YGNode.h */, - 4CDCC731A2FBCA55937C58A6A91FE275 /* YGNodePrint.cpp */, - 18243DD4D0C8AA2DCCE5655F82047778 /* YGNodePrint.h */, - 0AD5147A7096B8945A3779108CCF2878 /* YGStyle.cpp */, - 2562A926A6486480497E1D7816A3BBEE /* YGStyle.h */, - D6B036858181751E543BD79C7B405FF3 /* YGValue.cpp */, - C1F2B38EAD7C5B9C5D033EBF142E50F9 /* YGValue.h */, - 5A0D73F18FB51763AE9C6751ACE6E9CB /* Yoga.cpp */, - A24F0D17F9FBDCCCEC4C22FD731397F3 /* Yoga.h */, - 2956C0FE9045D44B70E5AE4C42F3FC5D /* Yoga-internal.h */, - 591C07F0849F9751BD563022B3E9B00D /* Pod */, - A2E51DB29CE2F4EA773C1942742EB8FF /* Support Files */, - ); - name = yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - 7760BFEFE689C497A372D9C2DC06FDA2 /* UMCore */ = { + 788EEA1C4F9B51FC05C9564FC9AA4C5F /* ScrollView */ = { isa = PBXGroup; children = ( - B0F7B8927FE9B5F5E66A0FE7925FD7F6 /* UMAppDelegateWrapper.h */, - AC4EE92D0E6B236B9F7EBA7159334C44 /* UMAppDelegateWrapper.m */, - F32735F3F9AEE7E85996C828D31C7B09 /* UMDefines.h */, - B1BB4F779DE264BB7D5C4D952CA67323 /* UMExportedModule.h */, - 663D14443F7FD0802F2D812B2153AEAB /* UMExportedModule.m */, - 96AC5B4DA48481B642C0A6B43FF61EA9 /* UMSingletonModule.h */, - 34C600FE6F8F95748E3897D028F4246E /* UMSingletonModule.m */, - BA47D24FCD6B487BD75C30DC007D3C67 /* UMUtilities.h */, - CA9D21CE6138DBD4F0BA8799DB6E6E16 /* UMUtilities.m */, - 210B584824E97369E8F8B10D150C27F1 /* UMViewManager.h */, - FD714FE59015A6D32C235D297DDE6207 /* UMViewManager.m */, - EB3D48445B5B79ABE8262A584F760A94 /* Pod */, - 459DDEAC8A3E38EF22369BE53053E1B3 /* Protocols */, - 19CF214DE4DB403160C9256DE211A746 /* Services */, - C53D7019E356E0128C2877974ECC47D5 /* Support Files */, - 9900078BFF01C9ECB93DFB439F89EF1E /* UMModuleRegistry */, - 3124562268872FD3B1A39C24CE6FDDEB /* UMModuleRegistryProvider */, + C162188584F8CEB99FCAAB730CE8F0A8 /* RCTScrollableProtocol.h */, + C0FE924D1BED4207FD3F2A59E744ED17 /* RCTScrollContentShadowView.h */, + A8FA3CC0ABD4243D8C79EAC3C7DF955C /* RCTScrollContentShadowView.m */, + 7A0DC9DB1CF1C7E1452B27CF0D84149E /* RCTScrollContentView.h */, + 1085A3F50FD80A54D240855DADF7111E /* RCTScrollContentView.m */, + 34BD5367EB8B64F9F2FA3FC44F52D6F9 /* RCTScrollContentViewManager.h */, + 8F8C367E09DA149B66653CEC56A30695 /* RCTScrollContentViewManager.m */, + 5739CA50489BC3A33F3C087891F24AAE /* RCTScrollView.h */, + 017D19681796636ABF626CD121268578 /* RCTScrollView.m */, + 902525D94CCC26AAE0FE18E6937BEB4D /* RCTScrollViewManager.h */, + 3FDA314B2A5E5198660CD1E21B6FBABB /* RCTScrollViewManager.m */, ); - name = UMCore; - path = "../../node_modules/@unimodules/core/ios"; + name = ScrollView; + path = ScrollView; sourceTree = ""; }; - 78A9C31FF448E481192D15CB2D1EA49C /* RCTBlob */ = { + 78FE8A721D17048284EBCA865213D67D /* RCTBlob */ = { isa = PBXGroup; children = ( - F615CC887D9EAF7CAA992A33E04C75A3 /* RCTBlobManager.h */, - 270E4394E0A6B293743AD0F1251BFBAD /* RCTBlobManager.mm */, - 288E5BA3E66031E7E9D26F55B4207399 /* RCTFileReaderModule.h */, - 4133B33AD49733A3EA36BC520C173B9A /* RCTFileReaderModule.m */, + F48CBC11B22925A278C6258D9AF707FF /* RCTBlobManager.h */, + BCD9B3C74A07ADCDDB9F35EDF1925ADC /* RCTBlobManager.mm */, + 8F99C01A37C1D22B04DDB86B7B2626C9 /* RCTFileReaderModule.h */, + AA421C702E8F7210B66AE39177EDCAEB /* RCTFileReaderModule.m */, ); name = RCTBlob; sourceTree = ""; @@ -4462,15 +4231,38 @@ name = CoreOnly; sourceTree = ""; }; - 7B0BC7937E079209C3B0BE3CE96D1A85 /* Support Files */ = { - isa = PBXGroup; - children = ( - CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.xcconfig */, - E7CA4B021924C03E3DD9695981FE8001 /* react-native-splash-screen-dummy.m */, - B56AB4E4CC67B0F39DC3DD6891DC936A /* react-native-splash-screen-prefix.pch */, + 7AB8BF4D01F0B17D62C2AF08A7D27C0D /* EXPermissions */ = { + isa = PBXGroup; + children = ( + 9D61748A16F076B54798F8F3D2927DF8 /* EXAudioRecordingPermissionRequester.h */, + 293F28195F43C199AEEBA138E9665072 /* EXAudioRecordingPermissionRequester.m */, + BD9D375A0135A74B09F54D4C4E59DC47 /* EXCalendarRequester.h */, + 75557BDC533CD1F7D49CF38B803CC4F3 /* EXCalendarRequester.m */, + CFF49C56E787C9F802A097E310272EA1 /* EXCameraPermissionRequester.h */, + 95FA0CBAB334DE140BEDB28F1CD384BC /* EXCameraPermissionRequester.m */, + B2F709F89E5553463AFB7F6E3A3C72AF /* EXCameraRollRequester.h */, + 926D2EC869E72CE5FC0432474062ACDF /* EXCameraRollRequester.m */, + 8E607111B23FED9067273B13FF232BEC /* EXContactsRequester.h */, + 40E18DA2E0266FBF26152531C20882BD /* EXContactsRequester.m */, + 4184CE45204B51F19E2053B7A1F683C6 /* EXLocationRequester.h */, + C50BE01867132C962614DDB0C92D61A7 /* EXLocationRequester.m */, + 9923FAE163C04AC239528B50FB5C31A9 /* EXPermissions.h */, + 8D40AC2807D71FB5CC9E4F06E7AF3F24 /* EXPermissions.m */, + B2CA4DC693C8466086CB7D79B5AD92DA /* EXReactNativeUserNotificationCenterProxy.h */, + 6C331D6B1B5AB94A8B3AB31ECF8F280A /* EXReactNativeUserNotificationCenterProxy.m */, + 071590C2DC6ED879FC032EDD5912B1C0 /* EXRemindersRequester.h */, + 8B62FA215569F5BF4B9C37847B5EF335 /* EXRemindersRequester.m */, + 76AEC6E9D04F12D3C44C864B2F7682C1 /* EXRemoteNotificationRequester.h */, + 14DF4AEFCDD3C078B69AABB46E48BF64 /* EXRemoteNotificationRequester.m */, + 933A81D328BAE34EBFBDBC878A310980 /* EXSystemBrightnessRequester.h */, + 35FAD02A7FAEEE9780AEACBA16F8F798 /* EXSystemBrightnessRequester.m */, + E4E323CE9FBD0AB4B6EA5F2261094124 /* EXUserNotificationRequester.h */, + 7843AB58D0C60A194189571D725D8DA4 /* EXUserNotificationRequester.m */, + 817D6433FEEE4114F5393C7DED162280 /* Pod */, + 2D12515E4598E16A72100812D034C476 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; + name = EXPermissions; + path = "../../node_modules/expo-permissions/ios"; sourceTree = ""; }; 7C48559015DEF4F593759881A93D9E1F /* glog */ = { @@ -4494,14 +4286,15 @@ path = glog; sourceTree = ""; }; - 7D2DC9DC724ADBEA00077C7C398C9557 /* UIUtils */ = { + 7D636059D40DD0D3DC07F65B1413513B /* Support Files */ = { isa = PBXGroup; children = ( - 960A6A17CFD5E7644DDE9B444F1FB88A /* RCTUIUtils.h */, - 579F75F6FEAB263868830687AF8BCC81 /* RCTUIUtils.m */, + 35F848B66ED5A1A759BFDAC9E2F0FC29 /* yoga.xcconfig */, + BA4BF7DC3FEA1EB3FE8983F7F8921FA7 /* yoga-dummy.m */, + 989738EC4DD51759354BA49761F7E9BC /* yoga-prefix.pch */, ); - name = UIUtils; - path = React/UIUtils; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/yoga"; sourceTree = ""; }; 7D97861288D65B04CFD2336E0071DF8D /* Support Files */ = { @@ -4513,6 +4306,18 @@ path = "../Target Support Files/FirebaseAnalytics"; sourceTree = ""; }; + 7EA29932695D0DBF338E540AC04D18D6 /* EXHaptics */ = { + isa = PBXGroup; + children = ( + 980B6CC34B8595669CACC46ED860D1E7 /* EXHapticsModule.h */, + 745B494873A826D94F99088E705B05A4 /* EXHapticsModule.m */, + 350B8F5581C8F1F6B58DB4114FE4B33F /* Pod */, + C9F3B7AE1D064FF2E33704DBA48F39DA /* Support Files */, + ); + name = EXHaptics; + path = "../../node_modules/expo-haptics/ios"; + sourceTree = ""; + }; 7FBFCDD5C01E400A2DA947FFD3D9C153 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -4530,6 +4335,32 @@ path = "../Target Support Files/GoogleAppMeasurement"; sourceTree = ""; }; + 80ABCDD5932EA5A41F69C8B64581B292 /* Pod */ = { + isa = PBXGroup; + children = ( + 7D05BBFCA2502FCCD6DEEAF2CA66B5AF /* UMImageLoaderInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 80D596E784FCC3BBD69DC763DF7DF32B /* Pod */ = { + isa = PBXGroup; + children = ( + 2F1D4DA345048A7249AD3B0C2CFD752A /* LICENSE */, + 2EB6A5B3A81C6427F414EB6C2BEA25CF /* README.md */, + 5868592AEB7FBC18A4148B8D7E546985 /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 817D6433FEEE4114F5393C7DED162280 /* Pod */ = { + isa = PBXGroup; + children = ( + 05295E0BAF0E842EEE07F7BEC4725894 /* EXPermissions.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 81D36261BF12B9A295B9BE0E0DDB0E4B /* Support Files */ = { isa = PBXGroup; children = ( @@ -4541,18 +4372,17 @@ path = "../Target Support Files/glog"; sourceTree = ""; }; - 81FC486351113FBA945A6922FD7EC122 /* Multiline */ = { + 81EBD4B99DA40F15083665E498D10849 /* EXAppLoaderProvider */ = { isa = PBXGroup; children = ( - E17B6543B311CAFA8804134B127F61B4 /* RCTMultilineTextInputView.h */, - C9CB7D304DD04F14ADDCF1FA7818AE48 /* RCTMultilineTextInputView.m */, - 888BFA19D1199419B777E38714CACD08 /* RCTMultilineTextInputViewManager.h */, - D8DA9110313A76B2AC5618810D021D45 /* RCTMultilineTextInputViewManager.m */, - DEC93D0837A9EACE50D36AB42ABA00EE /* RCTUITextView.h */, - 43D6ACD534F47AFBFF26145E0956F9D8 /* RCTUITextView.m */, + 84A9358736D3D81A36F81D05D1E4098E /* EXAppLoaderProvider.h */, + 0E5768EA43CB7875CE25DB2091EB3CE4 /* EXAppLoaderProvider.m */, + 0B284B27DDFBEA8E95A4FF941C40CE07 /* Interfaces */, + 6F1F74FFDAB367299EBEDC752BF9AFA3 /* Pod */, + BE05A5B80B4941ACFE029D3331A4B420 /* Support Files */, ); - name = Multiline; - path = Multiline; + name = EXAppLoaderProvider; + path = "../../node_modules/expo-app-loader-provider/ios"; sourceTree = ""; }; 8293B39959FA1FBF187A152B6B6A0C3D /* Support Files */ = { @@ -4566,61 +4396,16 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 84D1EC32AFF6CB750055338C60D16E61 /* Pod */ = { - isa = PBXGroup; - children = ( - F6AA524138805DA430C724041E4742E8 /* LICENSE */, - 8CDE1B9363F5B5A52414B3D7EED53400 /* React.podspec */, - 531D85B2F7BF494A0CE2FFD93F0CFAD8 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 856F45E0C33F23EDE283657A359BD0D4 /* Text */ = { + 8526F923E575B92203027A7D30CCD6C9 /* UMFileSystemInterface */ = { isa = PBXGroup; children = ( - 5F0C35B11D1E749588F69C61F1587E8F /* NSTextStorage+FontScaling.h */, - 66F256A6104111E853B12B823537153B /* NSTextStorage+FontScaling.m */, - 7808E35EEBDC3E4D79E96FC46AAC4DE8 /* RCTTextShadowView.h */, - 9CBF37D783FBCF065C627E76B1962256 /* RCTTextShadowView.m */, - 04A2A83674DBD94DF7FC4D9AFE06C9CF /* RCTTextView.h */, - 859631F60010BD1A4A0D69FBF576E22D /* RCTTextView.m */, - 485D50D7BFC9687A7C29756467E5E9C7 /* RCTTextViewManager.h */, - 12E7629120786009C83B744C17E0400B /* RCTTextViewManager.m */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 85995E69A09E200E81FA2640DBA3D49F /* RCTImage */ = { - isa = PBXGroup; - children = ( - F2FB2F97B1B6324FC7F47C781F5301F2 /* RCTGIFImageDecoder.h */, - 765BB06E332F1DDB985D0A2A9BD0E253 /* RCTGIFImageDecoder.m */, - 8DCC4ED073425430ACB88B74EEB15C9A /* RCTImageBlurUtils.h */, - 2D2C68E3E713B25594D842E9D9B634C4 /* RCTImageBlurUtils.m */, - 4B8BBCBB070351DFF65575D861D357A3 /* RCTImageCache.h */, - 68F770181F1569A7865F7A5FC782E840 /* RCTImageCache.m */, - A01E1A07EB6A8204F2104597E9A77FF7 /* RCTImageEditingManager.h */, - 91EB5D8288F63FFC089EAF2ED863590A /* RCTImageEditingManager.m */, - 629D90420A2F20F43A29C88552E97659 /* RCTImageLoader.h */, - DC21D94EE3031E2045C0C0890B2F1506 /* RCTImageLoader.m */, - 041A12F442279794A692067621FFD1A7 /* RCTImageShadowView.h */, - FE92E48E5B04DEFDBF3F9D1DE2D69469 /* RCTImageShadowView.m */, - 4CE6808B101A8216C4CA753D560B5BCD /* RCTImageStoreManager.h */, - 699F679A626C7359CCCBD0B1CA71871B /* RCTImageStoreManager.m */, - 3C36A8962D03A67E577C6B09E11EBFF7 /* RCTImageUtils.h */, - EB42551B3B22F5EBE62EBA642F5D8121 /* RCTImageUtils.m */, - 3E76908755FC2B9A8B7E43567117B5BF /* RCTImageView.h */, - 60A1AB1480F36294F6AA3B69AF8473E7 /* RCTImageView.m */, - 70930EE1A8493B1B9F936E66702CB83A /* RCTImageViewManager.h */, - 47A55DBB09F5BE29646497544E693C78 /* RCTImageViewManager.m */, - C69AD05A88E25AB493B5776520545AEE /* RCTLocalAssetImageLoader.h */, - FC4CB5AD065A832D25A342A4F4A29D36 /* RCTLocalAssetImageLoader.m */, - 87DD7DBCC0E780DBAA7C30E8726B428C /* RCTResizeMode.h */, - 696D040A55B087A2BE9DA4BE748E7F67 /* RCTResizeMode.m */, + AFCB933FAD90C7574A0D0082F6ABDA1F /* UMFilePermissionModuleInterface.h */, + FC0ECB3607B22F1B0AA3CDF015FD4333 /* UMFileSystemInterface.h */, + 3633668E808EC04BCD9CBB9F74D105B2 /* Pod */, + 04366EBC475203AD5EEE17977DF19492 /* Support Files */, ); - name = RCTImage; + name = UMFileSystemInterface; + path = "../../node_modules/unimodules-file-system-interface/ios"; sourceTree = ""; }; 85AC4B197013A70793286BD7623BD5D5 /* FirebaseCore */ = { @@ -4666,19 +4451,6 @@ path = FirebaseCore; sourceTree = ""; }; - 861F27824E66E148533FB638DD7CD54A /* EXAppLoaderProvider */ = { - isa = PBXGroup; - children = ( - DC96135AC6C0009BC8F36D80DF7A35B7 /* EXAppLoaderProvider.h */, - 461925FC1802935011DA256790C0BF92 /* EXAppLoaderProvider.m */, - FA564A437E49FE0E8688CCDA9DA06BE2 /* Interfaces */, - 4CFD99EE74DB318C2CB320AD61D2E320 /* Pod */, - D42072FF497AEB782348FCE23E435986 /* Support Files */, - ); - name = EXAppLoaderProvider; - path = "../../node_modules/expo-app-loader-provider/ios"; - sourceTree = ""; - }; 8626E3BD152CC634748AF21E205BA767 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4698,18 +4470,49 @@ name = MethodSwizzler; sourceTree = ""; }; - 87CAAD6630443C4AB48A67133895E56A /* RNDeviceInfo */ = { + 89EA53F78B4B65E680E1A0FBA3A4F650 /* Pod */ = { isa = PBXGroup; children = ( - C64056D32F066C90251D8F1E56AB1B12 /* DeviceUID.h */, - E98EAEC6C9E8BE7CEAA1A7C5AC870A81 /* DeviceUID.m */, - 54B82F8D20049A45DA627A7CB9FBA8E2 /* RNDeviceInfo.h */, - 8E867CAB95A604A5DB227E6F017F04B5 /* RNDeviceInfo.m */, - F848C6C4B6AE6965819244613B3EA4FA /* Pod */, - 2B12C0FA6975DE073FC7649DA834B90D /* Support Files */, + BD5264BE26F55C0C4833A38CE62BD145 /* LICENSE */, + 95BE51735D0BEC772F77E3CBBCA68595 /* README.md */, + B12DA81D61AF5598831E84C38736F817 /* RNScreens.podspec */, ); - name = RNDeviceInfo; - path = "../../node_modules/react-native-device-info"; + name = Pod; + sourceTree = ""; + }; + 89EBE27126EB2537779349B2ABE281E3 /* yoga */ = { + isa = PBXGroup; + children = ( + 24A5FAE9BA083293E5E8706FDEBFC6BA /* CompactValue.h */, + ACBCEF542F468E55DFEF49DD9A79712B /* instrumentation.h */, + 063C65DD224981BEEB195A18B1614BBA /* Utils.cpp */, + 8B528C2CA3CCCEDC62B9E9AA32C00E30 /* Utils.h */, + 5E41327C06C5320AD292B081B0B83986 /* YGConfig.cpp */, + BF1835452E2118377BCCA1C34B7A49C4 /* YGConfig.h */, + 3E919ACBB9305A4DFD437E7B4D4E352B /* YGEnums.cpp */, + BA40A0BB95533AC79A98A2BCE736E0C1 /* YGEnums.h */, + A2DD3760347AD6DA5D92351CB268A9D1 /* YGFloatOptional.h */, + 8C935CA55B51C771E890FBE600154CE9 /* YGLayout.cpp */, + C89DF540C9877A359AB232816C9E994A /* YGLayout.h */, + CE2DA584BD5F8B8AFB04C4D45254768C /* YGMacros.h */, + 2CE7960E6A5E27EDEA9ADA1D455391C1 /* YGMarker.cpp */, + F2380EE9D5D25BBA82FD4246691ABBFB /* YGMarker.h */, + 5AA00E71D7555779DB7C2C10E3BBC177 /* YGNode.cpp */, + F2C5E64DF0AD6057CA2C8D1C3005F580 /* YGNode.h */, + BC3FCA2B1D6D41344F2A0C272E3B4D20 /* YGNodePrint.cpp */, + DB422DF51B865432C5A40FC13A8F08E7 /* YGNodePrint.h */, + DA2A7186945F649F67E3BBB2E5FEEA76 /* YGStyle.cpp */, + 6D00743F04BE6CF13C35C241359BB186 /* YGStyle.h */, + 2FA1ADEAF947D72F8E26710C52F4D216 /* YGValue.cpp */, + 652E005DACB212DFCC834323A3642A7C /* YGValue.h */, + 214DE8F1530EE2253B24B246D728A517 /* Yoga.cpp */, + C33766D85CA2AF9422AB4FFACAD46A3D /* Yoga.h */, + E19CDE63BE4733D11802A487B94A5C92 /* Yoga-internal.h */, + F53098DA4DE2828EA8228AE28494A7C0 /* Pod */, + 7D636059D40DD0D3DC07F65B1413513B /* Support Files */, + ); + name = yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; sourceTree = ""; }; 8AD636CD55EE871DE57F398C552E84C4 /* Environment */ = { @@ -4721,55 +4524,89 @@ name = Environment; sourceTree = ""; }; - 8C9BDB38E9BB836D32C340A4C1023E9E /* Support Files */ = { + 8B25187D42725227C38EC7C5524BFA7B /* UMFontInterface */ = { isa = PBXGroup; children = ( - 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.xcconfig */, + 9FD48ADAE25F1F66D5A1883170651E2E /* UMFontManagerInterface.h */, + 5016F1C99E680AEE6A138EF439F59E9D /* UMFontProcessorInterface.h */, + 74022F3C701D9CF9A08B3BE1D10CFAC5 /* UMFontScalerInterface.h */, + 0751AA6D5F222EBD64458EDB547D1FF5 /* UMFontScalersManagerInterface.h */, + 0F521BEC3B2B3428C9E2FA5E99B00583 /* Pod */, + 1E60A4B023A56750C51BD45F3BC19FE6 /* Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; + name = UMFontInterface; + path = "../../node_modules/unimodules-font-interface/ios"; sourceTree = ""; }; - 8F8BD459EED16B4CE63EC0448F19E563 /* Support Files */ = { + 9043723B160FC3D0DE98F3B79264B9E5 /* UMModuleRegistry */ = { isa = PBXGroup; children = ( - C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */, + 86CFDEE0EC643256C6412EC41264919F /* UMModuleRegistry.h */, + 99CDEA48AA7C6A5DD74A61DF87922B21 /* UMModuleRegistry.m */, + EB564F0DB3C9367ECB2D38DBEA788314 /* UMModuleRegistryDelegate.h */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFontInterface"; + name = UMModuleRegistry; + path = UMCore/UMModuleRegistry; sourceTree = ""; }; - 907B1AA9C9A23B16A07F690E51D4B145 /* Pod */ = { + 90EF32D23F937BD17C39CC1682926714 /* Pod */ = { isa = PBXGroup; children = ( - A4AA342D485B0A2C2ECEE714AA427DC8 /* EXWebBrowser.podspec */, + 116BD954BAF3FDD73FCFDA4F50F8344A /* UMPermissionsInterface.podspec */, ); name = Pod; sourceTree = ""; }; - 91D883758E0A2F96FF4100CE12DCC470 /* Support Files */ = { + 9226CD42B988AFEF2F752C9B47CFDCD8 /* UIUtils */ = { isa = PBXGroup; children = ( - 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */, - B8FB2662CBAA57FEA849FBEF17542D6D /* react-native-realm-path-dummy.m */, - 06BFEDA9CC3AFF8213E2CCD9A031B13B /* react-native-realm-path-prefix.pch */, + 79365C361084D7EAE21E13F69E8B52D5 /* RCTUIUtils.h */, + CE3E08CEE309E938F24C0F6D94A0E651 /* RCTUIUtils.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-realm-path"; + name = UIUtils; + path = React/UIUtils; sourceTree = ""; }; - 93677593B3138D9BF03E6004DDB5AC04 /* RNScreens */ = { + 926014325594C5710A89F3B8F6A6487A /* Pod */ = { isa = PBXGroup; children = ( - ECBDF16A20F05203CC4DE3B15C23AF93 /* RNSScreen.h */, - 0BEFF173864C59EF1F9D356DE406B8E8 /* RNSScreen.m */, - 9605093DCDE576A19361A5CA0D9820C0 /* RNSScreenContainer.h */, - EECB4F3A81F1FB4F694A03F1EDE10895 /* RNSScreenContainer.m */, - A17690DD8A34BCCB102D5948BB4750CF /* Pod */, - AC7E23F08E17A14ECEC1BA4CE7D68837 /* Support Files */, + B0941B1802F65F67729610EBAD449038 /* react-native-realm-path.podspec */, + 4D2CD795B86A88FE534C4EA0F6C69664 /* README.md */, ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = Pod; + sourceTree = ""; + }; + 9304806EE828ABBD45DEAD9DD6D3FD68 /* UMCore */ = { + isa = PBXGroup; + children = ( + 38DCC24FB74B046F4CFC588C2921CED8 /* UMAppDelegateWrapper.h */, + C328B06AD47D3292157838FE6D08EB05 /* UMAppDelegateWrapper.m */, + 82FD6EB75FA961CE16E8A890F152CD41 /* UMDefines.h */, + 4C72B6DC83FDFF68E1F3C6251EF98E0C /* UMExportedModule.h */, + 3F14533CC551AD3897FECC3F78679C3E /* UMExportedModule.m */, + 6FF2956C0A176D23B4A240902BBB130A /* UMSingletonModule.h */, + E1F8D5C95A535BECEDD520356F1AC403 /* UMSingletonModule.m */, + 64BB0065D1B85FB25BCDF4EBD19452E0 /* UMUtilities.h */, + 20D191C042D8BDFDA6EAFB27463951A6 /* UMUtilities.m */, + 94A882666DB0E883021178ECBCD17CC1 /* UMViewManager.h */, + 107D03E1A6C324689298AA9B5196F4FF /* UMViewManager.m */, + A17A3B13431E8F52365A7CEEB5189CBF /* Pod */, + 6F8EE15BA322BA34CC464064A80B19F8 /* Protocols */, + AACD9E25030C0AEF020FD8D9ED5B0100 /* Services */, + 64B5C02D36852AF088E6E3D3EF508A3D /* Support Files */, + 9043723B160FC3D0DE98F3B79264B9E5 /* UMModuleRegistry */, + EB6E0EFC2750D353BC2C3F9BD655C02E /* UMModuleRegistryProvider */, + ); + name = UMCore; + path = "../../node_modules/@unimodules/core/ios"; + sourceTree = ""; + }; + 93892BF4056C830DA8AFDF195DB226B5 /* Pod */ = { + isa = PBXGroup; + children = ( + 7EDDDFF69ECD35BDFE6017F5EA42CB99 /* UMCameraInterface.podspec */, + ); + name = Pod; sourceTree = ""; }; 94A39BC6E8B7C8C7886F34DEE336D562 /* Protobuf */ = { @@ -4843,14 +4680,6 @@ path = Protobuf; sourceTree = ""; }; - 95A1AAB935E3B6F3C935FF16BFE4C582 /* Pod */ = { - isa = PBXGroup; - children = ( - D5369D829EF70F3E2D3D170BC19D0E33 /* UMBarCodeScannerInterface.podspec */, - ); - name = Pod; - sourceTree = ""; - }; 96179E1B26E42CDDFA772FDF542DECE9 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4860,22 +4689,13 @@ path = "../Target Support Files/Fabric"; sourceTree = ""; }; - 9642B91576DBB897576C4375540C3258 /* Pod */ = { - isa = PBXGroup; - children = ( - 3E8B041F27FCBABA95CC7B7847CFACA4 /* LICENSE.md */, - 307DEA27A19126FF792E51D91EA7ADDE /* react-native-document-picker.podspec */, - 5172631FDCE8C9C59C45966058DE6F48 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 967221DF8C8593004E75CEEF95AEFDBC /* Pod */ = { + 9703693042DE987867BFDFF2510EA10B /* fishhook */ = { isa = PBXGroup; children = ( - 92BDF4644970336BDD2726D6CEE92A87 /* UMReactNativeAdapter.podspec */, + 6C9E32BC66A9826ECE9F53A1739866CD /* fishhook.c */, + BA2509DFFC1886368633D37F084C87D2 /* fishhook.h */, ); - name = Pod; + name = fishhook; sourceTree = ""; }; 972F3F51295E12FAAB2ECE0553122034 /* FirebasePerformance */ = { @@ -4888,6 +4708,14 @@ path = FirebasePerformance; sourceTree = ""; }; + 97B5B199EE8EE2427F009C087261E42A /* Pod */ = { + isa = PBXGroup; + children = ( + 35E326B46A5FFE8C63514C9A35CCB76E /* UMConstantsInterface.podspec */, + ); + name = Pod; + sourceTree = ""; + }; 97DD305CB999AEEC3C3487E223B4A7E6 /* Support Files */ = { isa = PBXGroup; children = ( @@ -4897,46 +4725,41 @@ path = "../Target Support Files/Crashlytics"; sourceTree = ""; }; - 97E7FC26401EE16EA5DA278B495EB84C /* Pod */ = { + 99A5461F9416B01DEBEDE21BA32914B5 /* Pod */ = { isa = PBXGroup; children = ( - CCDA0AF1FF28783170CE15AD9DE1BC48 /* LICENSE */, - C4CC8AB97350E59F67EB7DA517E8C908 /* react-native-webview.podspec */, - 733E223CFDD262EF43FBBD8807E803EB /* README.md */, + 79DCAEA6DFA25BF54F9A9FA5CE6A532E /* EXWebBrowser.podspec */, ); name = Pod; sourceTree = ""; }; - 98EEB84C8F66CE7A5557485F61904125 /* Support Files */ = { + 9A81BED9556EDAEC6528B85C1025362F /* GoogleIDFASupport */ = { isa = PBXGroup; children = ( - 8F2E9FD2978F0A487CA5EB098EAA947C /* react-native-webview.xcconfig */, - 651073CDC0948953C39B5608AC715876 /* react-native-webview-dummy.m */, - FE9808B896A721E209136FB2F00D6A7E /* react-native-webview-prefix.pch */, + 392E4784A690A07630EAD5B1548E949F /* Frameworks */, + 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-webview"; + name = GoogleIDFASupport; + path = GoogleIDFASupport; sourceTree = ""; }; - 9900078BFF01C9ECB93DFB439F89EF1E /* UMModuleRegistry */ = { + 9B810F0AA99216B8CCCDCDF5C875B879 /* Pod */ = { isa = PBXGroup; children = ( - 192B96F1963E264CCFEBC3534FC8A498 /* UMModuleRegistry.h */, - 9957009B867CBC0D49D5BFAD7CF27811 /* UMModuleRegistry.m */, - 0488280DDC23C1BA9BDCE5B5B6A20B3A /* UMModuleRegistryDelegate.h */, + DF55BF2F017EC2EEBD923E93BC4127AA /* EXFileSystem.podspec */, ); - name = UMModuleRegistry; - path = UMCore/UMModuleRegistry; + name = Pod; sourceTree = ""; }; - 9A81BED9556EDAEC6528B85C1025362F /* GoogleIDFASupport */ = { + 9BB5FE976FD26E1C541954AAAF1412AC /* Support Files */ = { isa = PBXGroup; children = ( - 392E4784A690A07630EAD5B1548E949F /* Frameworks */, - 05C01A9434CFBBF6615DA61F203FED12 /* Support Files */, + B2A5ECADF82C69838EA2BDAA20A77404 /* EXConstants.xcconfig */, + 7143A12342D68FDF8F49EFE460CAB194 /* EXConstants-dummy.m */, + 68B5FAD70CD3E9255C6B801C2E4A382D /* EXConstants-prefix.pch */, ); - name = GoogleIDFASupport; - path = GoogleIDFASupport; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/EXConstants"; sourceTree = ""; }; 9D86C1A9AEDE6B78974D2ED7C7E8A632 /* Support Files */ = { @@ -4950,32 +4773,33 @@ path = "../Target Support Files/GoogleToolboxForMac"; sourceTree = ""; }; - 9DE3F19B7CA8739BC1A77B6CA9ED5C1D /* Support Files */ = { + 9E64073D821D5B174A5C13B09E5B1995 /* RCTWebSocket */ = { isa = PBXGroup; children = ( - F6334B5F131CDD267C933341A87CF382 /* EXConstants.xcconfig */, - 78E5691D1FB00DDBB44E372B7794C0E5 /* EXConstants-dummy.m */, - DBE108DDDBE372FA6EE8746B16DD0713 /* EXConstants-prefix.pch */, + 10B52525768BD37B09E6AA5E110BAC61 /* RCTReconnectingWebSocket.h */, + E305FD6D8CDA02A06B6BA1BC056EEF59 /* RCTReconnectingWebSocket.m */, + 04B6E53AEF38DF0AEC176C338A3F3802 /* RCTSRWebSocket.h */, + 402D218C671D7DFF7740BA23F07C7A8A /* RCTSRWebSocket.m */, + BBC095DB5CE8597F56A47F691D873DE3 /* RCTWebSocketExecutor.h */, + 8035C1FDE76C15AFD7CFA0AD824A64C1 /* RCTWebSocketExecutor.m */, + 064E463987C988A769474A64A1C429AD /* RCTWebSocketModule.h */, + DD2B0ABEBD3A4EF916F144E8899B1E9C /* RCTWebSocketModule.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXConstants"; + name = RCTWebSocket; sourceTree = ""; }; - 9EFD0C170B94B3CD938198C4BD6FB1EC /* Drivers */ = { + 9EC9CEF3C6941BB0702C93F4BBE60CBE /* RNScreens */ = { isa = PBXGroup; children = ( - 30580C50B46345071F408CA2EA02F79D /* RCTAnimationDriver.h */, - 78BD0E89211B12181B53EA31FBC8EBEB /* RCTDecayAnimation.h */, - 0E4768C340A52BE6F8E5F500D3058657 /* RCTDecayAnimation.m */, - D5CC35B6F1D11EFB6ED5235C649EED0B /* RCTEventAnimation.h */, - 3EE00389D5A2B0AFE67DC842DAE12C09 /* RCTEventAnimation.m */, - 22C42CC35973126B66C0EE13EE050413 /* RCTFrameAnimation.h */, - 7C757C0E204EBF0CB4DA737B5DA400AA /* RCTFrameAnimation.m */, - 8050186A7A19A3AF6AC03C3D457EB16D /* RCTSpringAnimation.h */, - 0323E1252CEB77179CB0A8A82509226E /* RCTSpringAnimation.m */, + 4B20BAF8440F4FCF50801FA54A64966B /* RNSScreen.h */, + 577613F9560B25B4440B84537096AB09 /* RNSScreen.m */, + ED5EF83ADD18B845E6A6B6841EECCD21 /* RNSScreenContainer.h */, + EF4F14EBDB06885C964F9AC0D13AD2B1 /* RNSScreenContainer.m */, + 89EA53F78B4B65E680E1A0FBA3A4F650 /* Pod */, + 75D2B1B3B73A951CB373B7F22880889E /* Support Files */, ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; A03428A51F6449FD7349EDE1E28B6448 /* boost-for-react-native */ = { @@ -4996,12 +4820,53 @@ name = "NSData+zlib"; sourceTree = ""; }; - A17690DD8A34BCCB102D5948BB4750CF /* Pod */ = { + A091D931E93F800EB6D8B933B2679017 /* Singleline */ = { + isa = PBXGroup; + children = ( + E7B09E4E364A85B47226F225E5706AA7 /* RCTSinglelineTextInputView.h */, + D694C5E25FF2B4DC0FA88E7ADAC8241C /* RCTSinglelineTextInputView.m */, + D66F10867009F10F54E8B0D9ED4960C9 /* RCTSinglelineTextInputViewManager.h */, + B36590215700373699DD00A1ADA60D84 /* RCTSinglelineTextInputViewManager.m */, + 733596A097B570DA8248AD5F350C8374 /* RCTUITextField.h */, + 3F9B5492B7168938DADA91C40D236AD9 /* RCTUITextField.m */, + ); + name = Singleline; + path = Singleline; + sourceTree = ""; + }; + A12944216DA9FA67AB577E3FBAF06207 /* UMNativeModulesProxy */ = { + isa = PBXGroup; + children = ( + FE913A7CD2966C11EEE6EFE508FBD973 /* UMNativeModulesProxy.h */, + 56E0F09FE9428CB9A096DE77C9680136 /* UMNativeModulesProxy.m */, + ); + name = UMNativeModulesProxy; + path = UMReactNativeAdapter/UMNativeModulesProxy; + sourceTree = ""; + }; + A17A3B13431E8F52365A7CEEB5189CBF /* Pod */ = { + isa = PBXGroup; + children = ( + E4DF03EB88D5E0A8E8346E61DC7EDF04 /* UMCore.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + A1C5F47D7E884E036F8BED86BB4EEF14 /* Support Files */ = { + isa = PBXGroup; + children = ( + 5FB609A3D9423A2E5FF3A0EDD6FC75BA /* RNDeviceInfo.xcconfig */, + ACFD4FB467615C5B33EA9665AF5CF93F /* RNDeviceInfo-dummy.m */, + EE7D84B9547E65AAAFFFC99997E8DD6C /* RNDeviceInfo-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; + sourceTree = ""; + }; + A1FD70A5680917B7F103AB46789831F9 /* Pod */ = { isa = PBXGroup; children = ( - E5432881AEBE5FB0661DAC3DDEF45791 /* LICENSE */, - E6E593B2F2AEE6DFE4D0610A1738DB8D /* README.md */, - EFF9593F541CBE9541A7DA5E2123D221 /* RNScreens.podspec */, + B105162305C4A184BD6319070A253DF2 /* UMFaceDetectorInterface.podspec */, ); name = Pod; sourceTree = ""; @@ -5018,15 +4883,42 @@ path = Fabric; sourceTree = ""; }; - A2E51DB29CE2F4EA773C1942742EB8FF /* Support Files */ = { + A353455D80C7F901D82CA643DE45C955 /* Pod */ = { isa = PBXGroup; children = ( - B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */, - 0AB591CB4D6D75D827D78807CF54BCD1 /* yoga-dummy.m */, - 6575EBF726D4641F29236047BFC4B500 /* yoga-prefix.pch */, + FDD0F2EC845F13D871D34897081DB260 /* LICENSE */, + 84822A53AA51E4EE1662F6976283048A /* react-native-orientation-locker.podspec */, + 52DC9A2C8E7DDF7E348D9CD7CC0B3A31 /* README.md */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/yoga"; + name = Pod; + sourceTree = ""; + }; + A36E4B4E744DB46D1F1EFE1A6B1B49F9 /* Text */ = { + isa = PBXGroup; + children = ( + 452F71A7CA191ABE2EFEAE6685917EDE /* NSTextStorage+FontScaling.h */, + AAD401BFF20F9A071065252B868A4DA2 /* NSTextStorage+FontScaling.m */, + 41350F9696291FD0E46A07CA2A0ABF9C /* RCTTextShadowView.h */, + 5F22B447224578233DA69663E154FC63 /* RCTTextShadowView.m */, + 57EF67BFE574DF4A870DA03F41541F1F /* RCTTextView.h */, + BBFDC01B47C7D7CB57EB920201BEED60 /* RCTTextView.m */, + E33F4F829EB8318A474F83BA66505C2F /* RCTTextViewManager.h */, + EBD50F4A8364BF447D268C0A4A530C83 /* RCTTextViewManager.m */, + ); + name = Text; + path = Libraries/Text/Text; + sourceTree = ""; + }; + A497700C36534526CBC39302A5A6E9C0 /* RawText */ = { + isa = PBXGroup; + children = ( + F510D03F16C8024C3EC626F26F42271D /* RCTRawTextShadowView.h */, + AD1CCEE9D4C64150A206514D2D504F79 /* RCTRawTextShadowView.m */, + 6F4CD222FEA8A1CEC5211926FC6A9AC6 /* RCTRawTextViewManager.h */, + F8FAC1C7A904593FD24187BB32263C7A /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = Libraries/Text/RawText; sourceTree = ""; }; A4B637D514F44D29D03380C521612787 /* QBImagePickerController */ = { @@ -5057,37 +4949,46 @@ path = QBImagePickerController; sourceTree = ""; }; - A4DDA38DB29B95D5F4F6F8BF5171AF91 /* Pod */ = { + A817EC4997CC3BDAB90C9378228DDAD2 /* Core */ = { isa = PBXGroup; children = ( - 1E2EA95C644202201F3937FBDBD07262 /* UMPermissionsInterface.podspec */, + E77227E574110F93332287B1046826F0 /* Base */, + 6226D840D68F47EE981F951306844C19 /* Modules */, + C74FE4BD85D45E1881A713A18B7169D2 /* Profiler */, + 9226CD42B988AFEF2F752C9B47CFDCD8 /* UIUtils */, + 6B86D21EA6574709E66278377C0E2086 /* Views */, ); - name = Pod; + name = Core; sourceTree = ""; }; - A5628DF172DE58FBA3F68C4A45D0E1E8 /* UMFontInterface */ = { + A8F5B388EA0E611D9222731D50B5CA29 /* react-native-webview */ = { isa = PBXGroup; children = ( - 3CE48E45CE5BAF8BF94C53ADDE0DE222 /* UMFontManagerInterface.h */, - D8C2F9C4A7E6A4EDFF1C29A3F7EE27BD /* UMFontProcessorInterface.h */, - 9F7A85ED957E267679CE03E652C8B5AE /* UMFontScalerInterface.h */, - 0D379F20422F35E4A0327AB378E60E61 /* UMFontScalersManagerInterface.h */, - 4F24E462D72846485459502D84C08ABB /* Pod */, - 8F8BD459EED16B4CE63EC0448F19E563 /* Support Files */, + A5596C5122164ED20799774D2E0FEF76 /* RNCUIWebView.h */, + 486FF2C0A1AF24CE13B399C0B72D4C00 /* RNCUIWebView.m */, + E1E7996E9754942E03E4F50F7DE6B44D /* RNCUIWebViewManager.h */, + CE17FB3F5FC90B3C55DEB760D5BD8F6E /* RNCUIWebViewManager.m */, + 8133DFECBFCE0D048F03D2A66C77D238 /* RNCWKProcessPoolManager.h */, + 83E4E128598383188896C08018DB8541 /* RNCWKProcessPoolManager.m */, + 52B4C936D52298BCF226D53AA3D8B5DA /* RNCWKWebView.h */, + ECFFFF522D8931F2F6F874F6CDAEA26B /* RNCWKWebView.m */, + 6E7412F2970F81ABC0DC3873434EA89B /* RNCWKWebViewManager.h */, + 638813F00D3ADE3D85F5A0BD44B5753C /* RNCWKWebViewManager.m */, + 255D0F6A63B8D073FE0D1A016C5C0F22 /* Pod */, + 0BB1EA33CC6731755DAE1999C80D83E3 /* Support Files */, ); - name = UMFontInterface; - path = "../../node_modules/unimodules-font-interface/ios"; + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; sourceTree = ""; }; - AC7E23F08E17A14ECEC1BA4CE7D68837 /* Support Files */ = { + AACD9E25030C0AEF020FD8D9ED5B0100 /* Services */ = { isa = PBXGroup; children = ( - FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.xcconfig */, - 72CBE19DF375F16284A08576395BBD58 /* RNScreens-dummy.m */, - BC87A07FA8F48763D1B39023D4A090A2 /* RNScreens-prefix.pch */, + 1546C9472A3146B9FD7320460B61A2ED /* UMLogManager.h */, + C02EA8C8559D4B5DD6CEECF404F45D79 /* UMLogManager.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNScreens"; + name = Services; + path = UMCore/Services; sourceTree = ""; }; ACF6B0DDA33E83229CBCCD8A0BB9BE70 /* RSKImageCropper */ = { @@ -5126,17 +5027,6 @@ name = Logger; sourceTree = ""; }; - AE361E9A4AED25932BFC2C3A0897C497 /* Support Files */ = { - isa = PBXGroup; - children = ( - FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.xcconfig */, - 4D1585F3DBD498E2CC26B4A4E578ED4B /* EXWebBrowser-dummy.m */, - 80C0AF5D6909C059B1C4DEC7BB74C83C /* EXWebBrowser-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXWebBrowser"; - sourceTree = ""; - }; AE43448F0C94E65C7C200A838A5A94BF /* Support Files */ = { isa = PBXGroup; children = ( @@ -5155,6 +5045,37 @@ name = "Targets Support Files"; sourceTree = ""; }; + AFFE2845B4B880D44235BB92E102256C /* RCTNetwork */ = { + isa = PBXGroup; + children = ( + 367449F07FE02F5E732E248F959AE2CF /* RCTDataRequestHandler.h */, + 302707F52E8F2F6A6A7ABD5FF9E46ACF /* RCTDataRequestHandler.m */, + 54295468EB7AD307192D44E7E5F807E6 /* RCTFileRequestHandler.h */, + C99FB4EBDEB546AD84EA6861368FBBD2 /* RCTFileRequestHandler.m */, + BE32583B7DF9A30FBD68F6C400F9F53E /* RCTHTTPRequestHandler.h */, + 20387215DE1CABD09BEA13F93C2E6831 /* RCTHTTPRequestHandler.mm */, + 1287F69DC7B03D8A2BC19FFC9520A84D /* RCTNetInfo.h */, + CC6F6A70DA3D14ED906AEA391484D7CF /* RCTNetInfo.m */, + 7199155E6E1E50C34D979A3778B46148 /* RCTNetworking.h */, + 350E690D6AA1E1283092C90E70CF01CC /* RCTNetworking.mm */, + 398180D45F78DCABFE7A50AABC7FB9C9 /* RCTNetworkTask.h */, + 3072FA28E664BB713D75D0E7092DECA0 /* RCTNetworkTask.m */, + ); + name = RCTNetwork; + sourceTree = ""; + }; + B00C134091B78311986921C0543717CD /* EXWebBrowser */ = { + isa = PBXGroup; + children = ( + 138724BBA958484CDCC21A61D7968E41 /* EXWebBrowser.h */, + CA4DE7109603690584FE42B36E9DAF36 /* EXWebBrowser.m */, + 99A5461F9416B01DEBEDE21BA32914B5 /* Pod */, + 0955E3247803F9FFEEB602DBABC4E188 /* Support Files */, + ); + name = EXWebBrowser; + path = "../../node_modules/expo-web-browser/ios"; + sourceTree = ""; + }; B0B14F0A7B74B461C5E79F8A35BA225B /* Support Files */ = { isa = PBXGroup; children = ( @@ -5164,80 +5085,102 @@ path = "../Target Support Files/FirebaseABTesting"; sourceTree = ""; }; - B66FE2D9D5D56986EF5EED0979CFF82D /* RCTText */ = { + B38C046BF395DE74F1BD54AEB92E090D /* Development Pods */ = { + isa = PBXGroup; + children = ( + 81EBD4B99DA40F15083665E498D10849 /* EXAppLoaderProvider */, + 588F0EB398061B7F7EEEA079177587F8 /* EXConstants */, + 352B200F5A4DBD55D7950569DE8BA39F /* EXFileSystem */, + 7EA29932695D0DBF338E540AC04D18D6 /* EXHaptics */, + 7AB8BF4D01F0B17D62C2AF08A7D27C0D /* EXPermissions */, + B00C134091B78311986921C0543717CD /* EXWebBrowser */, + 69AE7B73118214327FC7CAEB67F8526D /* React */, + 3D20957E3280BE00D4348AFAF283EB8B /* react-native-document-picker */, + 7150F8944B8D9E725DDA8BD809C27A88 /* react-native-orientation-locker */, + 143CE66E54FDEE4537BC65F6B1EE2851 /* react-native-realm-path */, + 5B75650FDC4D90B051D8A40BD1B9AE39 /* react-native-splash-screen */, + A8F5B388EA0E611D9222731D50B5CA29 /* react-native-webview */, + 05902DBEE17888A0649F75E439036700 /* rn-extensions-share */, + 000A4BA31F832A4EB668DA54200A6412 /* RNDeviceInfo */, + 4809A4B92F01F17317F6F201B0B8CEE6 /* RNImageCropPicker */, + 2B6EF19EF8EAF0581938C8D929AC3394 /* RNLocalize */, + 9EC9CEF3C6941BB0702C93F4BBE60CBE /* RNScreens */, + B6978D6AFEBC90668BC2E09E1B2AA062 /* UMBarCodeScannerInterface */, + B5F47A349F260B4F641814E244103A3C /* UMCameraInterface */, + C18203C406392C2C5431C06D840A35B0 /* UMConstantsInterface */, + 9304806EE828ABBD45DEAD9DD6D3FD68 /* UMCore */, + 5D3EE8CA4CF6ABC251C66F2A9AD907F0 /* UMFaceDetectorInterface */, + 8526F923E575B92203027A7D30CCD6C9 /* UMFileSystemInterface */, + 8B25187D42725227C38EC7C5524BFA7B /* UMFontInterface */, + C31719EE3DFE3CFF671F11BC0E8FD852 /* UMImageLoaderInterface */, + 18DAC32AD40F63C4520A65740602080B /* UMPermissionsInterface */, + CACB81DA7F9DA627D4961FDBDE78774E /* UMReactNativeAdapter */, + D97F3F3C1B44947EBA5ECD9E0F6D7A38 /* UMSensorsInterface */, + 56C4113046A7F522D04511B0C2ADAF8B /* UMTaskManagerInterface */, + 89EBE27126EB2537779349B2ABE281E3 /* yoga */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + B5F47A349F260B4F641814E244103A3C /* UMCameraInterface */ = { isa = PBXGroup; children = ( - 4F0CEEE398FCB4324B7D7501713141C8 /* RCTConvert+Text.h */, - 23AC3E213F817BFBB129A2E6F5E724D3 /* RCTConvert+Text.m */, - 48648007DB5D889DCB4B583D1115E291 /* RCTTextAttributes.h */, - AC6AD7DDF2713E52608C1F3F5ABACCBC /* RCTTextAttributes.m */, - 912753E2D0875DC4EE06B774F7703BD5 /* RCTTextTransform.h */, - 756893E803E691282EE3E1F4846862E6 /* BaseText */, - D3BF7304331841C258FD0A210CBE3A36 /* RawText */, - 856F45E0C33F23EDE283657A359BD0D4 /* Text */, - B913C4948171D28426A5C352E5059E00 /* TextInput */, - E3D098390DCFEB0600E967C87526F596 /* VirtualText */, + 2828FF58A2F84B73BF061541C1EBF9C9 /* UMCameraInterface.h */, + 93892BF4056C830DA8AFDF195DB226B5 /* Pod */, + 51D6A2FC1CB04425FB2575712A592889 /* Support Files */, ); - name = RCTText; + name = UMCameraInterface; + path = "../../node_modules/unimodules-camera-interface/ios"; sourceTree = ""; }; - B7CB9BD5D292E1470CE452C1215D2996 /* Support Files */ = { + B64488B6C0C08CE2633EA2FEBD21F221 /* Support Files */ = { isa = PBXGroup; children = ( - 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */, + AFB87455E9FD6ED44433B501BAF1C578 /* UMConstantsInterface.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + path = "../../../ios/Pods/Target Support Files/UMConstantsInterface"; sourceTree = ""; }; - B913C4948171D28426A5C352E5059E00 /* TextInput */ = { - isa = PBXGroup; - children = ( - 2DD17ED321FE78AEB6B9C3E860ABDC60 /* RCTBackedTextInputDelegate.h */, - 6A76D27782425AD5DAD5BA0BED7F79C0 /* RCTBackedTextInputDelegateAdapter.h */, - 84472B441282C35F5CF14DE357588B5A /* RCTBackedTextInputDelegateAdapter.m */, - 4CEA4213CE111A3FFBA957B4ADFF9691 /* RCTBackedTextInputViewProtocol.h */, - C184B9272F88416466ECBFA3455F21A5 /* RCTBaseTextInputShadowView.h */, - DF278BF9B2BD2A98B410B6211E2C0AB2 /* RCTBaseTextInputShadowView.m */, - 609CD3EE7641A665610E5B86E7AE5824 /* RCTBaseTextInputView.h */, - 49325372FA42CFCB032570E0EE5D956D /* RCTBaseTextInputView.m */, - E523F08DDF628983B8080538442746D3 /* RCTBaseTextInputViewManager.h */, - BC2BC32A70E8C58B0118B80ECEC6814E /* RCTBaseTextInputViewManager.m */, - 75EFAE6EC8D3C3E7B409AB2CA58A9748 /* RCTInputAccessoryShadowView.h */, - A51B04FCA414B4C97A67491705EB9543 /* RCTInputAccessoryShadowView.m */, - BA4F6AA699A11800E2DCCCCD501F455B /* RCTInputAccessoryView.h */, - 32BD306560C8AC22487DFFB84B4CD410 /* RCTInputAccessoryView.m */, - DEB63BB149F828635F4B61AB9C206E4B /* RCTInputAccessoryViewContent.h */, - 650C9B79996B2911D7727E15751018CA /* RCTInputAccessoryViewContent.m */, - 11D5F1D927DE1E7AED7DFA104A6B583F /* RCTInputAccessoryViewManager.h */, - BF961443ACA833C7A8B4F74EE8EF6D18 /* RCTInputAccessoryViewManager.m */, - 974BE557BF05C01EA45A5AC245DE0BCA /* RCTTextSelection.h */, - C634F322B5B1194698FD4B9E675776D2 /* RCTTextSelection.m */, - 81FC486351113FBA945A6922FD7EC122 /* Multiline */, - 30570BA9A5B9617BDE745792C4DF80E1 /* Singleline */, + B6978D6AFEBC90668BC2E09E1B2AA062 /* UMBarCodeScannerInterface */ = { + isa = PBXGroup; + children = ( + 37D4312670F640E68471D9AEC229020D /* UMBarCodeScannerInterface.h */, + 503779FB6A4E58EE79C59A8B01C3AD9A /* UMBarCodeScannerProviderInterface.h */, + 5FF4FF5E21C97939213C6A8AD8F1DC1D /* Pod */, + 647ED6B9F278F7366F399477C6687951 /* Support Files */, ); - name = TextInput; - path = Libraries/Text/TextInput; + name = UMBarCodeScannerInterface; + path = "../../node_modules/unimodules-barcode-scanner-interface/ios"; sourceTree = ""; }; - B9DCA5B9DDC21DE5BF05F534C9122E39 /* Support Files */ = { + B99B6C7D50AA4C76F0BA22D88D86B3D0 /* Drivers */ = { isa = PBXGroup; children = ( - 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */, + D6983C5B3C8B9FC1B086853B24466E56 /* RCTAnimationDriver.h */, + BAE546B495F0C3B3EF40FAA062F42026 /* RCTDecayAnimation.h */, + CB86389B4550729E8FA647763D87603B /* RCTDecayAnimation.m */, + AE41912ACF3E01FFEB5E637E385EE097 /* RCTEventAnimation.h */, + E55CA6DF1E6911C02FDDE69AEC8ACFB8 /* RCTEventAnimation.m */, + 7ECFF3945CF2A3D79D10239277991CB1 /* RCTFrameAnimation.h */, + 7EA5C60FB0B4298F62C66EC8F7BFEBA9 /* RCTFrameAnimation.m */, + 0E93CD377BB1F8E2202B4F874AE737A6 /* RCTSpringAnimation.h */, + 2671B9D39E553F5C4B4DB5F15F2C23CD /* RCTSpringAnimation.m */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/UMFileSystemInterface"; + name = Drivers; + path = Libraries/NativeAnimation/Drivers; sourceTree = ""; }; - BD7A275A291D35CC906711758BA70A49 /* Support Files */ = { + BB0B7ABE4944DA9866DC51A4D5C6ACD2 /* VirtualText */ = { isa = PBXGroup; children = ( - B75EA0185E2AF3117759FBC14CB029A4 /* RNImageCropPicker.xcconfig */, - 8CBF6882D2CD8EB544E3926B8B901B14 /* RNImageCropPicker-dummy.m */, - F4896AA3946A7938DBBB7FE360514320 /* RNImageCropPicker-prefix.pch */, + 41ECF14768EE63313B6D8948DE007C72 /* RCTVirtualTextShadowView.h */, + 4DE3332565551778786D62483594DAE2 /* RCTVirtualTextShadowView.m */, + 5FC686CC40F368374FFC39073A682C99 /* RCTVirtualTextViewManager.h */, + D904D474A2185D51082E92508520B717 /* RCTVirtualTextViewManager.m */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + name = VirtualText; + path = Libraries/Text/VirtualText; sourceTree = ""; }; BDA7536C8CAC72B07ED9CF717C00A9BB /* GTMSessionFetcher */ = { @@ -5250,15 +5193,15 @@ path = GTMSessionFetcher; sourceTree = ""; }; - BDDCC3D73E8F01DE84567069080D11FB /* Support Files */ = { + BE05A5B80B4941ACFE029D3331A4B420 /* Support Files */ = { isa = PBXGroup; children = ( - 3092B739FF8B55E5918F75BCA4D731B5 /* React.xcconfig */, - BD4CD5A896E6109E00F737BD56115439 /* React-dummy.m */, - AC77E414040E9372625BC656B3DDECBD /* React-prefix.pch */, + 4BF11E9F2D8B1AA2A09BB5A33BFEA4D9 /* EXAppLoaderProvider.xcconfig */, + 104AB4D79AEBE6E528913A918D800483 /* EXAppLoaderProvider-dummy.m */, + 8CDD649462EC20F8438A9B2D9DE60608 /* EXAppLoaderProvider-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; + path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; BE0EDBFC60467C5FBEA82D877212D9EF /* Defines */ = { @@ -5301,18 +5244,6 @@ path = "../Target Support Files/Protobuf"; sourceTree = ""; }; - C0E6D6C2C62D91205AF43F6F4E8BB0DA /* react-native-realm-path */ = { - isa = PBXGroup; - children = ( - BF0D6215F452EBB171927DB6516893D0 /* RNRealmPath.h */, - 7638DC17BC0135744115C99E36911C9A /* RNRealmPath.m */, - CFDD29C5900452442337C5676E044D5E /* Pod */, - 91D883758E0A2F96FF4100CE12DCC470 /* Support Files */, - ); - name = "react-native-realm-path"; - path = "../../node_modules/react-native-realm-path"; - sourceTree = ""; - }; C0F1D135B699391FEBEF59BA679DA149 /* Support Files */ = { isa = PBXGroup; children = ( @@ -5325,6 +5256,17 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; + C18203C406392C2C5431C06D840A35B0 /* UMConstantsInterface */ = { + isa = PBXGroup; + children = ( + E14EEA84BBEC43A368F77E606BE69C10 /* UMConstantsInterface.h */, + 97B5B199EE8EE2427F009C087261E42A /* Pod */, + B64488B6C0C08CE2633EA2FEBD21F221 /* Support Files */, + ); + name = UMConstantsInterface; + path = "../../node_modules/unimodules-constants-interface/ios"; + sourceTree = ""; + }; C2B611C5AD48E2DCE0FA32B005821A1D /* GoogleUtilities */ = { isa = PBXGroup; children = ( @@ -5343,175 +5285,147 @@ path = GoogleUtilities; sourceTree = ""; }; - C53D7019E356E0128C2877974ECC47D5 /* Support Files */ = { + C2FA21EE9462577CD0690F7AE94122A9 /* Support Files */ = { isa = PBXGroup; children = ( - 414FA7C11012362AA14838182726322C /* UMCore.xcconfig */, - 1A8840AD3D979C04E9B8B92AC953EF52 /* UMCore-dummy.m */, - B51F5B876AEBAF3A595B278DA5E436AF /* UMCore-prefix.pch */, + 46113567DFBD43D23A17980492566691 /* react-native-orientation-locker.xcconfig */, + 3F25E145FAA1C4E52452B58FDC3C83CF /* react-native-orientation-locker-dummy.m */, + CD33524B116ABBF2E5ECB4E8B86B50D3 /* react-native-orientation-locker-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMCore"; - sourceTree = ""; - }; - C5600A66407EAFEEAFE44D7950601953 /* Frameworks */ = { - isa = PBXGroup; - children = ( - 7C2E814399C509F6046B91DD6C7410FB /* GoogleAppMeasurement.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - CA8287CD74F1DA185E01D170FD6D4975 /* RCTSettings */ = { - isa = PBXGroup; - children = ( - 11DD4667BC4267907910403D06B14E14 /* RCTSettingsManager.h */, - 9320F2831D03A239E1DE1943255F75C9 /* RCTSettingsManager.m */, - ); - name = RCTSettings; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - CB2C372FB027ECE8D944BB55DB8F82EB /* UMViewManagerAdapter */ = { + C31719EE3DFE3CFF671F11BC0E8FD852 /* UMImageLoaderInterface */ = { isa = PBXGroup; children = ( - D5C5618AAECC011C23975CAD363216A5 /* UMViewManagerAdapter.h */, - 2FB035AD0A1082098738AB35D89417EB /* UMViewManagerAdapter.m */, + 3C741CC82A0C07ACA08B7A0BED1EA1AD /* UMImageLoaderInterface.h */, + 80ABCDD5932EA5A41F69C8B64581B292 /* Pod */, + C98DE310C5DF27008CC122A021979E52 /* Support Files */, ); - name = UMViewManagerAdapter; - path = UMReactNativeAdapter/UMViewManagerAdapter; + name = UMImageLoaderInterface; + path = "../../node_modules/unimodules-image-loader-interface/ios"; sourceTree = ""; }; - CD05FDDA92FE9A9853FD157BF128E67A /* Pod */ = { + C3FF0FBCB091238F0F229B125B8ECD90 /* Pod */ = { isa = PBXGroup; children = ( - 97B2E5BC9888896528CF9FBC3B917D22 /* EXHaptics.podspec */, + A294E8ECFD6B64874C919E401089E014 /* README.md */, + 893A09728AA0FF4E0DA88A59A0C4060E /* RNLocalize.podspec */, ); name = Pod; sourceTree = ""; }; - CEB949F417EDD257837365D0995D69E7 /* Support Files */ = { - isa = PBXGroup; - children = ( - FE9149882F1AA0961340D16718BBD529 /* EXPermissions.xcconfig */, - 21EAE7CAD827EAFB28F5AE9B36F0FF4D /* EXPermissions-dummy.m */, - FF65769C4516554E9EAFE1DE4843AB65 /* EXPermissions-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXPermissions"; - sourceTree = ""; - }; - CF1408CF629C7361332E53B88F7BD30C = { + C5600A66407EAFEEAFE44D7950601953 /* Frameworks */ = { isa = PBXGroup; children = ( - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 5D960600974426BAAB9E2D3E2F802DB8 /* Development Pods */, - D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, - 4FC37C41F11924A2602F786314152701 /* Pods */, - 50FCEB63D541A827419E20E05EFA6AF5 /* Products */, - AEB16DD2FFE0E872D636B036A171C005 /* Targets Support Files */, + 7C2E814399C509F6046B91DD6C7410FB /* GoogleAppMeasurement.framework */, ); + name = Frameworks; sourceTree = ""; }; - CFDD29C5900452442337C5676E044D5E /* Pod */ = { + C74FE4BD85D45E1881A713A18B7169D2 /* Profiler */ = { isa = PBXGroup; children = ( - 88F453818BB1844235CE2A13AC131340 /* react-native-realm-path.podspec */, - F2C876D08005460E640E6D01B6D36D7F /* README.md */, + DB22EFD9AF1D4824E4218D5BDA71624E /* RCTFPSGraph.h */, + 01E9F292C34088AAF5DFF5EB0C90E36E /* RCTFPSGraph.m */, + 528B279CE0DE5D0B3FA65B38D17B78CA /* RCTMacros.h */, + CB143658AC6A5E5973EAA5FD265E45DD /* RCTPerfMonitor.m */, + 32AA30FC661E357D1A080AE399618845 /* RCTProfile.h */, + 8922E634679D9F52976EECE46529488F /* RCTProfile.m */, + 8EA268A27213B5D969279287B72014B2 /* RCTProfileTrampoline-arm.S */, + 89A40B60831374B98EA1775B9B0DD00F /* RCTProfileTrampoline-arm64.S */, + EC0A89A3D764886A21C19501366A66EF /* RCTProfileTrampoline-i386.S */, + 9A68362545A55213678CF1DA96CFEEAA /* RCTProfileTrampoline-x86_64.S */, ); - name = Pod; + name = Profiler; + path = React/Profiler; sourceTree = ""; }; - D0EBC53065BCC20D5A814EAE43158E76 /* RCTAnimation */ = { + C98DE310C5DF27008CC122A021979E52 /* Support Files */ = { isa = PBXGroup; children = ( - FB956F4A9C08F6F93A75AE1ABC309ABB /* RCTAnimationUtils.h */, - 1380B4BF8CCD34CA33D07647571586E9 /* RCTAnimationUtils.m */, - 8C20E67D7573E2DE9D81AD21224F0D17 /* RCTNativeAnimatedModule.h */, - 4C5F47A618BFB61C3AAEB520EF104221 /* RCTNativeAnimatedModule.m */, - C242F16BEB2FD8D92838B66BC4FA2A15 /* RCTNativeAnimatedNodesManager.h */, - 187A9643A4FF2215A9801B19750A5136 /* RCTNativeAnimatedNodesManager.m */, - 9EFD0C170B94B3CD938198C4BD6FB1EC /* Drivers */, - 75D0283661CAFF4749D81968846D67AA /* Nodes */, + 423E60EE88FDF77474E3E2917FBAA281 /* UMImageLoaderInterface.xcconfig */, ); - name = RCTAnimation; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMImageLoaderInterface"; sourceTree = ""; }; - D2EF23320DAD5A5B1FC7AF07287026CF /* Support Files */ = { + C9F3B7AE1D064FF2E33704DBA48F39DA /* Support Files */ = { isa = PBXGroup; children = ( - A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */, - C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */, - 0F55E0C521766F08DF73E90DF03908EE /* nanopb-prefix.pch */, + 12446A77C7AE7703F0D3E777DE48999A /* EXHaptics.xcconfig */, + 419246D183C8A8E6199F743626E04485 /* EXHaptics-dummy.m */, + 14309392F44052DA0F5C712EE0D6E14F /* EXHaptics-prefix.pch */, ); name = "Support Files"; - path = "../Target Support Files/nanopb"; + path = "../../../ios/Pods/Target Support Files/EXHaptics"; sourceTree = ""; }; - D2FFB40B538C838430F364498F00361E /* Profiler */ = { + CACB81DA7F9DA627D4961FDBDE78774E /* UMReactNativeAdapter */ = { isa = PBXGroup; children = ( - 6F9FA40FA2690D8853B98D5C27140E51 /* RCTFPSGraph.h */, - 6415DBDE7710F559C63ADE08CDD27AD9 /* RCTFPSGraph.m */, - 8A2E40F452FB8A303D42644FC71F2FE2 /* RCTMacros.h */, - 754584A37D6E703EFC54974BFEB329AB /* RCTPerfMonitor.m */, - 911689A99D32EBC2D7F00943ABD80B7A /* RCTProfile.h */, - BAA18BAF646B573A7E457656A169C4D0 /* RCTProfile.m */, - B3A371FC7AA74A93B445B8B856086B1B /* RCTProfileTrampoline-arm.S */, - 3D4A5ED1F22FFC6129C028A8EA210C70 /* RCTProfileTrampoline-arm64.S */, - 2D7471BCD2ECF20F29D8176DDD92B31F /* RCTProfileTrampoline-i386.S */, - 3115E225B4717F08CE910FDCA31ADBB4 /* RCTProfileTrampoline-x86_64.S */, + 7F751B797C2BE9300597FDFBF4F20D16 /* UMBridgeModule.h */, + FF99B617F823C392326E81CCE00830EC /* Pod */, + 2C53E4F41C4E128414D4EBD909082B14 /* Services */, + E986DEC0FB07956F92F621AB92DEB6A3 /* Support Files */, + 5AA124124826C4DB0FEDDA7E23387C4C /* UMModuleRegistryAdapter */, + A12944216DA9FA67AB577E3FBAF06207 /* UMNativeModulesProxy */, + F7A24AF8241832779318597182FAF070 /* UMViewManagerAdapter */, ); - name = Profiler; - path = React/Profiler; + name = UMReactNativeAdapter; + path = "../../node_modules/@unimodules/react-native-adapter/ios"; sourceTree = ""; }; - D3BF7304331841C258FD0A210CBE3A36 /* RawText */ = { + CC3DA3F8E5BACC800DA8AB009D7703BE /* RCTText */ = { isa = PBXGroup; children = ( - BF22632E02A2510E93437480FB39165C /* RCTRawTextShadowView.h */, - B02DF5B8A78FACB9F05C5AD4E33CF9A4 /* RCTRawTextShadowView.m */, - 17A2F616744B6BC684017693ABE836D2 /* RCTRawTextViewManager.h */, - EAEAD074F444D3A0470FD94B5DECA4BA /* RCTRawTextViewManager.m */, + BCC782EC08BC7B7BEF3BD6627544365F /* RCTConvert+Text.h */, + 816C93B31A6206F3685DFB88F72194F4 /* RCTConvert+Text.m */, + 294C56E2C0B4B98FF6CA4143E062CF6E /* RCTTextAttributes.h */, + F88D1B4F236C157D5A6E33684E6FA984 /* RCTTextAttributes.m */, + ED77A0684F5F8B68C3335468CC219DA4 /* RCTTextTransform.h */, + 3BD459D3A587ECEB928B99985F338521 /* BaseText */, + A497700C36534526CBC39302A5A6E9C0 /* RawText */, + A36E4B4E744DB46D1F1EFE1A6B1B49F9 /* Text */, + D83C156A10545E5095CF947975C035E1 /* TextInput */, + BB0B7ABE4944DA9866DC51A4D5C6ACD2 /* VirtualText */, ); - name = RawText; - path = Libraries/Text/RawText; + name = RCTText; sourceTree = ""; }; - D42072FF497AEB782348FCE23E435986 /* Support Files */ = { + CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( - 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.xcconfig */, - 4E8B52E9B563C153A19B4C1DC383D066 /* EXAppLoaderProvider-dummy.m */, - FD08E8618ED304A352AB5216DECCAE0D /* EXAppLoaderProvider-prefix.pch */, + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + B38C046BF395DE74F1BD54AEB92E090D /* Development Pods */, + D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, + 4FC37C41F11924A2602F786314152701 /* Pods */, + F3F49085DB6D4C161345DE45312D9D66 /* Products */, + AEB16DD2FFE0E872D636B036A171C005 /* Targets Support Files */, ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXAppLoaderProvider"; sourceTree = ""; }; - D4A13B0CAEE1DB1F010BC4B287E8C656 /* UMTaskManagerInterface */ = { + D26112CF631EE33EFBB365039EB18CE5 /* Support Files */ = { isa = PBXGroup; children = ( - A43C48DF187C61578AD91D65C4C18669 /* UMTaskConsumerInterface.h */, - 48E433A0F3B7D0107DECD2C91E923DB8 /* UMTaskInterface.h */, - 8653D710F71F2EE6EC65A3CC532DDE9B /* UMTaskLaunchReason.h */, - E279D903900E6598EFE62B1DE65A8AF0 /* UMTaskManagerInterface.h */, - 8DCF7F24E3C0D706CDD65EEA2A64A531 /* UMTaskServiceInterface.h */, - 0056AB3FABE2E0650C6BCE190DE87F72 /* Pod */, - 5F631F306FEC17890D0D0ADAB1E286FC /* Support Files */, + 1D577A049617559D73E207B71CC6E46F /* RNImageCropPicker.xcconfig */, + 1F162A36178172C8C9482DE7355A7B7D /* RNImageCropPicker-dummy.m */, + E74EB7EEFACEDA355A0CDF05EF8D9FCE /* RNImageCropPicker-prefix.pch */, ); - name = UMTaskManagerInterface; - path = "../../node_modules/unimodules-task-manager-interface/ios"; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; - D4B8FE515FAFB1AA71B9D18311251DAA /* Support Files */ = { + D2EF23320DAD5A5B1FC7AF07287026CF /* Support Files */ = { isa = PBXGroup; children = ( - CA93B2399BF1EC6C34D29DF06D6D07B0 /* UMReactNativeAdapter.xcconfig */, - 3E57DE0F9750DAFB7CADB3C4AB1E7DA3 /* UMReactNativeAdapter-dummy.m */, - 2981123EB018D4B9FC45C89CC14FD7A2 /* UMReactNativeAdapter-prefix.pch */, + A044E0132DBBFC186CC1967069B89DDA /* nanopb.xcconfig */, + C26FDE4600EFD11466856933697391CE /* nanopb-dummy.m */, + 0F55E0C521766F08DF73E90DF03908EE /* nanopb-prefix.pch */, ); name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; + path = "../Target Support Files/nanopb"; sourceTree = ""; }; D5508FF389A7D2254703F631B15372D7 /* AppDelegateSwizzler */ = { @@ -5525,118 +5439,225 @@ name = AppDelegateSwizzler; sourceTree = ""; }; - D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { - isa = PBXGroup; - children = ( + D83C156A10545E5095CF947975C035E1 /* TextInput */ = { + isa = PBXGroup; + children = ( + 59DB20CDF5A31319C225A8E6AB223B58 /* RCTBackedTextInputDelegate.h */, + D4A914BD27DE7BAC374B64D74891FE53 /* RCTBackedTextInputDelegateAdapter.h */, + 1B4926D6787F3082BFD59AF91761A0CE /* RCTBackedTextInputDelegateAdapter.m */, + B8D589E46CEDDA08867B697941BB73D2 /* RCTBackedTextInputViewProtocol.h */, + ED7F1D3599134F13C4D1D92E4A4E4F20 /* RCTBaseTextInputShadowView.h */, + 995A73471CAEE3ADBF0C847FC40CDF7A /* RCTBaseTextInputShadowView.m */, + B6E429B65057119C1D836882B3D9D9DD /* RCTBaseTextInputView.h */, + B1C4330D3341E4ACCB065AAEC079B610 /* RCTBaseTextInputView.m */, + ABFB764195515911ADAC273A3F7B0398 /* RCTBaseTextInputViewManager.h */, + BD8086E3175C79C750AE767B580441A6 /* RCTBaseTextInputViewManager.m */, + 447A9DC53C48A87B3041AD8020EEC192 /* RCTInputAccessoryShadowView.h */, + C168991D7A8F01ADAD5F3B8BA4C5A452 /* RCTInputAccessoryShadowView.m */, + D790D6C2551A2F2940BF6DA6D9066943 /* RCTInputAccessoryView.h */, + 0E9510B12FB2E31C7482F58458E3B055 /* RCTInputAccessoryView.m */, + 124B2CEADCB88B5C335A90622BAF6F2D /* RCTInputAccessoryViewContent.h */, + 9B27EDA41070BBB5B2512AF95F0CB155 /* RCTInputAccessoryViewContent.m */, + 0C0035FDCB617E952FE1D795401E7FEF /* RCTInputAccessoryViewManager.h */, + 7CCBAD1B137A532B11B95D5B83064D50 /* RCTInputAccessoryViewManager.m */, + E9A4772BE7728E05602AA8EBDAABA405 /* RCTTextSelection.h */, + E9D868AB05F6B945839951F8E957416C /* RCTTextSelection.m */, + F1719D1336C2F84FEEB562443857B2DD /* Multiline */, + A091D931E93F800EB6D8B933B2679017 /* Singleline */, ); - name = Frameworks; + name = TextInput; + path = Libraries/Text/TextInput; sourceTree = ""; }; - DB049F46A0736A0FE7E5DEAFB9BB15EE /* UMNativeModulesProxy */ = { + D848137B92C7567B4ED5108D732DD520 /* Support Files */ = { isa = PBXGroup; children = ( - 4640543A95B5F61A4FAD8B3565DBE649 /* UMNativeModulesProxy.h */, - 7F78FB9CC8979A1A1AE3B1411E72676C /* UMNativeModulesProxy.m */, + B0A8229F1AAB021D417FBBDFB0CDCC7A /* react-native-splash-screen.xcconfig */, + 59DDD0E1054DC61EAD7F9861858FC402 /* react-native-splash-screen-dummy.m */, + A7EE13869EC45D80820FAE6779EA131A /* react-native-splash-screen-prefix.pch */, ); - name = UMNativeModulesProxy; - path = UMReactNativeAdapter/UMNativeModulesProxy; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; sourceTree = ""; }; - DBF9E90458D7771B29E68C1BF57964E9 /* Frameworks */ = { + D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { isa = PBXGroup; children = ( - 679D1D88CD0BDF8F95100BFABEEEB36C /* FirebasePerformance.framework */, ); name = Frameworks; sourceTree = ""; }; - DD591479119B3DE826BD0739A257DAE4 /* Support Files */ = { + D97F3F3C1B44947EBA5ECD9E0F6D7A38 /* UMSensorsInterface */ = { isa = PBXGroup; children = ( - 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */, + 02FB4DCB7BE0C89491C723B28572CFDB /* UMAccelerometerInterface.h */, + 361C58C03F9901B221EB5590C2194524 /* UMBarometerInterface.h */, + A084661DF61A1204941E3F41EF6724DE /* UMDeviceMotionInterface.h */, + 9B397AB658C7C87E77F7906818608B99 /* UMGyroscopeInterface.h */, + 0C36E72921ECACEFAFF7A84A60F6172B /* UMMagnetometerInterface.h */, + 3316924B543F97BD90E53535B964BDF8 /* UMMagnetometerUncalibratedInterface.h */, + 0B148B2EBF3CA1E2F72ABBD745E6554A /* Pod */, + F3460EF71FD64D0C691C6BCEEBF1B8E9 /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/FirebaseRemoteConfig"; + name = UMSensorsInterface; + path = "../../node_modules/unimodules-sensors-interface/ios"; sourceTree = ""; }; - E0532FB94575FED5D3154EFB3E5EA1F7 /* Frameworks */ = { - isa = PBXGroup; - children = ( - CEC87000B140231CF19A20D1E01F05BE /* Fabric.framework */, + DA096581B71285F662A6E6DC2BF3F41D /* RCTImage */ = { + isa = PBXGroup; + children = ( + AFF9197B88313BD043FFB8CF553625C2 /* RCTGIFImageDecoder.h */, + 7A7EA23FAEC6A585E5FE982CD495A7AB /* RCTGIFImageDecoder.m */, + B6619554F22313775726AA3C892BACE4 /* RCTImageBlurUtils.h */, + B2905711B6F9C0CBF1686904B8B79DD9 /* RCTImageBlurUtils.m */, + 9B608457E3EFC9E959766CE35320B246 /* RCTImageCache.h */, + 2F05BD6E484C4D1B079FF7805A601746 /* RCTImageCache.m */, + 66DC9438B8864B20534A4A1BDFFAE796 /* RCTImageEditingManager.h */, + 0F2A1C40E3D9A0286BC196F3E9D3FCCF /* RCTImageEditingManager.m */, + FCCB4B19115C1E28D677C69971D5E205 /* RCTImageLoader.h */, + EA5E8F13087811F854BCCD2FD0963A8C /* RCTImageLoader.m */, + C3E89A2F9DA30827F2E01756427873B2 /* RCTImageShadowView.h */, + D86FE703525C109A753A41F11307E8A9 /* RCTImageShadowView.m */, + 82D8DEC837717040090F97A403E91329 /* RCTImageStoreManager.h */, + 81959E09D42C986C3B1443DAE2DB52C3 /* RCTImageStoreManager.m */, + A3515332B300538B44AC678D88BAA04E /* RCTImageUtils.h */, + FECD5C21001D8D02CD289C5397A13742 /* RCTImageUtils.m */, + 76A3F408B9D478E9557FC9B9B28B13EC /* RCTImageView.h */, + A9F9C06F9A56D9F96B81ED3C32895E09 /* RCTImageView.m */, + 153AEF757429CA4447F74447A4986275 /* RCTImageViewManager.h */, + 54D3AC96AAC328FEFA67FE2871D7A027 /* RCTImageViewManager.m */, + 909A3824D34203CAB213BA645D66B59E /* RCTLocalAssetImageLoader.h */, + 920B9B8E31AE8900D840C141C6DD24EE /* RCTLocalAssetImageLoader.m */, + E11CCC93DDC4AF6AE3FD7CBD6045A700 /* RCTResizeMode.h */, + 2087A5FD819A7EF8DCF3BE959A110A34 /* RCTResizeMode.m */, ); - name = Frameworks; + name = RCTImage; sourceTree = ""; }; - E3D098390DCFEB0600E967C87526F596 /* VirtualText */ = { + DBF9E90458D7771B29E68C1BF57964E9 /* Frameworks */ = { isa = PBXGroup; children = ( - CB1AFF08E59CD65DD957CFED13476C3D /* RCTVirtualTextShadowView.h */, - 282ACFD6A455FA55A484FDD34C4528EF /* RCTVirtualTextShadowView.m */, - DA50D6E0F3C463849AF3CD3B8CC5A56F /* RCTVirtualTextViewManager.h */, - DB50905479B83DD824B725CC00A8EE3B /* RCTVirtualTextViewManager.m */, + 679D1D88CD0BDF8F95100BFABEEEB36C /* FirebasePerformance.framework */, ); - name = VirtualText; - path = Libraries/Text/VirtualText; + name = Frameworks; sourceTree = ""; }; - E83CBED1565BA3C0020877FC37A994B8 /* Support Files */ = { + DD591479119B3DE826BD0739A257DAE4 /* Support Files */ = { isa = PBXGroup; children = ( - C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.xcconfig */, - 27FEA6A869170AA820CB26BB8E0159D7 /* EXFileSystem-dummy.m */, - 866696B215C8B61B1AA034E3DFE066D0 /* EXFileSystem-prefix.pch */, + 808D6DDACE2479D44956ECE70452EEDB /* FirebaseRemoteConfig.xcconfig */, ); name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/EXFileSystem"; + path = "../Target Support Files/FirebaseRemoteConfig"; sourceTree = ""; }; - E8E8565407739129590521B1A421C4F6 /* RCTActionSheet */ = { + E0532FB94575FED5D3154EFB3E5EA1F7 /* Frameworks */ = { isa = PBXGroup; children = ( - 6CA3557D2BF1F9B7BE7F1861AE5133F3 /* RCTActionSheetManager.h */, - D9C1466DA1D6A511BC82DF6DBC8A90C5 /* RCTActionSheetManager.m */, + CEC87000B140231CF19A20D1E01F05BE /* Fabric.framework */, ); - name = RCTActionSheet; + name = Frameworks; sourceTree = ""; }; - E9A4AA61CA9CED8388027AF5F72DA401 /* RNImageCropPicker */ = { - isa = PBXGroup; - children = ( - 79DE7B6B154816E6DCBE487BB67ED173 /* Compression.h */, - 53F619506865DE124BE5E05A073A03E4 /* Compression.m */, - E70EDE8E5C9FFEB42682E1C0370C5D02 /* ImageCropPicker.h */, - D281363BAC67A31CA84C0D3423EEE4B8 /* ImageCropPicker.m */, - 8A3E9EC6AE49276FB46E379ACFB5F75D /* UIImage+Resize.h */, - 2A54C07D3A48A04612B210D4F1D8A25A /* UIImage+Resize.m */, - 12A0356DED4D13A8ACB9C13E686B8463 /* Pod */, - BD7A275A291D35CC906711758BA70A49 /* Support Files */, + E77227E574110F93332287B1046826F0 /* Base */ = { + isa = PBXGroup; + children = ( + B6B565AB3EC6C2C0D6660BAB3828EE56 /* RCTAssert.h */, + 028BA92A7B297A26AE8E7CC013384E81 /* RCTAssert.m */, + C475743AA465FDC29102D9BD778DF2CC /* RCTBridge.h */, + 80EDE09135EE370384714EDB0F85BD3E /* RCTBridge.m */, + 903DC12B8311BEF1AEB5C4E1F2193ABF /* RCTBridge+Private.h */, + 726E7834DE3241DAA577F6FD8E05E0B3 /* RCTBridgeDelegate.h */, + 5E3192D645F0095719FB7E7787E8F1B4 /* RCTBridgeMethod.h */, + D99FFB840E2908C2783BBDC2A24B95B3 /* RCTBridgeModule.h */, + 47E07E3A3F48681C527CD5217D7531D5 /* RCTBundleURLProvider.h */, + 02E630D8109F6E098A3E0C55AF0CC0C8 /* RCTBundleURLProvider.m */, + 3B5F1A401C63467D21E75CB6C268DF6E /* RCTConvert.h */, + 9AA4E4B0C996C966F30769EFB1D9D72C /* RCTConvert.m */, + 8458494AD90A506E2ECE38BE5CF6BA77 /* RCTCxxConvert.h */, + 1A8F2B0D2C360F47F3092F467B79565F /* RCTCxxConvert.m */, + 58B8D063E94104E42B58432B4096E5F0 /* RCTDefines.h */, + 59243BF7E30835DF2ABEE31E6EC538E1 /* RCTDisplayLink.h */, + C53C2DC52112F074D3D1ECDFBEC4EB7E /* RCTDisplayLink.m */, + 3DD33328E2B637C5B4AD408134ECFE46 /* RCTErrorCustomizer.h */, + 2476B2CD4C1C64773E36BBCEEA8C3312 /* RCTErrorInfo.h */, + 6C2C03FC3B0CF639E0C7808EDFF35128 /* RCTErrorInfo.m */, + AD04C17D5218FAB57F22B8E219DB51C2 /* RCTEventDispatcher.h */, + A930A883F781D011116272157CE79452 /* RCTEventDispatcher.m */, + C1941A6FC5BEAA56D060171FD2B4CC1E /* RCTFrameUpdate.h */, + 60B9FA5A7F43C586A5A1815369508200 /* RCTFrameUpdate.m */, + B5BFF3F173B36C81F82C844F028AC2C8 /* RCTImageSource.h */, + 6E4AC5D2B9214B5B19C3DDBA0CC343DD /* RCTImageSource.m */, + 5A4C498B89E03AF443493C070D0857E5 /* RCTInvalidating.h */, + 167DEB4B84E1DD52F244E6EECA4F91E0 /* RCTJavaScriptExecutor.h */, + 74FD050C1E7BF4853D396AA0D9BAA5BD /* RCTJavaScriptLoader.h */, + DEF4FA0819A3CBA766DA5DAE47770994 /* RCTJavaScriptLoader.mm */, + 79DD72E8E4807E93FD99A77DB408663E /* RCTJSStackFrame.h */, + 026A1C5FD45C04CF9961B441B4756F10 /* RCTJSStackFrame.m */, + C7C7C70B6AC20A3CE7B38DD3163FBED9 /* RCTKeyCommands.h */, + 501B99EB7BC700DF47263D9214F129D7 /* RCTKeyCommands.m */, + 1D7D05F4EF9D093A2EF0AFA3AE409BBB /* RCTLog.h */, + A30094D8BEC297DD5D27FC6EC09DC8A3 /* RCTLog.mm */, + E200BFF0D128DCBB9EF3A9CF33EB6ED4 /* RCTManagedPointer.h */, + 3428C6FA7D7FEBF04F1E575DE5B3DD2E /* RCTManagedPointer.mm */, + 3878E50B0FF712C366D064A248E7577D /* RCTModuleData.h */, + C3F1E63983363B0BAC42BBBF870EE017 /* RCTModuleData.mm */, + 0497ED342781683B0ADB953BAE814D34 /* RCTModuleMethod.h */, + A85C83C31A4175477869DB633A5067E2 /* RCTModuleMethod.mm */, + ABA930968820723EF28C2972287F2EC4 /* RCTMultipartDataTask.h */, + FAE06984E33A459B73245A09CE0F0B54 /* RCTMultipartDataTask.m */, + 011D28F37F1487D4066E6F8CCADF797C /* RCTMultipartStreamReader.h */, + E68E370505536340F7398315CFF5E1B1 /* RCTMultipartStreamReader.m */, + 388D94DE32DB6B50DA771C4E9F3540A5 /* RCTNullability.h */, + 985DB38ACE19D8DF9D60520426A5F5C4 /* RCTParserUtils.h */, + 792031DB0FE8BB7256FBA9466D54E485 /* RCTParserUtils.m */, + A6205A0D705AF5F4DD318F1FA67183B8 /* RCTPerformanceLogger.h */, + BF2297D9D53DDC5B9D99C18CD8E5648C /* RCTPerformanceLogger.m */, + B1C388F9EE1663816321AF7F00FA6874 /* RCTPlatform.h */, + 555AF6E80DF8852E0D0E9C32E59B4939 /* RCTPlatform.m */, + FDDE31A959AFFAFC27B1F066CE624198 /* RCTReloadCommand.h */, + EC407B52833A65107E0305EBE14FB09F /* RCTReloadCommand.m */, + F1A79ADA8F23B66F1213A7CDE897C09A /* RCTRootContentView.h */, + 2C155C4197A121AEA9577357A00DAFD9 /* RCTRootContentView.m */, + 9942DEC3CAA135C3DC8B6C219A0CF1DE /* RCTRootView.h */, + 7A082A75976573EF5CDA18A6CC8179E6 /* RCTRootView.m */, + 9AB31AAC90DF279AD84B7F17FD189897 /* RCTRootViewDelegate.h */, + 214F0DCCB5B9F118B7E3886722397A65 /* RCTRootViewInternal.h */, + 82DB0248A41DA2BD1930069EAA498788 /* RCTTouchEvent.h */, + 3A17E8A17F238954C6D9AAD18803E275 /* RCTTouchEvent.m */, + 925F2D39F46B89F1ABC6C06FE29A137E /* RCTTouchHandler.h */, + CCC5A01F52C10D3742860835CA4BA9B5 /* RCTTouchHandler.m */, + 8C3F81D94FB4143534C34BEF5D210E69 /* RCTURLRequestDelegate.h */, + 2D68CD17CBAA24D76365CFEB468318AD /* RCTURLRequestHandler.h */, + AC0ACBB6F3F6F22DB26D315A304A32AA /* RCTUtils.h */, + 5F38D5B5CF8BF3C30E6CA539CB49DAE3 /* RCTUtils.m */, + 59E4C8EFE3BDFD32CF982490A158E493 /* RCTVersion.h */, + 929497D12439CF846EC6473CCC0A46AE /* RCTVersion.m */, + FA4BE8BFDFDA8EB974878AD58EBAB8B5 /* Surface */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = Base; + path = React/Base; sourceTree = ""; }; - EB3D48445B5B79ABE8262A584F760A94 /* Pod */ = { + E986DEC0FB07956F92F621AB92DEB6A3 /* Support Files */ = { isa = PBXGroup; children = ( - ACAA46AA6761EC3485F4A4A3B0B4272D /* UMCore.podspec */, + 593559DF6551BF2E42BC7E2DC30CB9A2 /* UMReactNativeAdapter.xcconfig */, + D340B73579DEDE88F0A3E6FCC8BAD2D2 /* UMReactNativeAdapter-dummy.m */, + 7713116BC72735880E80838DECC28CD6 /* UMReactNativeAdapter-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/UMReactNativeAdapter"; sourceTree = ""; }; - EBD8152D142832DB584AEDFB57C2806E /* UMSensorsInterface */ = { + EB6E0EFC2750D353BC2C3F9BD655C02E /* UMModuleRegistryProvider */ = { isa = PBXGroup; children = ( - 0DD1134109756DAD35968268519C1B15 /* UMAccelerometerInterface.h */, - 1E1EA1966105DB4145F63C6DE9046BE0 /* UMBarometerInterface.h */, - 416CD06C0FF93FB37E121FE9CE0F9BE9 /* UMDeviceMotionInterface.h */, - 04F0555FCF506F5E11894DA9ED4CCF0A /* UMGyroscopeInterface.h */, - 535FFD5DA2DE0A19D6DA6A93C9FB9046 /* UMMagnetometerInterface.h */, - 6DCC7DE2986DBBEA049611130B984DB8 /* UMMagnetometerUncalibratedInterface.h */, - 539CF61882E45282259F6672A57E6A72 /* Pod */, - 1A434263C054BEB5669E4D1ACB5EE187 /* Support Files */, + 8AA5D6F5A2C64C737302419F80214440 /* UMModuleRegistryProvider.h */, + 7B2C7FA3091F72F246C807C11659FEC8 /* UMModuleRegistryProvider.m */, ); - name = UMSensorsInterface; - path = "../../node_modules/unimodules-sensors-interface/ios"; + name = UMModuleRegistryProvider; + path = UMCore/UMModuleRegistryProvider; sourceTree = ""; }; EC1D43D3456DEC6DFC924F6B5ECE8CEA /* Resources */ = { @@ -5660,24 +5681,37 @@ name = Resources; sourceTree = ""; }; - F01C339A2AC1EFE3C66C04D6BCFA2FF0 /* react-native-webview */ = { + F1719D1336C2F84FEEB562443857B2DD /* Multiline */ = { isa = PBXGroup; children = ( - 6770DB80DA2AD6203EE6306E2E63A14F /* RNCUIWebView.h */, - 8A63FC16745F04B69799DFC4C0D7A9D5 /* RNCUIWebView.m */, - B184A621FEE2C8AA51DC852246C4BFA2 /* RNCUIWebViewManager.h */, - 2E3E0741DD379C5285961D2E986BA173 /* RNCUIWebViewManager.m */, - 0DAEFCDF929038D638EBF606C51224E2 /* RNCWKProcessPoolManager.h */, - 3228898EAB4614681F1A663586CE8FF3 /* RNCWKProcessPoolManager.m */, - F96AC914BC20FD8AFD2A10879BEFF079 /* RNCWKWebView.h */, - 39AD2C8AD9970E5E1DE289AE559FEE74 /* RNCWKWebView.m */, - E30033587DC12B1D881646BEC45EDF9E /* RNCWKWebViewManager.h */, - 24354A4F330C03ED81FFBBC1B72C3024 /* RNCWKWebViewManager.m */, - 97E7FC26401EE16EA5DA278B495EB84C /* Pod */, - 98EEB84C8F66CE7A5557485F61904125 /* Support Files */, + 472A105D856BA763C8C2F77030E56CC4 /* RCTMultilineTextInputView.h */, + 5F339A8507EF8259DEFD06DD12631AC6 /* RCTMultilineTextInputView.m */, + 68B10029C3957966A9A1753B1A7E17E2 /* RCTMultilineTextInputViewManager.h */, + CE6E50ED3B600932EF66F81D489CE56E /* RCTMultilineTextInputViewManager.m */, + 2B2345893078069E8B18F071C6EC1E09 /* RCTUITextView.h */, + 0358C7D296248F07CBEE94A1426ED18A /* RCTUITextView.m */, ); - name = "react-native-webview"; - path = "../../node_modules/react-native-webview"; + name = Multiline; + path = Multiline; + sourceTree = ""; + }; + F2BE8BABB02DA99169371EB261AA0758 /* Pod */ = { + isa = PBXGroup; + children = ( + 65962FE092D4D2D98D0097060B1691A9 /* LICENSE */, + 32276EA617F09509A9B525D25C43E854 /* README.md */, + 65B2FA76FD2B5BF64B342D8995429F57 /* RNDeviceInfo.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + F3460EF71FD64D0C691C6BCEEBF1B8E9 /* Support Files */ = { + isa = PBXGroup; + children = ( + A04BAD88B492B766034D9CEBCA71BC6F /* UMSensorsInterface.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMSensorsInterface"; sourceTree = ""; }; F37F24F4DE8751D348D5C1E11C379D23 /* Frameworks */ = { @@ -5688,6 +5722,48 @@ name = Frameworks; sourceTree = ""; }; + F3F49085DB6D4C161345DE45312D9D66 /* Products */ = { + isa = PBXGroup; + children = ( + BCBF32AEAD56F4E0229BF2A2E2364F0B /* libDoubleConversion.a */, + 9A8455952F70702F48080ECDEA02F88D /* libEXAppLoaderProvider.a */, + 3EAD220E9EEA72F71BBEBC829D62BF53 /* libEXConstants.a */, + 3B64E877B9F723F2893E4164EAC323C1 /* libEXFileSystem.a */, + A0F5CDB6B6DE647E899C2C0AACFD1AFD /* libEXHaptics.a */, + A05E838601794055D5CD912A0F798AB2 /* libEXPermissions.a */, + 64B079A7525D45E173D5C618ED3F2942 /* libEXWebBrowser.a */, + FB6DA20B67261BE9C9F550A62286D7DA /* libFirebaseCore.a */, + 8C2CD37DDD4CA510E43022AF29C46E3B /* libFirebaseInstanceID.a */, + 1106BAFDF0CA47701C7FB3AAF88163D9 /* libFolly.a */, + 7DA8F6DD5916C6C65059B5F36C0DA434 /* libglog.a */, + B9850662F0EB218A3A0C9CD0101C47CE /* libGoogleToolboxForMac.a */, + 19B03B6516FE44C15622685AC0EC554A /* libGoogleUtilities.a */, + 458EC6F873C219A280ADF8F97E8D8DC7 /* libGTMSessionFetcher.a */, + 098960756B13F7C20135598E485A6916 /* libnanopb.a */, + 3670D33E47B8524C4352BED6167F69EB /* libPods-RocketChatRN.a */, + CDEEEA4F2BE34769E6BE9BA5F2B8AB56 /* libPods-ShareRocketChatRN.a */, + B94EBA5A2442B51C7F7C8E2A374F7006 /* libProtobuf.a */, + 6EF3395F36C2FE0004442D4D6BB89F0B /* libQBImagePickerController.a */, + 97FA0363243E8B0DEE2F55D3B2A29F74 /* libReact.a */, + 2FA0E7417D871B194ACDDD453D6E19D5 /* libreact-native-document-picker.a */, + B67FDFBEF3DEF4469B1A6A4A52322F0D /* libreact-native-orientation-locker.a */, + 3340DAE0B81F9B03EFC37822A0DE33E5 /* libreact-native-realm-path.a */, + 62BFB551D424B89CC4C487AC33700DEE /* libreact-native-splash-screen.a */, + 1449EA58714868BCE1A7D029EA66A8CE /* libreact-native-webview.a */, + 2876187F7ABB20C9645390BAB7218B0B /* librn-extensions-share.a */, + 7FC91402D7CBA261B1D9153234CB3A3F /* libRNDeviceInfo.a */, + 07CCEE5E24145A2CFDDACD587F19DB2B /* libRNImageCropPicker.a */, + 364BDEE694D597BA2C4F8EE79D4765BC /* libRNLocalize.a */, + E496537E146839156B21FC66BA315F5E /* libRNScreens.a */, + CC70ECFA3DFE4306859F0CCD4B6DA347 /* libRSKImageCropper.a */, + 320F8781F552FC1112A886E8CCDB2BC5 /* libUMCore.a */, + D8B20EE7A04EAEB3BF871780B1811C06 /* libUMReactNativeAdapter.a */, + 7FC7AC404AF1B82B701737AE6B8CF3E5 /* libyoga.a */, + 58C6D8751B97D2ED53D54EE11CAF8CDB /* QBImagePicker.bundle */, + ); + name = Products; + sourceTree = ""; + }; F484A489448533D7BA3ECA8B4E583360 /* Pods-RocketChatRN */ = { isa = PBXGroup; children = ( @@ -5702,52 +5778,62 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - F5AC219D2FCD1EA501A0F8A3803E0636 /* Pod */ = { + F53098DA4DE2828EA8228AE28494A7C0 /* Pod */ = { isa = PBXGroup; children = ( - 4181168805CF7F38C4CD6DBDF973C915 /* UMCameraInterface.podspec */, + C6373E2A10D1EB234C2F5732F3B624A4 /* yoga.podspec */, ); name = Pod; sourceTree = ""; }; - F6617680FC01FF767AB5A2C324B4B882 /* EXFileSystem */ = { + F7A24AF8241832779318597182FAF070 /* UMViewManagerAdapter */ = { isa = PBXGroup; children = ( - 853F971ECC8E5CEF001627385A80F21B /* EXDownloadDelegate.h */, - D2AA48971D1167CDAFD4D0A3C655D819 /* EXDownloadDelegate.m */, - 08AF325435742A9E699C98E542107CE3 /* EXFilePermissionModule.h */, - 0D15A8771D5B1C244A1F3667C1D5B108 /* EXFilePermissionModule.m */, - EF1C56D47C620750CB08FBB28D7188B0 /* EXFileSystem.h */, - D0DDE1BE48EAD5679B70F9210270241E /* EXFileSystem.m */, - 8FF59FB65959FAC943014917FBFFF90D /* EXFileSystemAssetLibraryHandler.h */, - 7959FA3C776756C79684510CE9547B3A /* EXFileSystemAssetLibraryHandler.m */, - E7F0058442084B5BFB38165037D8B848 /* EXFileSystemLocalFileHandler.h */, - BE66EBB9341C756D85769740C62D4745 /* EXFileSystemLocalFileHandler.m */, - 4F31834BD7C7BF3CD094570D77F21CDB /* Pod */, - E83CBED1565BA3C0020877FC37A994B8 /* Support Files */, + 4B9F45218474737BE74EC0673105E512 /* UMViewManagerAdapter.h */, + 0392C6E3CDA1AFE9DFF79FBFB66DFC97 /* UMViewManagerAdapter.m */, ); - name = EXFileSystem; - path = "../../node_modules/expo-file-system/ios"; + name = UMViewManagerAdapter; + path = UMReactNativeAdapter/UMViewManagerAdapter; sourceTree = ""; }; - F848C6C4B6AE6965819244613B3EA4FA /* Pod */ = { + F83C9EDE2B9C4F70736EAF59659A3F6E /* Support Files */ = { isa = PBXGroup; children = ( - 7206EE91F9B245492AF4DF0122ADB92E /* LICENSE */, - 16CF19936346F53C9AADFC496A01BFFE /* README.md */, - 4BE6672CD697BAD7F49EDFC706756FFC /* RNDeviceInfo.podspec */, + 64273EFC312AE419373BB73B4E445289 /* UMFaceDetectorInterface.xcconfig */, ); - name = Pod; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMFaceDetectorInterface"; sourceTree = ""; }; - FA564A437E49FE0E8688CCDA9DA06BE2 /* Interfaces */ = { + FA1D218CD3EDC929D509F6915ED48FDD /* Support Files */ = { isa = PBXGroup; children = ( - 65132A743ADEE9456C90C121015ACA6A /* EXAppLoaderInterface.h */, - 72509B318BC71FD668322435733BC3F0 /* EXAppRecordInterface.h */, + 7133D7628A052FF1D1F45E2C24A66825 /* UMPermissionsInterface.xcconfig */, ); - name = Interfaces; - path = EXAppLoaderProvider/Interfaces; + name = "Support Files"; + path = "../../../ios/Pods/Target Support Files/UMPermissionsInterface"; + sourceTree = ""; + }; + FA4BE8BFDFDA8EB974878AD58EBAB8B5 /* Surface */ = { + isa = PBXGroup; + children = ( + 0D15C4FBEDBDE3AD4F901373F79D822A /* RCTSurface.h */, + D5A2D6C2FF895D2F3990D36989D0D941 /* RCTSurface.mm */, + 1842F5C1CCA92FF58B5D7BC85ABDE28F /* RCTSurfaceDelegate.h */, + 1629A3E8FC170F59E8E46ACFFEE81B79 /* RCTSurfaceRootShadowView.h */, + 95E417E14EA8EC27D856057BBC13D6D6 /* RCTSurfaceRootShadowView.m */, + 25F38CA134F8AAF913944E091727800D /* RCTSurfaceRootShadowViewDelegate.h */, + 1129D19D73EEC26E2C251E0F802BC804 /* RCTSurfaceRootView.h */, + CE274FB60C2EB484F164D4E6D279C723 /* RCTSurfaceRootView.mm */, + 09EF3A1A39A0680D21137000AC0BC18E /* RCTSurfaceStage.h */, + 7C9F11478D18A63F81D2F839055478BD /* RCTSurfaceStage.m */, + 9F05FEF7F57667CC65C50D33432620F2 /* RCTSurfaceView.h */, + 09DBCA1991896D898A75813E73ED098C /* RCTSurfaceView.mm */, + ADF421E3B1381BD2BC57626586FAB4EE /* RCTSurfaceView+Internal.h */, + 418962344098C5971BD2ED3DF6019E7A /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; sourceTree = ""; }; FA8E2D778E17E14E4BBDE0345736D9C2 /* DoubleConversion */ = { @@ -5799,18 +5885,6 @@ path = FirebaseRemoteConfig; sourceTree = ""; }; - FCAEBA250836CDEE970A451D990A7DE0 /* UMFaceDetectorInterface */ = { - isa = PBXGroup; - children = ( - B858D65B72F9ECCC2FDA4E4117D0F6B0 /* UMFaceDetectorManager.h */, - 6EE4B15CE3F0C04296F28031DD3EFCAB /* UMFaceDetectorManagerProvider.h */, - 2F8944B9C1E58526E98BFB86452FCEE6 /* Pod */, - 596850BDA09F8EA404BEA8700C9C8F60 /* Support Files */, - ); - name = UMFaceDetectorInterface; - path = "../../node_modules/unimodules-face-detector-interface/ios"; - sourceTree = ""; - }; FCFC61C90C577CDF662B11CD4C0493E6 /* GoogleAppMeasurement */ = { isa = PBXGroup; children = ( @@ -5821,18 +5895,12 @@ path = GoogleAppMeasurement; sourceTree = ""; }; - FF95C3FFA2A75EC3C1A9BBCC3DACE1A5 /* SurfaceHostingView */ = { + FF99B617F823C392326E81CCE00830EC /* Pod */ = { isa = PBXGroup; children = ( - 41967FED9B51CDE9F07AE089E8659392 /* RCTSurfaceHostingProxyRootView.h */, - 5ACCCE0F667432DE30108EFC5FEA0F34 /* RCTSurfaceHostingProxyRootView.mm */, - 59FB9F33868CAB17638055C7934E4EE2 /* RCTSurfaceHostingView.h */, - E39027A4C027F40F932C0B3B372FF435 /* RCTSurfaceHostingView.mm */, - 31CE63845539D86DE8CE4A6C8B377076 /* RCTSurfaceSizeMeasureMode.h */, - 1F810D692381A33A2CEC30F4E7FDA2A0 /* RCTSurfaceSizeMeasureMode.mm */, + 0B399E81D5A1758A03AC385F06D1D9F2 /* UMReactNativeAdapter.podspec */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; + name = Pod; sourceTree = ""; }; /* End PBXGroup section */ @@ -6199,6 +6267,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B29B16A69EB2E52A2233423756C77C1F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; C8F51655E8DC48BAB3B0C28BA2D5CD9D /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -6249,10 +6324,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D9137D2CF43CE4730D585B5A9E680002 /* Headers */ = { + CED08F35236E24EF0F47C4A0765D09E8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 12EA3D8D896070EB605F260CD186A636 /* ReactNativeShareExtension.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -6325,7 +6401,7 @@ ); name = RNScreens; productName = RNScreens; - productReference = 35D64FD4EA6D92431EB73684DC2C82E3 /* libRNScreens.a */; + productReference = E496537E146839156B21FC66BA315F5E /* libRNScreens.a */; productType = "com.apple.product-type.library.static"; }; 135D3E6523830EF3D6030BF433E40372 /* yoga */ = { @@ -6342,7 +6418,7 @@ ); name = yoga; productName = yoga; - productReference = 6D5C418B5EEC894AA078554767CE3DDC /* libyoga.a */; + productReference = 7FC7AC404AF1B82B701737AE6B8CF3E5 /* libyoga.a */; productType = "com.apple.product-type.library.static"; }; 1DBC3090C8BE77C9F4202B0421E0791E /* glog */ = { @@ -6359,7 +6435,7 @@ ); name = glog; productName = glog; - productReference = C4D3D2C6049772A96AA81EDCFF2EA170 /* libglog.a */; + productReference = 7DA8F6DD5916C6C65059B5F36C0DA434 /* libglog.a */; productType = "com.apple.product-type.library.static"; }; 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */ = { @@ -6379,7 +6455,7 @@ ); name = Folly; productName = Folly; - productReference = 650F1F89B44BDADA600F9DD8034D21E5 /* libFolly.a */; + productReference = 1106BAFDF0CA47701C7FB3AAF88163D9 /* libFolly.a */; productType = "com.apple.product-type.library.static"; }; 23FF201B9797478F2F3250595974DE03 /* react-native-document-picker */ = { @@ -6397,7 +6473,7 @@ ); name = "react-native-document-picker"; productName = "react-native-document-picker"; - productReference = CB2F572C6E5E8BE17CBF38A2A93AAC07 /* libreact-native-document-picker.a */; + productReference = 2FA0E7417D871B194ACDDD453D6E19D5 /* libreact-native-document-picker.a */; productType = "com.apple.product-type.library.static"; }; 2543734D0A332B2588202904B99CC151 /* nanopb */ = { @@ -6414,7 +6490,7 @@ ); name = nanopb; productName = nanopb; - productReference = 38B5379326830579CE5929312968EED4 /* libnanopb.a */; + productReference = 098960756B13F7C20135598E485A6916 /* libnanopb.a */; productType = "com.apple.product-type.library.static"; }; 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */ = { @@ -6432,7 +6508,7 @@ ); name = RNLocalize; productName = RNLocalize; - productReference = 4C2E17571810B87B9073CBD85639CAF4 /* libRNLocalize.a */; + productReference = 364BDEE694D597BA2C4F8EE79D4765BC /* libRNLocalize.a */; productType = "com.apple.product-type.library.static"; }; 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */ = { @@ -6449,7 +6525,7 @@ ); name = GoogleToolboxForMac; productName = GoogleToolboxForMac; - productReference = 97CD684EF2CE8DF8291020F2DE149B00 /* libGoogleToolboxForMac.a */; + productReference = B9850662F0EB218A3A0C9CD0101C47CE /* libGoogleToolboxForMac.a */; productType = "com.apple.product-type.library.static"; }; 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */ = { @@ -6467,49 +6543,7 @@ ); name = FirebaseCore; productName = FirebaseCore; - productReference = 9DDAE6A5A841F6A1CBCAC6B0A54AC509 /* libFirebaseCore.a */; - productType = "com.apple.product-type.library.static"; - }; - 4AF1C7BAEFCE2A32C72F1AABAF74AA00 /* Pods-ShareRocketChatRN */ = { - isa = PBXNativeTarget; - buildConfigurationList = EC53BAB1E23B45D0F550498FF8960B51 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; - buildPhases = ( - D9137D2CF43CE4730D585B5A9E680002 /* Headers */, - 4222174B5D431DA8313C71C24717DC41 /* Sources */, - 51165801A7AF675E12E317A5B86C75F9 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - BA7F2E02425504FD66FF96EC1AD00D7D /* PBXTargetDependency */, - 82652CE30CF96001F0E77085D4EEAF85 /* PBXTargetDependency */, - 515E131115CAD41B5AFB09FAC3295722 /* PBXTargetDependency */, - 156C51256C0E6BF3406DFD70C84CF30B /* PBXTargetDependency */, - 3981F6B25A5281D5D5F11320205AD8F7 /* PBXTargetDependency */, - 7061FCB729CBF838DDE02088BB50A272 /* PBXTargetDependency */, - B2924FDDFB445084FCA45C581F2A7721 /* PBXTargetDependency */, - 80926E72D43F59F2E6412AFA1BA73425 /* PBXTargetDependency */, - 355F5296A38F514AA0697865A001FDC0 /* PBXTargetDependency */, - 12FCE190F30535B0E26D16475614334C /* PBXTargetDependency */, - 63F10C439748EE2A6393092EBEC15269 /* PBXTargetDependency */, - E4C176B5257F774FF5A76681500E224A /* PBXTargetDependency */, - 8AA4FC913B7AEE9436E9689D139EB609 /* PBXTargetDependency */, - 92F43D4CF8BE3A5ECB550939832F4F0D /* PBXTargetDependency */, - 66961F37938A041C8ACEA8626B04CE43 /* PBXTargetDependency */, - 05DC270E09EE5BC9E109E84BCE26885A /* PBXTargetDependency */, - C29BA1E354E50925D3D695468A87778A /* PBXTargetDependency */, - AFB2C43023C7F12DEB6D8106283A08D1 /* PBXTargetDependency */, - 0D23E31FE61765C060513EF894BEFC1F /* PBXTargetDependency */, - CD8431C9BABA48C0C73FD2E26EE908D9 /* PBXTargetDependency */, - 1C9D60F94C44973489D2998E6355A134 /* PBXTargetDependency */, - 72FEF033FFC2B6B38B7BC99C56CE6AE2 /* PBXTargetDependency */, - DC9D4A837F44A83FD52CBCE2C15524C0 /* PBXTargetDependency */, - 3564B69A1C503366BACE5FC87D262333 /* PBXTargetDependency */, - 2CAAC3DDB567FBAC78F00C9AA4974FB4 /* PBXTargetDependency */, - ); - name = "Pods-ShareRocketChatRN"; - productName = "Pods-ShareRocketChatRN"; - productReference = 3DEEC8163F843FED9B19708AD5E1533B /* libPods-ShareRocketChatRN.a */; + productReference = FB6DA20B67261BE9C9F550A62286D7DA /* libFirebaseCore.a */; productType = "com.apple.product-type.library.static"; }; 4AF5E628EAB736BEF1F7FD9320938BD2 /* QBImagePickerController-QBImagePicker */ = { @@ -6526,7 +6560,7 @@ ); name = "QBImagePickerController-QBImagePicker"; productName = "QBImagePickerController-QBImagePicker"; - productReference = 92EFFC5DCEABAA1F19A0EA043792A75A /* QBImagePicker.bundle */; + productReference = 58C6D8751B97D2ED53D54EE11CAF8CDB /* QBImagePicker.bundle */; productType = "com.apple.product-type.bundle"; }; 4ECE1108F140208A729A83BC94FAA150 /* EXAppLoaderProvider */ = { @@ -6543,7 +6577,7 @@ ); name = EXAppLoaderProvider; productName = EXAppLoaderProvider; - productReference = CEF911BCB17DBFF64FEB78BD39119AEE /* libEXAppLoaderProvider.a */; + productReference = 9A8455952F70702F48080ECDEA02F88D /* libEXAppLoaderProvider.a */; productType = "com.apple.product-type.library.static"; }; 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */ = { @@ -6562,7 +6596,7 @@ ); name = FirebaseInstanceID; productName = FirebaseInstanceID; - productReference = B145628F76E71EBC32DE310DF90FEA08 /* libFirebaseInstanceID.a */; + productReference = 8C2CD37DDD4CA510E43022AF29C46E3B /* libFirebaseInstanceID.a */; productType = "com.apple.product-type.library.static"; }; 59C1091111E1D9F774B8BBDFD529A0CD /* react-native-webview */ = { @@ -6580,7 +6614,7 @@ ); name = "react-native-webview"; productName = "react-native-webview"; - productReference = 40AAD9902F8CFC8829E817508F6DC261 /* libreact-native-webview.a */; + productReference = 1449EA58714868BCE1A7D029EA66A8CE /* libreact-native-webview.a */; productType = "com.apple.product-type.library.static"; }; 5B1BA8B3E53682DD179F7BFF8F2C8B75 /* EXHaptics */ = { @@ -6598,7 +6632,7 @@ ); name = EXHaptics; productName = EXHaptics; - productReference = BDCA46324A975C7FC1D9310BFB70F8FA /* libEXHaptics.a */; + productReference = A0F5CDB6B6DE647E899C2C0AACFD1AFD /* libEXHaptics.a */; productType = "com.apple.product-type.library.static"; }; 617459C51E8685DC1604FE74E1E93024 /* react-native-orientation-locker */ = { @@ -6616,7 +6650,7 @@ ); name = "react-native-orientation-locker"; productName = "react-native-orientation-locker"; - productReference = 7EBB09FA3648B85F3F0BC62F81786778 /* libreact-native-orientation-locker.a */; + productReference = B67FDFBEF3DEF4469B1A6A4A52322F0D /* libreact-native-orientation-locker.a */; productType = "com.apple.product-type.library.static"; }; 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */ = { @@ -6633,7 +6667,7 @@ ); name = DoubleConversion; productName = DoubleConversion; - productReference = 60584D3AA8192A7EB3622726C89CAB29 /* libDoubleConversion.a */; + productReference = BCBF32AEAD56F4E0229BF2A2E2364F0B /* libDoubleConversion.a */; productType = "com.apple.product-type.library.static"; }; 7576203C2856D63CE7ACAEB26FDDFB6B /* QBImagePickerController */ = { @@ -6651,7 +6685,7 @@ ); name = QBImagePickerController; productName = QBImagePickerController; - productReference = 96CBF7B1D6A377DE0ADE741A58B3E116 /* libQBImagePickerController.a */; + productReference = 6EF3395F36C2FE0004442D4D6BB89F0B /* libQBImagePickerController.a */; productType = "com.apple.product-type.library.static"; }; 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */ = { @@ -6668,7 +6702,7 @@ ); name = GoogleUtilities; productName = GoogleUtilities; - productReference = 24172F1F2D1120AE004421165710D403 /* libGoogleUtilities.a */; + productReference = 19B03B6516FE44C15622685AC0EC554A /* libGoogleUtilities.a */; productType = "com.apple.product-type.library.static"; }; 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */ = { @@ -6686,7 +6720,7 @@ ); name = "react-native-realm-path"; productName = "react-native-realm-path"; - productReference = 22B1D6FD8E5BFE1294F9BF136FD98AE5 /* libreact-native-realm-path.a */; + productReference = 3340DAE0B81F9B03EFC37822A0DE33E5 /* libreact-native-realm-path.a */; productType = "com.apple.product-type.library.static"; }; 81C054123AFD73E9DFE7239A455A404E /* react-native-splash-screen */ = { @@ -6704,7 +6738,7 @@ ); name = "react-native-splash-screen"; productName = "react-native-splash-screen"; - productReference = 8B3C7D3B1BE1479AAEE455CF7FCFB931 /* libreact-native-splash-screen.a */; + productReference = 62BFB551D424B89CC4C487AC33700DEE /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; 8601F7B19425496C5312C6F111D6E777 /* UMCore */ = { @@ -6721,7 +6755,7 @@ ); name = UMCore; productName = UMCore; - productReference = 7419615BE9C77060447B9498E8C5BC09 /* libUMCore.a */; + productReference = 320F8781F552FC1112A886E8CCDB2BC5 /* libUMCore.a */; productType = "com.apple.product-type.library.static"; }; A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */ = { @@ -6740,7 +6774,68 @@ ); name = EXConstants; productName = EXConstants; - productReference = C2E6BCF8D456455BD75D2FD735C2B056 /* libEXConstants.a */; + productReference = 3EAD220E9EEA72F71BBEBC829D62BF53 /* libEXConstants.a */; + productType = "com.apple.product-type.library.static"; + }; + AA192573488AAD7D2EC81CF1511C69C5 /* rn-extensions-share */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6E2CA5DE768F96833D74D2DBBA5FD99F /* Build configuration list for PBXNativeTarget "rn-extensions-share" */; + buildPhases = ( + CED08F35236E24EF0F47C4A0765D09E8 /* Headers */, + 40130C552E81FFEC9AD8D412F713754E /* Sources */, + 906D946E5B7154DDB764288FC5516B6C /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + FF63F22248862ACBD51AAB5D97FEC6B2 /* PBXTargetDependency */, + ); + name = "rn-extensions-share"; + productName = "rn-extensions-share"; + productReference = 2876187F7ABB20C9645390BAB7218B0B /* librn-extensions-share.a */; + productType = "com.apple.product-type.library.static"; + }; + ACA9056BCEB6E51E1FB4AD97850A817E /* Pods-ShareRocketChatRN */ = { + isa = PBXNativeTarget; + buildConfigurationList = E7FDCEFB599BFAB0D779D631FC8A3010 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */; + buildPhases = ( + B29B16A69EB2E52A2233423756C77C1F /* Headers */, + 51ACC31895562489D36B6F0FDC086AC5 /* Sources */, + 5C05DCAB8592E6572DA437E35C900900 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 49084C0EFEB19C61BCE94140DEB97E07 /* PBXTargetDependency */, + B14207C47C04D9BB7C976300C14A86B7 /* PBXTargetDependency */, + BA4FB9292F3061B8EE79440B809CB23B /* PBXTargetDependency */, + 40DC40201CFD9AF4F4AAFBFE8EE8070C /* PBXTargetDependency */, + CC06B930A498CC88550FBD9BB56CCE01 /* PBXTargetDependency */, + FECE91250ADA5AF5704FBF8649B52FD8 /* PBXTargetDependency */, + 926A1DBFA3B3F3DD4E6F1DE43CFA60CB /* PBXTargetDependency */, + 6C5BDCB4AB34BFFAB8B1F8058D6D92EB /* PBXTargetDependency */, + AA9AB3759BC093A8D269A80596B46245 /* PBXTargetDependency */, + 4E0228533D78D181FC5019F7DA3322EB /* PBXTargetDependency */, + AC06ADFA53B5FE3CA7A8F8EDF39A5E1A /* PBXTargetDependency */, + 3963603F05FAC3F9BE3D6B217C0506E2 /* PBXTargetDependency */, + F83B61B0C7542E8C9D5949D1C70E5888 /* PBXTargetDependency */, + 5C32F23FD17933F23459F73CC27067D2 /* PBXTargetDependency */, + 43E644A3FF12AE1972CAD0D6B123B41D /* PBXTargetDependency */, + F11B04BC75EA512E7FF25BD37B7FD0E6 /* PBXTargetDependency */, + CED757B91E1512664C8B1C26B46607DF /* PBXTargetDependency */, + 79ECA192A752C3D714F89040FCE66415 /* PBXTargetDependency */, + 93B26C9E69F5B2C0FBE624A3E471BA5B /* PBXTargetDependency */, + 9D047FCD6AE825509113E8DCC241472C /* PBXTargetDependency */, + E24D2CA6A8C0C8944393256E986FEC29 /* PBXTargetDependency */, + D09E377EF43AB19CC62FC4CCFEECCEC4 /* PBXTargetDependency */, + D0679AFB75C7CB87DD1C0ECE6457A53A /* PBXTargetDependency */, + 628F0136607B8CD6439A915B14CBE946 /* PBXTargetDependency */, + D4EEC4FA9F2995237F46D71E1EF11048 /* PBXTargetDependency */, + E217C02AF54F6D8355E2ED9A40DB5EB2 /* PBXTargetDependency */, + ); + name = "Pods-ShareRocketChatRN"; + productName = "Pods-ShareRocketChatRN"; + productReference = CDEEEA4F2BE34769E6BE9BA5F2B8AB56 /* libPods-ShareRocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; AFC189D722BE42FA3301F2DA83928057 /* RNImageCropPicker */ = { @@ -6760,7 +6855,7 @@ ); name = RNImageCropPicker; productName = RNImageCropPicker; - productReference = 7FE734CD6E27A147E8CD7BF2385CAB68 /* libRNImageCropPicker.a */; + productReference = 07CCEE5E24145A2CFDDACD587F19DB2B /* libRNImageCropPicker.a */; productType = "com.apple.product-type.library.static"; }; B11E238094137347E8790BFEB1BEF01F /* EXWebBrowser */ = { @@ -6778,7 +6873,7 @@ ); name = EXWebBrowser; productName = EXWebBrowser; - productReference = 48EE6575C1CFEA2AEDE0D19DF8D79F0E /* libEXWebBrowser.a */; + productReference = 64B079A7525D45E173D5C618ED3F2942 /* libEXWebBrowser.a */; productType = "com.apple.product-type.library.static"; }; CAFCB38ADB763972D323BBBC5D20EEF7 /* Pods-RocketChatRN */ = { @@ -6846,7 +6941,7 @@ ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; - productReference = 63A2C7F825019C2F37A3D5B672CCC93A /* libPods-RocketChatRN.a */; + productReference = 3670D33E47B8524C4352BED6167F69EB /* libPods-RocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; DF4DC904616B1B1E4A07E8EC5F5EC979 /* UMReactNativeAdapter */ = { @@ -6866,7 +6961,7 @@ ); name = UMReactNativeAdapter; productName = UMReactNativeAdapter; - productReference = 004FA892142BC5EF9C7C3646A89CA8A8 /* libUMReactNativeAdapter.a */; + productReference = D8B20EE7A04EAEB3BF871780B1811C06 /* libUMReactNativeAdapter.a */; productType = "com.apple.product-type.library.static"; }; E07EA1A35FBB3A986F484EB01CDD5527 /* EXPermissions */ = { @@ -6885,7 +6980,7 @@ ); name = EXPermissions; productName = EXPermissions; - productReference = 7D1572D0A81CB920AC0A5BEBE601742B /* libEXPermissions.a */; + productReference = A05E838601794055D5CD912A0F798AB2 /* libEXPermissions.a */; productType = "com.apple.product-type.library.static"; }; E2BC182D60EBDE8BDC6D1715DE3A82AC /* RSKImageCropper */ = { @@ -6902,7 +6997,7 @@ ); name = RSKImageCropper; productName = RSKImageCropper; - productReference = 9C5AA37519C8C90BEE2FA16240662171 /* libRSKImageCropper.a */; + productReference = CC70ECFA3DFE4306859F0CCD4B6DA347 /* libRSKImageCropper.a */; productType = "com.apple.product-type.library.static"; }; E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */ = { @@ -6919,7 +7014,7 @@ ); name = GTMSessionFetcher; productName = GTMSessionFetcher; - productReference = F4C480E1EF4112F2B28FCBE872E65262 /* libGTMSessionFetcher.a */; + productReference = 458EC6F873C219A280ADF8F97E8D8DC7 /* libGTMSessionFetcher.a */; productType = "com.apple.product-type.library.static"; }; E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */ = { @@ -6937,7 +7032,7 @@ ); name = RNDeviceInfo; productName = RNDeviceInfo; - productReference = BAE447C41D111839BA0F623B729945BD /* libRNDeviceInfo.a */; + productReference = 7FC91402D7CBA261B1D9153234CB3A3F /* libRNDeviceInfo.a */; productType = "com.apple.product-type.library.static"; }; F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */ = { @@ -6954,7 +7049,7 @@ ); name = Protobuf; productName = Protobuf; - productReference = D3049A18CD3AC667DC38BCFEBD4E3A6C /* libProtobuf.a */; + productReference = B94EBA5A2442B51C7F7C8E2A374F7006 /* libProtobuf.a */; productType = "com.apple.product-type.library.static"; }; FD0F4E74C14C4B5B552686BD9576466F /* EXFileSystem */ = { @@ -6973,7 +7068,7 @@ ); name = EXFileSystem; productName = EXFileSystem; - productReference = 8FC09F8F473E743C692CF37481AD28EE /* libEXFileSystem.a */; + productReference = 3B64E877B9F723F2893E4164EAC323C1 /* libEXFileSystem.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ @@ -6993,7 +7088,7 @@ en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 50FCEB63D541A827419E20E05EFA6AF5 /* Products */; + productRefGroup = F3F49085DB6D4C161345DE45312D9D66 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( @@ -7023,7 +7118,7 @@ E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */, 2543734D0A332B2588202904B99CC151 /* nanopb */, CAFCB38ADB763972D323BBBC5D20EEF7 /* Pods-RocketChatRN */, - 4AF1C7BAEFCE2A32C72F1AABAF74AA00 /* Pods-ShareRocketChatRN */, + ACA9056BCEB6E51E1FB4AD97850A817E /* Pods-ShareRocketChatRN */, F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */, 7576203C2856D63CE7ACAEB26FDDFB6B /* QBImagePickerController */, 4AF5E628EAB736BEF1F7FD9320938BD2 /* QBImagePickerController-QBImagePicker */, @@ -7032,6 +7127,7 @@ 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */, 81C054123AFD73E9DFE7239A455A404E /* react-native-splash-screen */, 59C1091111E1D9F774B8BBDFD529A0CD /* react-native-webview */, + AA192573488AAD7D2EC81CF1511C69C5 /* rn-extensions-share */, E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */, AFC189D722BE42FA3301F2DA83928057 /* RNImageCropPicker */, 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */, @@ -7208,11 +7304,12 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 4222174B5D431DA8313C71C24717DC41 /* Sources */ = { + 40130C552E81FFEC9AD8D412F713754E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9FE61DB5E1DAF7047C2FA52A52E22450 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + 30D1EF1AEC6E201873D95CAC4CADE6E8 /* ReactNativeShareExtension.m in Sources */, + 7268C2FA444843FAE6C1A14B396A46F6 /* rn-extensions-share-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -7253,6 +7350,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + 51ACC31895562489D36B6F0FDC086AC5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4F34AA77F8719F11A331EC384AB44272 /* Pods-ShareRocketChatRN-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 529ECFD34EB290F4D54D1BD9A5E5A3D5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -7542,12 +7647,6 @@ target = 2543734D0A332B2588202904B99CC151 /* nanopb */; targetProxy = E436B6DC396658B681C57F3B847AF7B9 /* PBXContainerItemProxy */; }; - 05DC270E09EE5BC9E109E84BCE26885A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleUtilities; - target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; - targetProxy = 72DC5089D7015830BBCDBDF27FAFC96E /* PBXContainerItemProxy */; - }; 06EACC7C05FB48DF953A96D69ECFB108 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Fabric; @@ -7572,12 +7671,6 @@ target = 61BBB5951F8410A3F291DFCFA7FBB0ED /* UMFontInterface */; targetProxy = A36D2F569C38D8B17E2534B08579C039 /* PBXContainerItemProxy */; }; - 0D23E31FE61765C060513EF894BEFC1F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNLocalize; - target = 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */; - targetProxy = 2983B09D3E9AC3BA6506F2EE94BE176B /* PBXContainerItemProxy */; - }; 0F0A8B73246A3F2340DC1E516950CCBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseCore; @@ -7602,18 +7695,6 @@ target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; targetProxy = 5744754DDDFB2AEEC56F1B7BDEC645FC /* PBXContainerItemProxy */; }; - 12FCE190F30535B0E26D16475614334C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseRemoteConfig; - target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; - targetProxy = DAD95BEEF63491B2F10C991A7F06C621 /* PBXContainerItemProxy */; - }; - 156C51256C0E6BF3406DFD70C84CF30B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Firebase; - target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; - targetProxy = 7FD5404087F77FD99F6BC1EBC9567BAE /* PBXContainerItemProxy */; - }; 15D5DC6D54EDFCCE801AF55317683059 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleAppMeasurement; @@ -7637,12 +7718,6 @@ target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; targetProxy = 3CC2EA99A4F73187F7A2CD42265AD7C9 /* PBXContainerItemProxy */; }; - 1C9D60F94C44973489D2998E6355A134 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; - targetProxy = EE427B1B4E78C41D489DA719CA6ED496 /* PBXContainerItemProxy */; - }; 1D189DA7DFB1A6568E971F9A6DAA9E87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -7667,12 +7742,6 @@ target = AD8E174269DB70F077106CD3E4799822 /* UMImageLoaderInterface */; targetProxy = A44A7A5827E52DEF38891CA928DA2769 /* PBXContainerItemProxy */; }; - 2CAAC3DDB567FBAC78F00C9AA4974FB4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = yoga; - target = 135D3E6523830EF3D6030BF433E40372 /* yoga */; - targetProxy = D542C9898F15CAE736F218FA34F44C60 /* PBXContainerItemProxy */; - }; 2D8E53337BD4BCDD2B269DFEC2331E51 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -7709,18 +7778,6 @@ target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; targetProxy = 1CE3E751E533C71A2F0C6903F97BFDE8 /* PBXContainerItemProxy */; }; - 355F5296A38F514AA0697865A001FDC0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebasePerformance; - target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; - targetProxy = 1BB7BA8D5AB15D02C96722FAA92673E7 /* PBXContainerItemProxy */; - }; - 3564B69A1C503366BACE5FC87D262333 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-realm-path"; - target = 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */; - targetProxy = F97763298CEF81309A9AF83CF3E4BEF8 /* PBXContainerItemProxy */; - }; 36CD4D8E0E797C66E5A80685E8F52205 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; @@ -7733,11 +7790,11 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = A07A8F019F42721442DA50F68DCECAFB /* PBXContainerItemProxy */; }; - 3981F6B25A5281D5D5F11320205AD8F7 /* PBXTargetDependency */ = { + 3963603F05FAC3F9BE3D6B217C0506E2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseABTesting; - target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; - targetProxy = 39A0F904829CB76B90D5C6B0017D742F /* PBXContainerItemProxy */; + name = GTMSessionFetcher; + target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; + targetProxy = D70C219615F1DFA0BF38EED9E25D621E /* PBXContainerItemProxy */; }; 3FD0607DDBDC01E6CFDA9FFAD045CA25 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7751,6 +7808,12 @@ target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; targetProxy = EEBBFE74636D6BC7E8D380B4DBDBC621 /* PBXContainerItemProxy */; }; + 40DC40201CFD9AF4F4AAFBFE8EE8070C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Firebase; + target = 97C8CD7E4179727E4F374CABD338D2BB /* Firebase */; + targetProxy = 1B23921412C654414B67FBFAE9906DA3 /* PBXContainerItemProxy */; + }; 41E729F98A51CA2192BC60C83870A12D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; @@ -7768,24 +7831,36 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94ACBB797039D918B9290B94A50A3F36 /* PBXContainerItemProxy */; }; + 43E644A3FF12AE1972CAD0D6B123B41D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleToolboxForMac; + target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; + targetProxy = 19AA3B611CA2253EFFC80AC731A9898C /* PBXContainerItemProxy */; + }; 451A9C0F112E5075971EA7A5E96A1405 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; target = 8601F7B19425496C5312C6F111D6E777 /* UMCore */; targetProxy = 4F52E96A961F5AF7436A79481EB95CE0 /* PBXContainerItemProxy */; }; + 49084C0EFEB19C61BCE94140DEB97E07 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Crashlytics; + target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; + targetProxy = E13C0AA52D63CC21BF71EDC5A3252030 /* PBXContainerItemProxy */; + }; + 4E0228533D78D181FC5019F7DA3322EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseRemoteConfig; + target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; + targetProxy = 3C2167AD1B964F44C269F420743A878A /* PBXContainerItemProxy */; + }; 4F7FBAA168FB752BC980C4CB37D4732D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFileSystemInterface; target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; targetProxy = 013C8C712E31279FB89EBADB1C1A4BC4 /* PBXContainerItemProxy */; }; - 515E131115CAD41B5AFB09FAC3295722 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Fabric; - target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; - targetProxy = 39799A6DAB8568994F771B7CAB2A5AAA /* PBXContainerItemProxy */; - }; 539549CEE257F5EA91A2C4155FDFE8A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = glog; @@ -7833,6 +7908,12 @@ target = DF4DC904616B1B1E4A07E8EC5F5EC979 /* UMReactNativeAdapter */; targetProxy = 3E9FE0018CEFB861F7F5F417A133EB77 /* PBXContainerItemProxy */; }; + 5C32F23FD17933F23459F73CC27067D2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleIDFASupport; + target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; + targetProxy = 50854D4DE5024FA2618AFB2AF326C3D6 /* PBXContainerItemProxy */; + }; 5F3518D836F3905EBFCBE88425EE90B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; @@ -7857,17 +7938,11 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = CDF9E4862D1A69A546518D09BF29A96E /* PBXContainerItemProxy */; }; - 63F10C439748EE2A6393092EBEC15269 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */; - targetProxy = F16D85BF10A150F2EB5F72DCD49C0A28 /* PBXContainerItemProxy */; - }; - 66961F37938A041C8ACEA8626B04CE43 /* PBXTargetDependency */ = { + 628F0136607B8CD6439A915B14CBE946 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = GoogleToolboxForMac; - target = 32F8EA730FE2005197F54338D2C236AC /* GoogleToolboxForMac */; - targetProxy = 2385313AF5A872CD60E1D2BFB52FAA21 /* PBXContainerItemProxy */; + name = "react-native-realm-path"; + target = 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */; + targetProxy = BBEB07C6F38742F341161AC9E1B4C998 /* PBXContainerItemProxy */; }; 66BAE87543C14805E01D84493EE37510 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7893,6 +7968,12 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = C6E67451067E44E2BAF9B3D37F53D047 /* PBXContainerItemProxy */; }; + 6C5BDCB4AB34BFFAB8B1F8058D6D92EB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseInstanceID; + target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; + targetProxy = 2183E8E7447A063F846B541C2F7D010F /* PBXContainerItemProxy */; + }; 6D9EE29F2686B731008A3C1A8046196A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseAnalytics; @@ -7901,14 +7982,8 @@ }; 6F4D5767618C5165B39951C9446CC674 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = 4A63E1C410E51622BD0A118A052F2C91 /* PBXContainerItemProxy */; - }; - 7061FCB729CBF838DDE02088BB50A272 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseAnalytics; - target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; - targetProxy = 359FAC0A48EACB6ECF48EF71B274C6A7 /* PBXContainerItemProxy */; + name = React; + targetProxy = 4A63E1C410E51622BD0A118A052F2C91 /* PBXContainerItemProxy */; }; 719CF049AEB9960AE8779693E1EFE7E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -7916,12 +7991,6 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = B05FDE7687B62296694D0BBA9546545E /* PBXContainerItemProxy */; }; - 72FEF033FFC2B6B38B7BC99C56CE6AE2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = 1DBC3090C8BE77C9F4202B0421E0791E /* glog */; - targetProxy = 167724BE8CCBFDC74CD239959356A59C /* PBXContainerItemProxy */; - }; 75C254D2DAAA204A5E9EACE5D2DD9B5D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = QBImagePickerController; @@ -7940,6 +8009,12 @@ target = 7825F222F53EF434DE74A6C6FAF290E9 /* UMFileSystemInterface */; targetProxy = 8C47412223509C5695149990BBEE4F52 /* PBXContainerItemProxy */; }; + 79ECA192A752C3D714F89040FCE66415 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */; + targetProxy = D57940C6AEE5C4E9589820DAD239FAB8 /* PBXContainerItemProxy */; + }; 7A9B7A803D5FE0040DCEB20B409EF781 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFontInterface; @@ -7962,24 +8037,12 @@ name = React; targetProxy = F4BEE2076A9B86B580CCE1E09DACE3FF /* PBXContainerItemProxy */; }; - 80926E72D43F59F2E6412AFA1BA73425 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FirebaseInstanceID; - target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; - targetProxy = F2F228AE683105704395ACD52FBF2DCD /* PBXContainerItemProxy */; - }; 815248D0F2DBD89170D5E591539DF287 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = Protobuf; target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; targetProxy = 8133F53ED6CDC355BB2264E4DBA0BF96 /* PBXContainerItemProxy */; }; - 82652CE30CF96001F0E77085D4EEAF85 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; - targetProxy = 68DE229480D96DE348D64E9E776BE932 /* PBXContainerItemProxy */; - }; 8474AEC0830DC2720D3D683831E6FCD1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -8015,12 +8078,6 @@ target = 458293E00EF1C1F42778F9425AD34AA4 /* UMConstantsInterface */; targetProxy = C02513E6525B1C18032BC93E0A7BDFE8 /* PBXContainerItemProxy */; }; - 8AA4FC913B7AEE9436E9689D139EB609 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleAppMeasurement; - target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; - targetProxy = B76384D7C3DA6D95F986CDB18CBC2A6D /* PBXContainerItemProxy */; - }; 8C2E0DEC239014CB5C75B879F52B2591 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; @@ -8032,23 +8089,29 @@ target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 5D4696B5DC0410EBB318096CDEA1B03B /* PBXContainerItemProxy */; }; + 926A1DBFA3B3F3DD4E6F1DE43CFA60CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseCore; + target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; + targetProxy = 823F3F88074076E3267A87E12D0DCB8C /* PBXContainerItemProxy */; + }; 92C3989E553E6EC006EA46423878085E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GoogleUtilities; target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; targetProxy = 94E9A5D5D73EADA398147912908A9311 /* PBXContainerItemProxy */; }; - 92F43D4CF8BE3A5ECB550939832F4F0D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GoogleIDFASupport; - target = 7C36E7C600F8DE2BE1819059C80F2182 /* GoogleIDFASupport */; - targetProxy = BAFA61E9079850A994F5762B6F154206 /* PBXContainerItemProxy */; - }; 937633048AE4F69B9F397E1C5B238AF9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = React; targetProxy = 8232CB33EE4E725E39E19514E823CDDA /* PBXContainerItemProxy */; }; + 93B26C9E69F5B2C0FBE624A3E471BA5B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNLocalize; + target = 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */; + targetProxy = 949872BA0428667E2E09BCC2E7CE649F /* PBXContainerItemProxy */; + }; 96DA387B98978C2974700F14ACFDEBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -8066,6 +8129,11 @@ target = 5AAD465FECAE9083F45E3DB9252A8302 /* FirebaseRemoteConfig */; targetProxy = B39EE80093E29C73C5DA1DCA89839DD4 /* PBXContainerItemProxy */; }; + 9D047FCD6AE825509113E8DCC241472C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = AE5CD1340741F5537A8C684A62C4078D /* PBXContainerItemProxy */; + }; A2F8CA90F13A11B87A927769D272D25A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMFaceDetectorInterface; @@ -8096,6 +8164,12 @@ target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; targetProxy = 05F88362B58CA661718541D4C8D84A46 /* PBXContainerItemProxy */; }; + AA9AB3759BC093A8D269A80596B46245 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebasePerformance; + target = 42F7AF66FD1178857DC3A2834552BE76 /* FirebasePerformance */; + targetProxy = D800043B0907160942C9D728D281E8F9 /* PBXContainerItemProxy */; + }; AAAC2BF342AEF0D920807BB739AE3DF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "boost-for-react-native"; @@ -8108,18 +8182,18 @@ target = 7576203C2856D63CE7ACAEB26FDDFB6B /* QBImagePickerController */; targetProxy = 08D6DEDCEF085E9C17B9619744FBCD3B /* PBXContainerItemProxy */; }; + AC06ADFA53B5FE3CA7A8F8EDF39A5E1A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Folly; + target = 2204E533997A82F0D6F7AD16CE4C7106 /* Folly */; + targetProxy = 9010C706965D89DA1067617A270A3A31 /* PBXContainerItemProxy */; + }; AF9E4B4DEB4F9BC8911C71DB2A37F2CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "QBImagePickerController-QBImagePicker"; target = 4AF5E628EAB736BEF1F7FD9320938BD2 /* QBImagePickerController-QBImagePicker */; targetProxy = 7386848E6D802B7B06413C92F8B56C4D /* PBXContainerItemProxy */; }; - AFB2C43023C7F12DEB6D8106283A08D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = E586D237DD4BD9777F066B441FC23D4B /* RNDeviceInfo */; - targetProxy = 631FD77A28B1BCDF4D45F41628BECCFE /* PBXContainerItemProxy */; - }; B0EAF6F36E43BB21244B2F0B5E346EE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCameraInterface; @@ -8132,11 +8206,11 @@ target = 76CC3A2D036B8B64B5F70A7078274100 /* UMPermissionsInterface */; targetProxy = 17299B3B10FACA862736181ECC44D9A8 /* PBXContainerItemProxy */; }; - B2924FDDFB445084FCA45C581F2A7721 /* PBXTargetDependency */ = { + B14207C47C04D9BB7C976300C14A86B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = FirebaseCore; - target = 368FB7FBA34E3323BB42D13325551C95 /* FirebaseCore */; - targetProxy = 8034032320453D090C4663C66DAA3B29 /* PBXContainerItemProxy */; + name = DoubleConversion; + target = 645DEAED47D48A55A088EE2AD4BCABE9 /* DoubleConversion */; + targetProxy = 16D6D257DFBE230C445EEA08C7C882CB /* PBXContainerItemProxy */; }; B872B9130B4FBA0C21D898DF3872DF22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -8150,11 +8224,11 @@ target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; targetProxy = 0F97BFD45E71B2607F0E2D6BD5F81617 /* PBXContainerItemProxy */; }; - BA7F2E02425504FD66FF96EC1AD00D7D /* PBXTargetDependency */ = { + BA4FB9292F3061B8EE79440B809CB23B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = Crashlytics; - target = ABA9A411BB5A359862E5F1AA6238278E /* Crashlytics */; - targetProxy = FCAD554FD7482E6FCCAF9742C73155D6 /* PBXContainerItemProxy */; + name = Fabric; + target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; + targetProxy = 186A9E0F4FEEB90655EEFF672180467E /* PBXContainerItemProxy */; }; BBD4886151789AB6623BC62B6C4E8EF8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -8180,12 +8254,6 @@ target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; targetProxy = A560693278F98FFD671DF28C1A701DFB /* PBXContainerItemProxy */; }; - C29BA1E354E50925D3D695468A87778A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Protobuf; - target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; - targetProxy = 278BA50ACB18DDB3949BA8801EE10514 /* PBXContainerItemProxy */; - }; C685EEFD7FF4D4C3F16AD088F18AD053 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -8210,10 +8278,11 @@ target = D35E9EC86D36A4C8BC1704199FDB3552 /* Fabric */; targetProxy = D465047540D12FD9D95291AE82A76DB9 /* PBXContainerItemProxy */; }; - CD8431C9BABA48C0C73FD2E26EE908D9 /* PBXTargetDependency */ = { + CC06B930A498CC88550FBD9BB56CCE01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = React; - targetProxy = B2026A1763363BD4448E48802860DD45 /* PBXContainerItemProxy */; + name = FirebaseABTesting; + target = 39E0403E3ACE39BC0D878D82FAB8F012 /* FirebaseABTesting */; + targetProxy = 4777233D6A538D884DA2554F19B206A9 /* PBXContainerItemProxy */; }; CEC3CD2B0CF40C8F4B7BA03F56EE8AD5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; @@ -8221,6 +8290,24 @@ target = 2D7029C53C643F4ADE254A09284C1843 /* RNLocalize */; targetProxy = CE631DD21F23D1B55E24591202F7ACFF /* PBXContainerItemProxy */; }; + CED757B91E1512664C8B1C26B46607DF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Protobuf; + target = F1DE11E9221F196A8A9D3464F96A345A /* Protobuf */; + targetProxy = 642D5612C41C5A4DCC2E37B28B5AE2F6 /* PBXContainerItemProxy */; + }; + D0679AFB75C7CB87DD1C0ECE6457A53A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = nanopb; + target = 2543734D0A332B2588202904B99CC151 /* nanopb */; + targetProxy = 063AC701982D0F7B7B82C06AF6B74D02 /* PBXContainerItemProxy */; + }; + D09E377EF43AB19CC62FC4CCFEECCEC4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = glog; + target = 1DBC3090C8BE77C9F4202B0421E0791E /* glog */; + targetProxy = 3471DFB57C88A6FE044A45DAA9402337 /* PBXContainerItemProxy */; + }; D2320FE685BEA142AF4DA738949E8D1D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = GTMSessionFetcher; @@ -8239,6 +8326,12 @@ target = E2BC182D60EBDE8BDC6D1715DE3A82AC /* RSKImageCropper */; targetProxy = B324CA5F3E8D31003D17C7B260AD47E7 /* PBXContainerItemProxy */; }; + D4EEC4FA9F2995237F46D71E1EF11048 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "rn-extensions-share"; + target = AA192573488AAD7D2EC81CF1511C69C5 /* rn-extensions-share */; + targetProxy = 1C29DDEB447163133B91420E0E33955E /* PBXContainerItemProxy */; + }; D7E8DBBB62EE2657681CFD787DB70FEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMBarCodeScannerInterface; @@ -8251,30 +8344,30 @@ target = D00660683B62A9AB32408C607FA0CC9A /* UMTaskManagerInterface */; targetProxy = 60C8EBDB3239353733DC79441F742EA8 /* PBXContainerItemProxy */; }; - DC9D4A837F44A83FD52CBCE2C15524C0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = nanopb; - target = 2543734D0A332B2588202904B99CC151 /* nanopb */; - targetProxy = A437FDD3F20793A5F6C525BD1FA4B8A6 /* PBXContainerItemProxy */; - }; DFCCB9D82FD0CF87122DD1AA3F667125 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-realm-path"; target = 807FE713602CADE901BF7779C7C9A0F4 /* react-native-realm-path */; targetProxy = F4AF8C90F0967533DF9D7910287AA3B3 /* PBXContainerItemProxy */; }; + E217C02AF54F6D8355E2ED9A40DB5EB2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = yoga; + target = 135D3E6523830EF3D6030BF433E40372 /* yoga */; + targetProxy = 3C05279EFE84CC65D14F129E87DAC5A6 /* PBXContainerItemProxy */; + }; + E24D2CA6A8C0C8944393256E986FEC29 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "boost-for-react-native"; + target = 66641B93FAF80FF325B2D7B4AD85056F /* boost-for-react-native */; + targetProxy = 33BE301B4456D6B7DD1AD97C022335C5 /* PBXContainerItemProxy */; + }; E2FBD41025C0CD2C30325C28D5CB7AC6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = FirebaseInstanceID; target = 586739D116442BA7FCD2EC0353EA0FA4 /* FirebaseInstanceID */; targetProxy = 48B8A5D360038B198CB9ABDEC205C1F7 /* PBXContainerItemProxy */; }; - E4C176B5257F774FF5A76681500E224A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = GTMSessionFetcher; - target = E3A3FB14CD4ACD21565913CF4A4B097C /* GTMSessionFetcher */; - targetProxy = 7FD43C07AC1799929636BE8E0B84F326 /* PBXContainerItemProxy */; - }; EECEC39CD1A9AF30CCFCB71B11A14B7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = UMCore; @@ -8286,6 +8379,12 @@ name = React; targetProxy = 376841D0E529BC7EE9A71885D09BEAA3 /* PBXContainerItemProxy */; }; + F11B04BC75EA512E7FF25BD37B7FD0E6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleUtilities; + target = 7969F0F17682790DCAF63BC9AF2176ED /* GoogleUtilities */; + targetProxy = B90719304D67B19791CDE776F839E1B0 /* PBXContainerItemProxy */; + }; F2608C94A03B3959AA68658878830D26 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-document-picker"; @@ -8310,6 +8409,23 @@ target = A486E5AB43C3327005F1C0B986A448C0 /* EXConstants */; targetProxy = 0EA49245A9259C0F60FC79E036EA1329 /* PBXContainerItemProxy */; }; + F83B61B0C7542E8C9D5949D1C70E5888 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = GoogleAppMeasurement; + target = AB021401ADE9E1431240BBA948E7965E /* GoogleAppMeasurement */; + targetProxy = EDA38326B61DB1AA015BD51790BE498B /* PBXContainerItemProxy */; + }; + FECE91250ADA5AF5704FBF8649B52FD8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FirebaseAnalytics; + target = 1ABBF6F89787BBEDF49B4636ADB45587 /* FirebaseAnalytics */; + targetProxy = D4B42FF51CCC4C8C85C4C00A8A5FAC24 /* PBXContainerItemProxy */; + }; + FF63F22248862ACBD51AAB5D97FEC6B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = 2267B3C46117601888471902A589EF8B /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -8364,7 +8480,7 @@ }; 104104334EF41564BF72E0CD55FCF77C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 7B8AC83E75F8743AA886A5A76441C042 /* UMCameraInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8394,7 +8510,7 @@ }; 13A043846FDF09B716F500AA14190CEA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B75EA0185E2AF3117759FBC14CB029A4 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 1D577A049617559D73E207B71CC6E46F /* RNImageCropPicker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -8418,7 +8534,7 @@ }; 159D1ECF5A75638796F4270CBDFCCB42 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 7133D7628A052FF1D1F45E2C24A66825 /* UMPermissionsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8579,7 +8695,7 @@ }; 21AD1FC5515DBCE74A54C976A7766204 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 423E60EE88FDF77474E3E2917FBAA281 /* UMImageLoaderInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8618,7 +8734,7 @@ }; 280B49BA50CF843754A91BDB0F018F92 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */; + baseConfigurationReference = 0559A5BB087D9A0ED6FF57A53DAC8C88 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -8666,7 +8782,7 @@ }; 2B634B26CE0600FBCB5EC600228EB11A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = E8368B943061A344453110026B8C881F /* UMTaskManagerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8681,7 +8797,7 @@ }; 2D5127D08DB362B955ACBA3DFA0CB89A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = AEE6F66091233C3574C07AD866C05CDA /* EXWebBrowser.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -8703,9 +8819,33 @@ }; name = Debug; }; + 2DFB2E6EAF2BE7FAB67323F997104B96 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0D4415440EB5DB10110BA5BA29F02BBE /* rn-extensions-share.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_extensions_share; + PRODUCT_NAME = "rn-extensions-share"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; 3066BCECBA7908E897F9E1738FEDD5AC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 414FA7C11012362AA14838182726322C /* UMCore.xcconfig */; + baseConfigurationReference = B4E23C8291E1D6B7748767C5595A9840 /* UMCore.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -8753,7 +8893,7 @@ }; 337079FC0FB13C8C1A58CD13D46435CC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE9149882F1AA0961340D16718BBD529 /* EXPermissions.xcconfig */; + baseConfigurationReference = 73AEC71AD31C34C9FFB33071AF5483F3 /* EXPermissions.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -8803,7 +8943,7 @@ }; 36584281E95ABFCC3CF4AF5E7EF64C48 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */; + baseConfigurationReference = C21C9EB2986186295CA694F63BC1F577 /* react-native-realm-path.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ENABLE_OBJC_WEAK = NO; @@ -8828,7 +8968,7 @@ }; 36650635C38E1444CAED8BEB254EFDF5 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F2E9FD2978F0A487CA5EB098EAA947C /* react-native-webview.xcconfig */; + baseConfigurationReference = D08A44EA9106CE90C42A828F4DDE3FF1 /* react-native-webview.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -8849,6 +8989,29 @@ }; name = Debug; }; + 38E2AAD6CE1884F33EE176729ABEAB73 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = YES; + 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; + }; 3994C7EED14E7E007F694DB62F037B7A /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 122B9AF72119AEE8595D2AE55CD8F9B4 /* Firebase.xcconfig */; @@ -8866,7 +9029,7 @@ }; 3B0D1B35645CEF598153702EE9DA30F8 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 5FB609A3D9423A2E5FF3A0EDD6FC75BA /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -8943,7 +9106,7 @@ }; 44FA395AF82DD4C1E7B6B528BDF0538B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.xcconfig */; + baseConfigurationReference = 7A5F6BFB6726AAD76EE7C861E1E86256 /* RNScreens.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9006,7 +9169,7 @@ }; 45766AF4428B503FB2B8DEDA9B7AE19B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = AFB87455E9FD6ED44433B501BAF1C578 /* UMConstantsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9047,7 +9210,7 @@ }; 500E649DFF3551F30BAE11F5A7F2818C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA93B2399BF1EC6C34D29DF06D6D07B0 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 593559DF6551BF2E42BC7E2DC30CB9A2 /* UMReactNativeAdapter.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9121,7 +9284,7 @@ }; 57E28E7D9E511956000935966D696B14 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B75EA0185E2AF3117759FBC14CB029A4 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = 1D577A049617559D73E207B71CC6E46F /* RNImageCropPicker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9144,7 +9307,7 @@ }; 5BB9D9E7C75138BAB1D5EE6C22120C31 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FE9149882F1AA0961340D16718BBD529 /* EXPermissions.xcconfig */; + baseConfigurationReference = 73AEC71AD31C34C9FFB33071AF5483F3 /* EXPermissions.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9207,7 +9370,7 @@ }; 60CA23954B92822ED0F56CE8855C958E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C9619DE9593734D5AC0F94D7FDF851F /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 46113567DFBD43D23A17980492566691 /* react-native-orientation-locker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9230,7 +9393,7 @@ }; 65E92CD3A5E3549B3D4593078AB5BC2E /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 414FA7C11012362AA14838182726322C /* UMCore.xcconfig */; + baseConfigurationReference = B4E23C8291E1D6B7748767C5595A9840 /* UMCore.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9267,29 +9430,6 @@ }; name = Debug; }; - 680F93D5A24D17255248DBB963ACB412 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4F6B964706F8ADC73280A6DB40F720EA /* Pods-ShareRocketChatRN.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = YES; - 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; - }; 6A5F4BAEBCB22DEC168C1F26C8CA1A9C /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 53563E1385145D00720C7953AD9E0E74 /* Crashlytics.xcconfig */; @@ -9385,7 +9525,7 @@ }; 726509EC665712CCE69DA51B9C9650D7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FBB8E39C8AA09DA540D3908FCB21CA38 /* RNScreens.xcconfig */; + baseConfigurationReference = 7A5F6BFB6726AAD76EE7C861E1E86256 /* RNScreens.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9423,7 +9563,7 @@ }; 7510FF0C9BE53AC80F61C893FDD0171C /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = A04BAD88B492B766034D9CEBCA71BC6F /* UMSensorsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9461,7 +9601,7 @@ }; 7AE7D40F89D77117732CD562570C3ACC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0549AF12A936C8849CC975596544A410 /* RNDeviceInfo.xcconfig */; + baseConfigurationReference = 5FB609A3D9423A2E5FF3A0EDD6FC75BA /* RNDeviceInfo.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9486,7 +9626,7 @@ }; 7F35694A522E5A316EC063D31D71B4FD /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 465361999C9275A0EB0D18E87ACF63BA /* EXHaptics.xcconfig */; + baseConfigurationReference = 12446A77C7AE7703F0D3E777DE48999A /* EXHaptics.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9510,7 +9650,7 @@ }; 81E00B3A56B081440C9397AADC410824 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */; + baseConfigurationReference = 35F848B66ED5A1A759BFDAC9E2F0FC29 /* yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9535,7 +9675,7 @@ }; 84656029028D7372794E55D736A7D365 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 3F7B39BCACD65567E035BEC3AA4A7321 /* EXFileSystem.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9559,7 +9699,7 @@ }; 84F1895A097C29D8537B1337DE063B57 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD69146932F7CD18CED524CAD06BA4F3 /* RNLocalize.xcconfig */; + baseConfigurationReference = 0559A5BB087D9A0ED6FF57A53DAC8C88 /* RNLocalize.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9583,7 +9723,7 @@ }; 8AA28E783CA6FF152B1C07F759C5C0BF /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD43BC845F3312E0B19B9A512B7C1D8A /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 64273EFC312AE419373BB73B4E445289 /* UMFaceDetectorInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9597,7 +9737,7 @@ }; 8B5C36EFC68AE33052BA69CB61540838 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5AB38E6F5A7B6089F89CE96B0646B1AF /* react-native-realm-path.xcconfig */; + baseConfigurationReference = C21C9EB2986186295CA694F63BC1F577 /* react-native-realm-path.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9621,9 +9761,34 @@ }; name = Release; }; + 92CD49B78744C04B37984BBE8A00165C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0D4415440EB5DB10110BA5BA29F02BBE /* rn-extensions-share.xcconfig */; + buildSettings = { + APPLICATION_EXTENSION_API_ONLY = YES; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = rn_extensions_share; + PRODUCT_NAME = "rn-extensions-share"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; 93B94A4551FA5C855F12A56741D5FD48 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CA93B2399BF1EC6C34D29DF06D6D07B0 /* UMReactNativeAdapter.xcconfig */; + baseConfigurationReference = 593559DF6551BF2E42BC7E2DC30CB9A2 /* UMReactNativeAdapter.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9685,7 +9850,7 @@ }; A05F9D3B51425D24D1A800E27318B863 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.xcconfig */; + baseConfigurationReference = B0A8229F1AAB021D417FBBDFB0CDCC7A /* react-native-splash-screen.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9708,7 +9873,7 @@ }; A9A1DAA271AA64ABBA41275DD8F036D5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7C9619DE9593734D5AC0F94D7FDF851F /* react-native-orientation-locker.xcconfig */; + baseConfigurationReference = 46113567DFBD43D23A17980492566691 /* react-native-orientation-locker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9732,7 +9897,7 @@ }; AA5D2249BD8ABF32DBEAA73F2C95CF26 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 035BABF6A0639F365E75ABFC9D984518 /* react-native-document-picker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -9866,7 +10031,7 @@ }; B4EAB4281D83D1BD0899A2282A158C57 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD43BC845F3312E0B19B9A512B7C1D8A /* UMFaceDetectorInterface.xcconfig */; + baseConfigurationReference = 64273EFC312AE419373BB73B4E445289 /* UMFaceDetectorInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9881,7 +10046,7 @@ }; B6C7034271AD612C0CE2EE28606818D0 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 4BF11E9F2D8B1AA2A09BB5A33BFEA4D9 /* EXAppLoaderProvider.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9930,7 +10095,7 @@ }; BC476F2B7DC9C79FF226229A8D881D26 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0EAFFD9F20D6717AE0DEC2F11104A278 /* UMSensorsInterface.xcconfig */; + baseConfigurationReference = A04BAD88B492B766034D9CEBCA71BC6F /* UMSensorsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -9945,7 +10110,7 @@ }; BEA641D5851D41F1304AEEF1C7EFC4F4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 91E090BD725001F992D285CDA054DB94 /* EXAppLoaderProvider.xcconfig */; + baseConfigurationReference = 4BF11E9F2D8B1AA2A09BB5A33BFEA4D9 /* EXAppLoaderProvider.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -9985,7 +10150,7 @@ }; C69427B756502B702CFB5ADC7F970E6A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */; + baseConfigurationReference = 5B97B164E84A784D2495D17C80F8758C /* UMFontInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10037,7 +10202,7 @@ }; C790C892EEB6A7EE1258261B9BF2F0AF /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 19B1C54BC343811B6A4A6F9F4ABADEC5 /* UMImageLoaderInterface.xcconfig */; + baseConfigurationReference = 423E60EE88FDF77474E3E2917FBAA281 /* UMImageLoaderInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10052,7 +10217,7 @@ }; D05EBE91886D7AEEFE4A15B428620B9E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B400A67D2F7CD9F36DCF698DCC107CDA /* yoga.xcconfig */; + baseConfigurationReference = 35F848B66ED5A1A759BFDAC9E2F0FC29 /* yoga.xcconfig */; buildSettings = { APPLICATION_EXTENSION_API_ONLY = YES; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -10101,7 +10266,7 @@ }; D2EEBA11896F4DBF4CE2FDF4CA63F0C4 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CEC8C07588D376ADF18C1E8906924E36 /* react-native-splash-screen.xcconfig */; + baseConfigurationReference = B0A8229F1AAB021D417FBBDFB0CDCC7A /* react-native-splash-screen.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10125,7 +10290,7 @@ }; D338DBE12EAEC66131F53EE4259FD4E3 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 9A86DBD22BACC7289A71AAFD55351FF1 /* UMFileSystemInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10163,7 +10328,7 @@ }; D504250D9B52F216E888065A6D6C14A7 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6334B5F131CDD267C933341A87CF382 /* EXConstants.xcconfig */; + baseConfigurationReference = B2A5ECADF82C69838EA2BDAA20A77404 /* EXConstants.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -10187,7 +10352,7 @@ }; D5822B28BCDFAE8628334E7A7DB75291 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6604CEE71DCD9429B55DF6498F17B7E6 /* UMTaskManagerInterface.xcconfig */; + baseConfigurationReference = E8368B943061A344453110026B8C881F /* UMTaskManagerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10201,7 +10366,7 @@ }; D5A5563D7CAAD8EC83C808470D1E628B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 82D43ABFC8145FB91F5C61BF5229B523 /* react-native-document-picker.xcconfig */; + baseConfigurationReference = 035BABF6A0639F365E75ABFC9D984518 /* react-native-document-picker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10225,7 +10390,7 @@ }; D67F492D20BE2D9B1B95AB2AE57FC383 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FF3FC5E7A80C6EC47E7481B01EBA29B4 /* EXWebBrowser.xcconfig */; + baseConfigurationReference = AEE6F66091233C3574C07AD866C05CDA /* EXWebBrowser.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -10250,7 +10415,7 @@ }; D71DDCD8C42FD7AB7F57E212B3C3FC25 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 8F2E9FD2978F0A487CA5EB098EAA947C /* react-native-webview.xcconfig */; + baseConfigurationReference = D08A44EA9106CE90C42A828F4DDE3FF1 /* react-native-webview.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -10274,7 +10439,7 @@ }; D8BAF3F017AEA4A01DD01F699EAE2F95 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = FB97D32AF8FCA09B1C35C446C9D4881A /* UMCameraInterface.xcconfig */; + baseConfigurationReference = 7B8AC83E75F8743AA886A5A76441C042 /* UMCameraInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10312,7 +10477,7 @@ }; D98F3EF69A1D2D0B9B96719A0671EB37 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F6334B5F131CDD267C933341A87CF382 /* EXConstants.xcconfig */; + baseConfigurationReference = B2A5ECADF82C69838EA2BDAA20A77404 /* EXConstants.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -10337,7 +10502,7 @@ }; DC7CABACF1C2008C1A1DFC15F44D706A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E32259B21D2D0FA574F79F0BCD4F3D8 /* UMConstantsInterface.xcconfig */; + baseConfigurationReference = AFB87455E9FD6ED44433B501BAF1C578 /* UMConstantsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10375,7 +10540,7 @@ }; DEDB20F1DFE3FC56596D33876204FC03 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7400C9FA64A5F8BE3546C225B6572260 /* UMPermissionsInterface.xcconfig */; + baseConfigurationReference = 7133D7628A052FF1D1F45E2C24A66825 /* UMPermissionsInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10389,7 +10554,7 @@ }; E275D7FD7C386F8C792A2E8A4264D94C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 04799348BADCBB02946FF664E2CD91CA /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10404,7 +10569,7 @@ }; E74B6A61EBB9BA6F53DAD16B7E855B57 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 465361999C9275A0EB0D18E87ACF63BA /* EXHaptics.xcconfig */; + baseConfigurationReference = 12446A77C7AE7703F0D3E777DE48999A /* EXHaptics.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -10427,9 +10592,33 @@ }; name = Release; }; + E940F922014E2CD12C9A8E6AE8054F57 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + APPLICATION_EXTENSION_API_ONLY = YES; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; EA6E0E8E737423BA9CD0FFD375E77B16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C62DE4A25C5505E9796DFD159A66A10B /* UMFontInterface.xcconfig */; + baseConfigurationReference = 5B97B164E84A784D2495D17C80F8758C /* UMFontInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10443,7 +10632,7 @@ }; ED8F518E1C694F9B9EDA2BC86DA45B83 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C69B0078C01959D14E913606CBFA8263 /* EXFileSystem.xcconfig */; + baseConfigurationReference = 3F7B39BCACD65567E035BEC3AA4A7321 /* EXFileSystem.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = "iPhone Developer"; @@ -10466,30 +10655,6 @@ }; name = Release; }; - F016E259B731D1734A4F476DDF7ABF6A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 501D8262643E75ACB8B36147ADB61F0D /* Pods-ShareRocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - APPLICATION_EXTENSION_API_ONLY = YES; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; F681428EF28343C1F2059CFF02D37BF7 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 2F33FE55A531ACD9F959B3E74F720F24 /* FirebasePerformance.xcconfig */; @@ -10506,7 +10671,7 @@ }; F75FDE1A16D22290624E5963183A7F43 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1827F1A264F0A687DB906A0D07D2B2D6 /* UMBarCodeScannerInterface.xcconfig */; + baseConfigurationReference = 04799348BADCBB02946FF664E2CD91CA /* UMBarCodeScannerInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10520,7 +10685,7 @@ }; F8897D51ADA116A31D6C4B3CABB435E1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9A8836C9D09C5659B1CBE25946E2740E /* UMFileSystemInterface.xcconfig */; + baseConfigurationReference = 9A86DBD22BACC7289A71AAFD55351FF1 /* UMFileSystemInterface.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_OBJC_WEAK = NO; @@ -10832,6 +10997,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 6E2CA5DE768F96833D74D2DBBA5FD99F /* Build configuration list for PBXNativeTarget "rn-extensions-share" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 2DFB2E6EAF2BE7FAB67323F997104B96 /* Debug */, + 92CD49B78744C04B37984BBE8A00165C /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 6E7B377EF94A3DF3F96B0A8A749E5673 /* Build configuration list for PBXNativeTarget "RNLocalize" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -11012,29 +11186,29 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E8761BAA05C69BC596B176C709D64DCF /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + E7FDCEFB599BFAB0D779D631FC8A3010 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - C75FF835076BCF2A78C2B8C38E4CC001 /* Debug */, - D420A64138F36D470CD6A995F6529DF3 /* Release */, + 38E2AAD6CE1884F33EE176729ABEAB73 /* Debug */, + E940F922014E2CD12C9A8E6AE8054F57 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EBDB015CA972DF0F3394BC91D53B44FC /* Build configuration list for PBXNativeTarget "react-native-realm-path" */ = { + E8761BAA05C69BC596B176C709D64DCF /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - 36584281E95ABFCC3CF4AF5E7EF64C48 /* Debug */, - 8B5C36EFC68AE33052BA69CB61540838 /* Release */, + C75FF835076BCF2A78C2B8C38E4CC001 /* Debug */, + D420A64138F36D470CD6A995F6529DF3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EC53BAB1E23B45D0F550498FF8960B51 /* Build configuration list for PBXNativeTarget "Pods-ShareRocketChatRN" */ = { + EBDB015CA972DF0F3394BC91D53B44FC /* Build configuration list for PBXNativeTarget "react-native-realm-path" */ = { isa = XCConfigurationList; buildConfigurations = ( - 680F93D5A24D17255248DBB963ACB412 /* Debug */, - F016E259B731D1734A4F476DDF7ABF6A /* Release */, + 36584281E95ABFCC3CF4AF5E7EF64C48 /* Debug */, + 8B5C36EFC68AE33052BA69CB61540838 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; 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 8cdd8ef277f..128246cddb5 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,6 +1,6 @@ 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/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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${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 +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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${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-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${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-document-picker" -l"react-native-orientation-locker" -l"react-native-realm-path" -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} 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 8cdd8ef277f..128246cddb5 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,6 +1,6 @@ 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/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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${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 +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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${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-document-picker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${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-document-picker" -l"react-native-orientation-locker" -l"react-native-realm-path" -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} diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown index 7cdcff7c84a..b00be3e6caf 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.markdown @@ -1483,4 +1483,29 @@ redistribute it freely, subject to the following restrictions: 3. This notice may not be removed or altered from any source distribution. + +## rn-extensions-share + +The MIT License (MIT) + +Copyright (c) 2016 Ali Najafizadeh + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist index af937fdca49..44b2e5082ec 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN-acknowledgements.plist @@ -1627,6 +1627,37 @@ redistribute it freely, subject to the following restrictions: Type PSGroupSpecifier + + FooterText + The MIT License (MIT) + +Copyright (c) 2016 Ali Najafizadeh + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + + License + MIT + Title + rn-extensions-share + Type + PSGroupSpecifier + FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig index 56120c18f50..408508adf88 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.debug.xcconfig @@ -1,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/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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" -OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-realm-path" -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 "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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" +OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-realm-path" -l"rn-extensions-share" -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 "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-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig index 56120c18f50..408508adf88 100644 --- a/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig +++ b/ios/Pods/Target Support Files/Pods-ShareRocketChatRN/Pods-ShareRocketChatRN.release.xcconfig @@ -1,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/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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" -OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-realm-path" -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 "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-document-picker" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-realm-path" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${PODS_ROOT}/Headers/Public/yoga" $(inherited) ${PODS_ROOT}/Firebase/CoreOnly/Sources +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCore" "${PODS_CONFIGURATION_BUILD_DIR}/FirebaseInstanceID" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleToolboxForMac" "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities" "${PODS_CONFIGURATION_BUILD_DIR}/Protobuf" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNLocalize" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/glog" "${PODS_CONFIGURATION_BUILD_DIR}/nanopb" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-realm-path" "${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" "${PODS_ROOT}/GoogleIDFASupport/Libraries" +OTHER_LDFLAGS = $(inherited) -ObjC -l"AdIdAccessLibrary" -l"DoubleConversion" -l"FirebaseCore" -l"FirebaseInstanceID" -l"Folly" -l"GTMSessionFetcher" -l"GoogleToolboxForMac" -l"GoogleUtilities" -l"Protobuf" -l"RNDeviceInfo" -l"RNLocalize" -l"React" -l"c++" -l"glog" -l"nanopb" -l"react-native-realm-path" -l"rn-extensions-share" -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 "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/rn-extensions-share/rn-extensions-share-dummy.m b/ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share-dummy.m new file mode 100644 index 00000000000..fbae3c4a462 --- /dev/null +++ b/ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_rn_extensions_share : NSObject +@end +@implementation PodsDummy_rn_extensions_share +@end diff --git a/ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch b/ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share-prefix.pch new file mode 100644 index 00000000000..beb2a244183 --- /dev/null +++ b/ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share-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/rn-extensions-share/rn-extensions-share.xcconfig b/ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share.xcconfig new file mode 100644 index 00000000000..15aa0cf6ebe --- /dev/null +++ b/ios/Pods/Target Support Files/rn-extensions-share/rn-extensions-share.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/rn-extensions-share +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/rn-extensions-share" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/rn-extensions-share" "${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/rn-extensions-share +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 0c32ee83983..ee1002c493e 100644 --- a/ios/RocketChatRN.xcodeproj/project.pbxproj +++ b/ios/RocketChatRN.xcodeproj/project.pbxproj @@ -22,7 +22,6 @@ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; 1E02221122B2F76B00001862 /* libRNUserDefaults.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E02220D22B2F76400001862 /* libRNUserDefaults.a */; }; - 1E25743122CBA2BE005A877F /* libReactNativeShareExtension.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E25741F22CBA263005A877F /* libReactNativeShareExtension.a */; }; 1E25743322CBA2C7005A877F /* libRNUserDefaults.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E02220D22B2F76400001862 /* libRNUserDefaults.a */; }; 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7ACD4853222860DE00442C55 /* JavaScriptCore.framework */; }; 1E25743B22CBA301005A877F /* libRNFetchBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1E25743A22CBA2F9005A877F /* libRNFetchBlob.a */; }; @@ -624,7 +623,6 @@ 1E25743422CBA2CF005A877F /* JavaScriptCore.framework in Frameworks */, 1E25743B22CBA301005A877F /* libRNFetchBlob.a in Frameworks */, 1E25743322CBA2C7005A877F /* libRNUserDefaults.a in Frameworks */, - 1E25743122CBA2BE005A877F /* libReactNativeShareExtension.a in Frameworks */, 0BFA93B8E2ED67D4832E0C76 /* libPods-ShareRocketChatRN.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; diff --git a/package.json b/package.json index 506dec3f8c1..07a4043bad5 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "redux-immutable-state-invariant": "^2.1.0", "redux-saga": "^0.16.2", "remove-markdown": "^0.3.0", - "rn-extensions-share": "^2.3.8", + "rn-extensions-share": "^2.3.9", "rn-fetch-blob": "^0.10.15", "rn-user-defaults": "^1.3.4", "semver": "6.0.0", diff --git a/yarn.lock b/yarn.lock index 50ba0263d9c..e2bded32185 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12629,10 +12629,10 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" -rn-extensions-share@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/rn-extensions-share/-/rn-extensions-share-2.3.8.tgz#10d88a2f80e1f59df60eaba11ca1bf2e7ee6c896" - integrity sha512-fc9QPNPrlU0nOh/Y6OnqRSggs/BXNht6PFBZZvD4G+fZ8Lg7BtmqUv91WsbcSiVeYtRZj9cs+7nkQp8ckmeFhg== +rn-extensions-share@^2.3.9: + version "2.3.9" + resolved "https://registry.yarnpkg.com/rn-extensions-share/-/rn-extensions-share-2.3.9.tgz#b7d54338129635ec5faba7ba3d976a5909625f8a" + integrity sha512-6JlC2dn/MUdlfMv/Wq7bpKbR6+xak3U1Okk6eKSXt3r7qH1funtl2TPOZqPE9iO2Y7reElZ/Ym0ru4rgXEnOKg== rn-fetch-blob@^0.10.15: version "0.10.15" From b01864467eeb71bee9e10be27ea7498a8a032434 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 16:00:24 -0300 Subject: [PATCH 55/58] Upgrade rn-extensions-share --- ios/Podfile.lock | 4 ++-- ios/Pods/Local Podspecs/rn-extensions-share.podspec.json | 2 +- ios/Pods/Manifest.lock | 4 ++-- package.json | 2 +- yarn.lock | 8 ++++---- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/ios/Podfile.lock b/ios/Podfile.lock index d59233182e5..114f07c483c 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -145,7 +145,7 @@ PODS: - React/Core - React/fishhook - React/RCTBlob - - rn-extensions-share (2.3.8): + - rn-extensions-share (2.3.10): - React - RNDeviceInfo (1.6.1): - React @@ -366,7 +366,7 @@ SPEC CHECKSUMS: react-native-realm-path: 868473ea0bc4629850f1ec51a70d81055c06d091 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 - rn-extensions-share: 1b6c523f87e168c887262a3830e8e1af22d9dffb + rn-extensions-share: 4bfee75806ad54aadeff1dfa535697a6345a50b8 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: 6134b66a3d5bc13e2895a97c630a4254006902b4 RNLocalize: 62a949d2ec5bee0eb8f39a80a48f01e2f4f67080 diff --git a/ios/Pods/Local Podspecs/rn-extensions-share.podspec.json b/ios/Pods/Local Podspecs/rn-extensions-share.podspec.json index 669a78f6dfe..865dba8bbe8 100644 --- a/ios/Pods/Local Podspecs/rn-extensions-share.podspec.json +++ b/ios/Pods/Local Podspecs/rn-extensions-share.podspec.json @@ -1,6 +1,6 @@ { "name": "rn-extensions-share", - "version": "2.3.8", + "version": "2.3.10", "summary": "Share-Extension using react-native for both ios and android", "license": "MIT", "authors": { diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index d59233182e5..114f07c483c 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -145,7 +145,7 @@ PODS: - React/Core - React/fishhook - React/RCTBlob - - rn-extensions-share (2.3.8): + - rn-extensions-share (2.3.10): - React - RNDeviceInfo (1.6.1): - React @@ -366,7 +366,7 @@ SPEC CHECKSUMS: react-native-realm-path: 868473ea0bc4629850f1ec51a70d81055c06d091 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 - rn-extensions-share: 1b6c523f87e168c887262a3830e8e1af22d9dffb + rn-extensions-share: 4bfee75806ad54aadeff1dfa535697a6345a50b8 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: 6134b66a3d5bc13e2895a97c630a4254006902b4 RNLocalize: 62a949d2ec5bee0eb8f39a80a48f01e2f4f67080 diff --git a/package.json b/package.json index 07a4043bad5..44a89fa38c9 100644 --- a/package.json +++ b/package.json @@ -82,7 +82,7 @@ "redux-immutable-state-invariant": "^2.1.0", "redux-saga": "^0.16.2", "remove-markdown": "^0.3.0", - "rn-extensions-share": "^2.3.9", + "rn-extensions-share": "^2.3.10", "rn-fetch-blob": "^0.10.15", "rn-user-defaults": "^1.3.4", "semver": "6.0.0", diff --git a/yarn.lock b/yarn.lock index e2bded32185..fdd966b27b1 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12629,10 +12629,10 @@ ripemd160@^2.0.0, ripemd160@^2.0.1: hash-base "^3.0.0" inherits "^2.0.1" -rn-extensions-share@^2.3.9: - version "2.3.9" - resolved "https://registry.yarnpkg.com/rn-extensions-share/-/rn-extensions-share-2.3.9.tgz#b7d54338129635ec5faba7ba3d976a5909625f8a" - integrity sha512-6JlC2dn/MUdlfMv/Wq7bpKbR6+xak3U1Okk6eKSXt3r7qH1funtl2TPOZqPE9iO2Y7reElZ/Ym0ru4rgXEnOKg== +rn-extensions-share@^2.3.10: + version "2.3.10" + resolved "https://registry.yarnpkg.com/rn-extensions-share/-/rn-extensions-share-2.3.10.tgz#17b9cf101b325cfe4c150f4c2585ca1e78f965a5" + integrity sha512-gff32w15VXnuKdGG9QfrysI+Cga4beSWT8xdp1DvVJ1HezJ7XsDR1ELj3Wajij5OlW31VAunO8g91HgUfplmSQ== rn-fetch-blob@^0.10.15: version "0.10.15" From 57c94a2daa30908c620b0ab79f9c2669bbdedce3 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 22:50:32 -0300 Subject: [PATCH 56/58] Fix error on canUploadFile --- app/actions/share.js | 7 ------- app/lib/rocketchat.js | 21 +++++++------------ app/reducers/share.js | 8 +------ app/views/ShareListView/index.js | 36 ++++++++++++++++---------------- 4 files changed, 26 insertions(+), 46 deletions(-) diff --git a/app/actions/share.js b/app/actions/share.js index eebb473434b..56e8ced9b47 100644 --- a/app/actions/share.js +++ b/app/actions/share.js @@ -13,10 +13,3 @@ export function shareSetUser(user) { user }; } - -export function shareSetServerInfo(serverInfo) { - return { - type: SHARE.SET_SERVER_INFO, - serverInfo - }; -} diff --git a/app/lib/rocketchat.js b/app/lib/rocketchat.js index 942e5375491..735b0b0a850 100644 --- a/app/lib/rocketchat.js +++ b/app/lib/rocketchat.js @@ -15,7 +15,7 @@ import { } from '../actions/login'; import { disconnect, connectSuccess, connectRequest } from '../actions/connect'; import { - shareSelectServer, shareSetServerInfo, shareSetUser + shareSelectServer, shareSetUser } from '../actions/share'; import subscribeRooms from './methods/subscriptions/rooms'; @@ -220,8 +220,8 @@ const RocketChat = { }); }, - async shareExtensionInit(currentServer) { - database.setActiveDB(currentServer); + async shareExtensionInit(server) { + database.setActiveDB(server); if (this.sdk) { this.sdk.disconnect(); @@ -229,23 +229,16 @@ const RocketChat = { } // Use useSsl: false only if server url starts with http:// - const useSsl = !/http:\/\//.test(currentServer); + const useSsl = !/http:\/\//.test(server); - this.sdk = new RocketchatClient({ host: currentServer, protocol: 'ddp', useSsl }); + this.sdk = new RocketchatClient({ host: server, protocol: 'ddp', useSsl }); // set Server const { serversDB } = database.databases; - const server = serversDB.objectForPrimaryKey('servers', currentServer); - reduxStore.dispatch(shareSelectServer(currentServer)); - - // set File configs - reduxStore.dispatch(shareSetServerInfo({ - Site_Url: server.id, - ...server - })); + reduxStore.dispatch(shareSelectServer(server)); // set User info - const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ currentServer }`); + const userId = await RNUserDefaults.get(`${ RocketChat.TOKEN_KEY }-${ server }`); const user = userId && serversDB.objectForPrimaryKey('user', userId); reduxStore.dispatch(shareSetUser({ id: user.id, diff --git a/app/reducers/share.js b/app/reducers/share.js index 968121f9053..9c3a7b38c9e 100644 --- a/app/reducers/share.js +++ b/app/reducers/share.js @@ -2,8 +2,7 @@ import { SHARE } from '../actions/actionsTypes'; const initialState = { user: {}, - server: '', - serverInfo: {} + server: '' }; export default function share(state = initialState, action) { @@ -18,11 +17,6 @@ export default function share(state = initialState, action) { ...state, user: action.user }; - case SHARE.SET_SERVER_INFO: - return { - ...state, - serverInfo: action.serverInfo - }; default: return state; } diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index ffb38cd8592..27344cc8dd0 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -32,9 +32,6 @@ const keyExtractor = item => item.rid; userId: share.user && share.user.id, token: share.user && share.user.token, server: share.server, - useRealName: share.serverInfo.UI_Use_Real_Name, - FileUpload_MediaTypeWhiteList: share.serverInfo.FileUpload_MediaTypeWhiteList, - FileUpload_MaxFileSize: share.serverInfo.FileUpload_MaxFileSize, baseUrl: share ? share.server : '' })) /** @extends React.Component */ @@ -88,9 +85,6 @@ export default class ShareListView extends React.Component { static propTypes = { navigation: PropTypes.object, server: PropTypes.string, - useRealName: PropTypes.bool, - FileUpload_MediaTypeWhiteList: PropTypes.string, - FileUpload_MaxFileSize: PropTypes.number, baseUrl: PropTypes.string, token: PropTypes.string, userId: PropTypes.string @@ -110,14 +104,15 @@ export default class ShareListView extends React.Component { searchResults: [], chats: [], servers: [], - loading: true + loading: true, + serverInfo: null }; this.didFocusListener = props.navigation.addListener('didFocus', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); this.willBlurListener = props.navigation.addListener('willBlur', () => BackHandler.addEventListener('hardwareBackPress', this.handleBackPress)); } async componentDidMount() { - const { navigation } = this.props; + const { navigation, server } = this.props; navigation.setParams({ initSearch: this.initSearch, cancelSearch: this.cancelSearch, @@ -148,13 +143,13 @@ export default class ShareListView extends React.Component { this.setState({ mediaLoading: false }); } - this.getSubscriptions(); + this.getSubscriptions(server); } componentWillReceiveProps(nextProps) { const { server } = this.props; if (nextProps.server !== server) { - this.getSubscriptions(); + this.getSubscriptions(nextProps.server); } } @@ -185,20 +180,21 @@ export default class ShareListView extends React.Component { this.setState(...args); } - getSubscriptions = () => { + getSubscriptions = (server) => { const { serversDB } = database.databases; - const { server } = this.props; if (server) { this.data = database.objects('subscriptions').filtered('archived != true && open == true').sorted('roomUpdatedAt', true); this.servers = serversDB.objects('servers'); this.chats = this.data.slice(0, LIMIT); + const serverInfo = serversDB.objectForPrimaryKey('servers', server); this.internalSetState({ chats: this.chats ? this.chats.slice() : [], servers: this.servers ? this.servers.slice() : [], loading: false, - showError: !this.canUploadFile() + showError: !this.canUploadFile(server), + serverInfo }); this.forceUpdate(); } @@ -207,7 +203,8 @@ export default class ShareListView extends React.Component { uriToPath = uri => decodeURIComponent(isIOS ? uri.replace(/^file:\/\//, '') : uri); getRoomTitle = (item) => { - const { useRealName } = this.props; + const { serverInfo } = this.state; + const { useRealName } = serverInfo; return ((item.prid || useRealName) && item.fname) || item.name; } @@ -224,9 +221,10 @@ export default class ShareListView extends React.Component { }); } - canUploadFile = () => { - const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = this.props; + canUploadFile = (server) => { const { fileInfo: file, mediaLoading, isMedia } = this.state; + const { serversDB } = database.databases; + const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = serversDB.objectForPrimaryKey('servers', server); if (mediaLoading) { return true; @@ -400,8 +398,10 @@ export default class ShareListView extends React.Component { } renderError = () => { - const { fileInfo: file, loading, searching } = this.state; - const { FileUpload_MaxFileSize } = this.props; + const { + fileInfo: file, loading, searching, serverInfo + } = this.state; + const { FileUpload_MaxFileSize } = serverInfo; const errorMessage = (FileUpload_MaxFileSize < file.size) ? 'error-file-too-large' : 'error-invalid-file-type'; From 54c7afa2565c61f2b05a304c08c6f8f78782b9e1 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Fri, 26 Jul 2019 23:11:00 -0300 Subject: [PATCH 57/58] Improve code --- app/views/ShareListView/index.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index 27344cc8dd0..c5b06f0f7a3 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -193,7 +193,7 @@ export default class ShareListView extends React.Component { chats: this.chats ? this.chats.slice() : [], servers: this.servers ? this.servers.slice() : [], loading: false, - showError: !this.canUploadFile(server), + showError: !this.canUploadFile(serverInfo), serverInfo }); this.forceUpdate(); @@ -221,10 +221,9 @@ export default class ShareListView extends React.Component { }); } - canUploadFile = (server) => { + canUploadFile = (serverInfo) => { const { fileInfo: file, mediaLoading, isMedia } = this.state; - const { serversDB } = database.databases; - const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = serversDB.objectForPrimaryKey('servers', server); + const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = serverInfo; if (mediaLoading) { return true; From 583d18c88dacf093b6c1b78d107bb446c10edecb Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Date: Sat, 27 Jul 2019 18:59:27 -0300 Subject: [PATCH 58/58] Fix error when you try to upload a invalid file --- app/views/ShareListView/index.js | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/app/views/ShareListView/index.js b/app/views/ShareListView/index.js index c5b06f0f7a3..5d0ba2b3678 100644 --- a/app/views/ShareListView/index.js +++ b/app/views/ShareListView/index.js @@ -159,6 +159,12 @@ export default class ShareListView extends React.Component { return true; } + const { isMedia } = this.state; + if (nextState.isMedia !== isMedia) { + this.getSubscriptions(nextProps.server, nextState.fileInfo); + return true; + } + const { server } = this.props; if (server !== nextProps.server) { return true; @@ -180,7 +186,7 @@ export default class ShareListView extends React.Component { this.setState(...args); } - getSubscriptions = (server) => { + getSubscriptions = (server, fileInfo) => { const { serversDB } = database.databases; if (server) { @@ -193,7 +199,7 @@ export default class ShareListView extends React.Component { chats: this.chats ? this.chats.slice() : [], servers: this.servers ? this.servers.slice() : [], loading: false, - showError: !this.canUploadFile(serverInfo), + showError: !this.canUploadFile(serverInfo, fileInfo), serverInfo }); this.forceUpdate(); @@ -221,16 +227,11 @@ export default class ShareListView extends React.Component { }); } - canUploadFile = (serverInfo) => { - const { fileInfo: file, mediaLoading, isMedia } = this.state; + canUploadFile = (serverInfo, fileInfo) => { + const { fileInfo: fileData } = this.state; + const file = fileInfo || fileData; const { FileUpload_MediaTypeWhiteList, FileUpload_MaxFileSize } = serverInfo; - if (mediaLoading) { - return true; - } - if (!isMedia) { - return true; - } if (!(file && file.path)) { return true; }