From 31cf0e5f2fd22aa4968bc5aaff6226acca5a4d41 Mon Sep 17 00:00:00 2001 From: pranavpandey1998official <44601530+pranavpandey1998official@users.noreply.github.com> Date: Sun, 19 May 2019 01:01:33 +0530 Subject: [PATCH] [NEW] Admin (#800) * added admin panel * reverting some changes * fixed problem with authToken * changed tab to space * done requested changes * fixed lint * added react-native-webview * Install webview pod --- android/app/build.gradle | 1 + .../rocket/reactnative/MainApplication.java | 2 + android/settings.gradle | 2 + app/i18n/locales/en.js | 1 + app/index.js | 10 +- app/views/AdminPanelView/index.js | 48 + app/views/OAuthView.js | 2 +- app/views/SidebarView/index.js | 33 +- ios/Podfile | 2 + ios/Podfile.lock | 10 +- .../react-native-webview/RNCUIWebView.h | 1 + .../RNCUIWebViewManager.h | 1 + .../RNCWKProcessPoolManager.h | 1 + .../react-native-webview/RNCWKWebView.h | 1 + .../RNCWKWebViewManager.h | 1 + .../react-native-webview/RNCUIWebView.h | 1 + .../RNCUIWebViewManager.h | 1 + .../RNCWKProcessPoolManager.h | 1 + .../react-native-webview/RNCWKWebView.h | 1 + .../RNCWKWebViewManager.h | 1 + .../react-native-webview.podspec.json | 20 + ios/Pods/Manifest.lock | 10 +- ios/Pods/Pods.xcodeproj/project.pbxproj | 4488 +++++++++-------- ...ods-RocketChatRN-acknowledgements.markdown | 25 + .../Pods-RocketChatRN-acknowledgements.plist | 31 + .../Pods-RocketChatRN.debug.xcconfig | 6 +- .../Pods-RocketChatRN.release.xcconfig | 6 +- .../react-native-webview-dummy.m | 5 + .../react-native-webview-prefix.pch | 12 + .../react-native-webview.xcconfig | 9 + package.json | 1 + yarn.lock | 10 +- 32 files changed, 2588 insertions(+), 2156 deletions(-) create mode 100644 app/views/AdminPanelView/index.js create mode 120000 ios/Pods/Headers/Private/react-native-webview/RNCUIWebView.h create mode 120000 ios/Pods/Headers/Private/react-native-webview/RNCUIWebViewManager.h create mode 120000 ios/Pods/Headers/Private/react-native-webview/RNCWKProcessPoolManager.h create mode 120000 ios/Pods/Headers/Private/react-native-webview/RNCWKWebView.h create mode 120000 ios/Pods/Headers/Private/react-native-webview/RNCWKWebViewManager.h create mode 120000 ios/Pods/Headers/Public/react-native-webview/RNCUIWebView.h create mode 120000 ios/Pods/Headers/Public/react-native-webview/RNCUIWebViewManager.h create mode 120000 ios/Pods/Headers/Public/react-native-webview/RNCWKProcessPoolManager.h create mode 120000 ios/Pods/Headers/Public/react-native-webview/RNCWKWebView.h create mode 120000 ios/Pods/Headers/Public/react-native-webview/RNCWKWebViewManager.h create mode 100644 ios/Pods/Local Podspecs/react-native-webview.podspec.json create mode 100644 ios/Pods/Target Support Files/react-native-webview/react-native-webview-dummy.m create mode 100644 ios/Pods/Target Support Files/react-native-webview/react-native-webview-prefix.pch create mode 100644 ios/Pods/Target Support Files/react-native-webview/react-native-webview.xcconfig diff --git a/android/app/build.gradle b/android/app/build.gradle index 820495363..83fb168b7 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -200,6 +200,7 @@ configurations.all { } dependencies { + implementation project(':react-native-webview') implementation project(':react-native-orientation-locker') implementation project(':react-native-splash-screen') implementation project(':react-native-screens') diff --git a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java index 61ff18c2d..9848b5dad 100644 --- a/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java +++ b/android/app/src/main/java/chat/rocket/reactnative/MainApplication.java @@ -3,6 +3,7 @@ package chat.rocket.reactnative; import android.app.Application; import com.facebook.react.ReactApplication; +import com.reactnativecommunity.webview.RNCWebViewPackage; import org.wonday.orientation.OrientationPackage; import org.devio.rn.splashscreen.SplashScreenReactPackage; import com.facebook.react.ReactNativeHost; @@ -51,6 +52,7 @@ public class MainApplication extends Application implements ReactApplication, IN protected List getPackages() { return Arrays.asList( new MainReactPackage(), + new RNCWebViewPackage(), new OrientationPackage(), new SplashScreenReactPackage(), new RNGestureHandlerPackage(), diff --git a/android/settings.gradle b/android/settings.gradle index d21bc637b..eb8479481 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,4 +1,6 @@ rootProject.name = 'RocketChatRN' +include ':react-native-webview' +project(':react-native-webview').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-webview/android') include ':react-native-orientation-locker' project(':react-native-orientation-locker').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-orientation-locker/android') include ':react-native-splash-screen' diff --git a/app/i18n/locales/en.js b/app/i18n/locales/en.js index 091d5c5e4..6b1d5274e 100644 --- a/app/i18n/locales/en.js +++ b/app/i18n/locales/en.js @@ -81,6 +81,7 @@ export default { Add_Reaction: 'Add Reaction', Add_Server: 'Add Server', Add_user: 'Add user', + Admin_Panel: 'Admin Panel', Alert: 'Alert', alert: 'alert', alerts: 'alerts', diff --git a/app/index.js b/app/index.js index 56f88def1..4d5c37587 100644 --- a/app/index.js +++ b/app/index.js @@ -20,6 +20,7 @@ import Navigation from './lib/Navigation'; import Sidebar from './views/SidebarView'; import ProfileView from './views/ProfileView'; import SettingsView from './views/SettingsView'; +import AdminPanelView from './views/AdminPanelView'; import RoomActionsView from './views/RoomActionsView'; import RoomInfoView from './views/RoomInfoView'; import RoomInfoEditView from './views/RoomInfoEditView'; @@ -145,6 +146,12 @@ const SettingsStack = createStackNavigator({ defaultNavigationOptions: defaultHeader }); +const AdminPanelStack = createStackNavigator({ + AdminPanelView +}, { + defaultNavigationOptions: defaultHeader +}); + SettingsStack.navigationOptions = ({ navigation }) => { let drawerLockMode = 'unlocked'; if (navigation.state.index > 0) { @@ -158,7 +165,8 @@ SettingsStack.navigationOptions = ({ navigation }) => { const ChatsDrawer = createDrawerNavigator({ ChatsStack, ProfileStack, - SettingsStack + SettingsStack, + AdminPanelStack }, { contentComponent: Sidebar }); diff --git a/app/views/AdminPanelView/index.js b/app/views/AdminPanelView/index.js new file mode 100644 index 000000000..3d9da29fe --- /dev/null +++ b/app/views/AdminPanelView/index.js @@ -0,0 +1,48 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { WebView } from 'react-native-webview'; +import { SafeAreaView } from 'react-navigation'; +import { connect } from 'react-redux'; + +import I18n from '../../i18n'; +import LoggedView from '../View'; +import StatusBar from '../../containers/StatusBar'; +import { DrawerButton } from '../../containers/HeaderButton'; +import styles from '../Styles'; + +@connect(state => ({ + baseUrl: state.settings.Site_Url || state.server ? state.server.server : '', + authToken: state.login.user && state.login.user.token +})) +/** @extends React.Component */ +export default class AdminPanelView extends LoggedView { + static navigationOptions = ({ navigation }) => ({ + headerLeft: , + title: I18n.t('Admin_Panel') + }) + + static propTypes = { + baseUrl: PropTypes.string, + authToken: PropTypes.string + } + + constructor(props) { + super('AdminPanelView', props); + } + + render() { + const { baseUrl, authToken } = this.props; + if (!baseUrl) { + return null; + } + return ( + + + + + ); + } +} diff --git a/app/views/OAuthView.js b/app/views/OAuthView.js index 6b3712c06..8fba10fd7 100644 --- a/app/views/OAuthView.js +++ b/app/views/OAuthView.js @@ -1,6 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { WebView } from 'react-native'; +import { WebView } from 'react-native-webview'; import { connect } from 'react-redux'; import RocketChat from '../lib/rocketchat'; diff --git a/app/views/SidebarView/index.js b/app/views/SidebarView/index.js index ffb234ed3..4394b82e2 100644 --- a/app/views/SidebarView/index.js +++ b/app/views/SidebarView/index.js @@ -20,11 +20,19 @@ import { CustomIcon } from '../../lib/Icons'; import styles from './styles'; import SidebarItem from './SidebarItem'; import { COLOR_TEXT } from '../../constants/colors'; +import database from '../../lib/realm'; const keyExtractor = item => item.id; const Separator = React.memo(() => ); +const permissions = [ + 'view-statistics', + 'view-room-administration', + 'view-user-administration', + 'view-privileged-setting' +]; + @connect(state => ({ Site_Name: state.settings.Site_Name, user: { @@ -32,7 +40,8 @@ const Separator = React.memo(() => ); language: state.login.user && state.login.user.language, status: state.login.user && state.login.user.status, username: state.login.user && state.login.user.username, - token: state.login.user && state.login.user.token + token: state.login.user && state.login.user.token, + roles: state.login.user && state.login.user.roles }, baseUrl: state.settings.Site_Url || state.server ? state.server.server : '' }), dispatch => ({ @@ -137,6 +146,19 @@ export default class Sidebar extends Component { logout(); } + canSeeAdminPanel() { + const { user } = this.props; + const { roles } = user; + if (roles) { + const permissionsFiltered = database.objects('permissions') + .filter(permission => permissions.includes(permission._id)); + return permissionsFiltered.reduce((result, permission) => ( + result || permission.roles.some(r => roles.includes(r))), + false); + } + return false; + } + renderStatusItem = ({ item }) => { const { user } = this.props; return ( @@ -183,6 +205,15 @@ export default class Sidebar extends Component { testID='sidebar-settings' current={activeItemKey === 'SettingsStack'} /> + {this.canSeeAdminPanel() ? ( + } + onPress={() => this.sidebarNavigate('AdminPanelView')} + testID='sidebar-settings' + current={activeItemKey === 'AdminPanelStack'} + /> + ) : null} '../node_modules/react-native-orientation-locker' + pod 'react-native-webview', :path => '../node_modules/react-native-webview' + end post_install do |installer| diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 20db30d4e..16ba781ef 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -6,6 +6,8 @@ PODS: - React - react-native-splash-screen (3.2.0): - React + - react-native-webview (5.8.1): + - React - React/Core (0.58.6): - yoga (= 0.58.6.React) - React/fishhook (0.58.6) @@ -46,6 +48,7 @@ PODS: DEPENDENCIES: - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) - 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`) - React/RCTActionSheet (from `../node_modules/react-native`) - React/RCTAnimation (from `../node_modules/react-native`) @@ -73,6 +76,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-orientation-locker" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" + react-native-webview: + :path: "../node_modules/react-native-webview" RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNImageCropPicker: @@ -87,12 +92,13 @@ SPEC CHECKSUMS: React: 130b87b2d5e2baac646954282cab87be986d98fc react-native-orientation-locker: 132a63bab4dddd2a5709f6f7935ad9676b0af7c5 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 + react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: e608efe182652dc8690268cb99cb5a201f2b5ea3 RNScreens: 720a9e6968beb73e8196239801e887d8401f86ed RSKImageCropper: 98296ad26b41753f796b6898d015509598f13d97 yoga: 32d7ef1081951e9a35a4c72a7be797598b138a48 -PODFILE CHECKSUM: cef0a3df130baa205d9d4dcbf8ecc923f8f744cb +PODFILE CHECKSUM: cfaf85fae8fddbd9a7ea26e0a72d0a2d3852af66 -COCOAPODS: 1.6.0 +COCOAPODS: 1.6.2 diff --git a/ios/Pods/Headers/Private/react-native-webview/RNCUIWebView.h b/ios/Pods/Headers/Private/react-native-webview/RNCUIWebView.h new file mode 120000 index 000000000..8cc7df66a --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-webview/RNCUIWebView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCUIWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-webview/RNCUIWebViewManager.h b/ios/Pods/Headers/Private/react-native-webview/RNCUIWebViewManager.h new file mode 120000 index 000000000..842e4fdc6 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-webview/RNCUIWebViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCUIWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-webview/RNCWKProcessPoolManager.h b/ios/Pods/Headers/Private/react-native-webview/RNCWKProcessPoolManager.h new file mode 120000 index 000000000..b9b4d0a98 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-webview/RNCWKProcessPoolManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCWKProcessPoolManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-webview/RNCWKWebView.h b/ios/Pods/Headers/Private/react-native-webview/RNCWKWebView.h new file mode 120000 index 000000000..939a42464 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-webview/RNCWKWebView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCWKWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/react-native-webview/RNCWKWebViewManager.h b/ios/Pods/Headers/Private/react-native-webview/RNCWKWebViewManager.h new file mode 120000 index 000000000..03f019f16 --- /dev/null +++ b/ios/Pods/Headers/Private/react-native-webview/RNCWKWebViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCWKWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-webview/RNCUIWebView.h b/ios/Pods/Headers/Public/react-native-webview/RNCUIWebView.h new file mode 120000 index 000000000..8cc7df66a --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-webview/RNCUIWebView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCUIWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-webview/RNCUIWebViewManager.h b/ios/Pods/Headers/Public/react-native-webview/RNCUIWebViewManager.h new file mode 120000 index 000000000..842e4fdc6 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-webview/RNCUIWebViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCUIWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-webview/RNCWKProcessPoolManager.h b/ios/Pods/Headers/Public/react-native-webview/RNCWKProcessPoolManager.h new file mode 120000 index 000000000..b9b4d0a98 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-webview/RNCWKProcessPoolManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCWKProcessPoolManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-webview/RNCWKWebView.h b/ios/Pods/Headers/Public/react-native-webview/RNCWKWebView.h new file mode 120000 index 000000000..939a42464 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-webview/RNCWKWebView.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCWKWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/react-native-webview/RNCWKWebViewManager.h b/ios/Pods/Headers/Public/react-native-webview/RNCWKWebViewManager.h new file mode 120000 index 000000000..03f019f16 --- /dev/null +++ b/ios/Pods/Headers/Public/react-native-webview/RNCWKWebViewManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-webview/ios/RNCWKWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/react-native-webview.podspec.json b/ios/Pods/Local Podspecs/react-native-webview.podspec.json new file mode 100644 index 000000000..dda0613bc --- /dev/null +++ b/ios/Pods/Local Podspecs/react-native-webview.podspec.json @@ -0,0 +1,20 @@ +{ + "name": "react-native-webview", + "version": "5.8.1", + "summary": "React Native WebView component for iOS, Android, and Windows 10 (coming soon)", + "license": "MIT", + "authors": "Jamon Holmgren ", + "homepage": "https://github.com/react-native-community/react-native-webview#readme", + "platforms": { + "ios": "9.0" + }, + "source": { + "git": "https://github.com/react-native-community/react-native-webview.git" + }, + "source_files": "ios/**/*.{h,m}", + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 20db30d4e..16ba781ef 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -6,6 +6,8 @@ PODS: - React - react-native-splash-screen (3.2.0): - React + - react-native-webview (5.8.1): + - React - React/Core (0.58.6): - yoga (= 0.58.6.React) - React/fishhook (0.58.6) @@ -46,6 +48,7 @@ PODS: DEPENDENCIES: - react-native-orientation-locker (from `../node_modules/react-native-orientation-locker`) - 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`) - React/RCTActionSheet (from `../node_modules/react-native`) - React/RCTAnimation (from `../node_modules/react-native`) @@ -73,6 +76,8 @@ EXTERNAL SOURCES: :path: "../node_modules/react-native-orientation-locker" react-native-splash-screen: :path: "../node_modules/react-native-splash-screen" + react-native-webview: + :path: "../node_modules/react-native-webview" RNDeviceInfo: :path: "../node_modules/react-native-device-info" RNImageCropPicker: @@ -87,12 +92,13 @@ SPEC CHECKSUMS: React: 130b87b2d5e2baac646954282cab87be986d98fc react-native-orientation-locker: 132a63bab4dddd2a5709f6f7935ad9676b0af7c5 react-native-splash-screen: 200d11d188e2e78cea3ad319964f6142b6384865 + react-native-webview: f3e28b48461c78db833f727feec08b13285e7b61 RNDeviceInfo: 958a1ed6f94e04557b865b8ef848cfc83db0ebba RNImageCropPicker: e608efe182652dc8690268cb99cb5a201f2b5ea3 RNScreens: 720a9e6968beb73e8196239801e887d8401f86ed RSKImageCropper: 98296ad26b41753f796b6898d015509598f13d97 yoga: 32d7ef1081951e9a35a4c72a7be797598b138a48 -PODFILE CHECKSUM: cef0a3df130baa205d9d4dcbf8ecc923f8f744cb +PODFILE CHECKSUM: cfaf85fae8fddbd9a7ea26e0a72d0a2d3852af66 -COCOAPODS: 1.6.0 +COCOAPODS: 1.6.2 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 088d1f0ec..af7da03b3 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -7,843 +7,892 @@ objects = { /* Begin PBXBuildFile section */ - 007BB4C5D4BEE9575C427F9A0FDDB20E /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8219E394CA395A5CDD142F6DE672EC2C /* UIApplication+RSKImageCropper.m */; }; - 060B19AF283C547371A4A84C6A4BC49F /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DB0F0FF6540AD1437196AF2AE8948FD3 /* ja.lproj */; }; - 0CF06F418617EC6F711447A5BEC980D2 /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7C64308FC6B4B6E2827F842F943B31 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E769742F3C0EDEE2F2562E944256AF7 /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A9F3EEBC8F794B9CDC324BB9B3D5F622 /* zh-Hans.lproj */; }; - 10AFEDACA7F0B1C06C80B362E9B68E05 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B50958D7B3BD16D9D1BF7E918A3CD4E /* RSKInternalUtility.m */; }; - 132A6519B5B905C75A5A020CA4E3280E /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A258B0B68B31283F7B6EBADE886191F /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 135BE22E0ACB25AC4474E34791CBFD33 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 800C6E7B55B718E4A1AC240A89EAE71A /* UIImage+RSKImageCropper.m */; }; - 137BC8C5579BAAD2877D03BC4C290BC1 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 106D25E0B273E65041047936D693A478 /* QBVideoIconView.m */; }; - 159A12D770953E22C0CDF45636CFD653 /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4FEEA791AF1252C10465E4FA22D12F31 /* QBImagePicker.storyboard */; }; - 17849FF29D9CE2176F6FBDAADC4AACDA /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A7ACA22A2B8A26BB576544CFD7EA35 /* CGGeometry+RSKImageCropper.m */; }; - 1B40D24A50215E903DCC9289F6E686BD /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = AAD89152C28A2161656B81B0777B24C2 /* UIImage+Resize.m */; }; - 1C4A84F99766F236C1DFC83793B187C1 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B0E63E2BA66FDCF5267724E5831901 /* RNSScreenContainer.m */; }; - 1D387FCE670E90BEEE3728EB723ABE4A /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = B81995972E7AD3A939D5C02574F550A4 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EFE13E5DFC1B11CEC0BCE6E722FBF94 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A85D19F52A8A3E03D576F447C82D7BB6 /* RNImageCropPicker-dummy.m */; }; - 28D8F8ACEE7D5EDE8CE8A05866AFD58B /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 228D54461BAA29FC086EE3F93E7C462D /* RSKImageCropViewController.m */; }; - 29D44F00B5249DC4584A4CD5301CDBAB /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 946EF2BF8DEF610D01C4A772EEAE7A2F /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A1ED1EB0E97215DA394B679379C2127 /* YGFloatOptional.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8240EF6EAD398B639C64D85869287194 /* YGFloatOptional.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 2C4CBCF063577292964460D49BA1FB43 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 621DFCF4DD83F8E27C52EA25BA208969 /* QBImagePickerController-dummy.m */; }; - 3479C402D89085C2C38ADA8868CDFC3E /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C27E34634B993D92BEE38C5699F00473 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 34C1B39A0B4F2FC55DF7DAD0C2A6F313 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17DCBD0E6D977B54929642A7AEF3C72C /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 360FC437E35A9059B8AC9E87E3627593 /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1851FC7C08CF4D9F65A0B830D74DD3A8 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B11FACCC3C07D9A25272B0D1FE9B9CB /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 04020010BB4EB875AFA599191099AE6C /* RNDeviceInfo-dummy.m */; }; - 3BA2317D171A42F16BA058560EEB6440 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F5D70922D132E811892B44688AE7500 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 419A90F22215FBC62ED9FB16A37A1188 /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B47E935B4EB0BE7E7DE38DCAB725340F /* yoga-dummy.m */; }; - 48062BE16A2CC9646C6E4358EFE87031 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A8A3498EC9A70EA25125CF052517CE9 /* DeviceUID.m */; }; - 48497CE54936883B884838149DB03FAB /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 70FB9D8E3A21FF6342AFABFD6FC9303D /* RNSScreen.m */; }; - 4951FA8B46CF4779AFA70FA227600657 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C5E24D36FD56EEF31167538793FF2CF /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 4FF98CADA84816E8FBA332A2F61D3BFB /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 68FCAD0F17C38CB134DA66E2627D4F3F /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D7EA70AE2307DB57A2E6BB13F6FA9C7 /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BECA47C45AFDA1069AA9FB874D372A7 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D5C0678D3C1982C60D34D66856C926 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */; }; - 67B815915864A415A878FF2AED2A7879 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E42C5611C2E78039F2DBC5B7E4EF8842 /* RNScreens-dummy.m */; }; - 6A2654A081AE78FE3B9F0215F5E1B2A7 /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED00858C057A370F5E09C8DC30CF24F /* Compression.m */; }; - 6A284770A15E670C2E6505B6E83C5E1D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DE9089174704B0641C37DBD70C4421 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AD42BD9514E26A7BEA6E8A0C987EFFD /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = A9FB701B166EC19983573211D713A782 /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E6B15796EA708FBC102F41BA6E50427 /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D54EA6BF19303D981BC3776DA10327D5 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70EF2AAE80E2FCB35B310B22263D890D /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D4D4AF31953A8E6A7F9EEFF15FBCBA7F /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7215CB438EE6851990F01875F78A89E7 /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87EE112AB3510A06465DA033184F9F16 /* QBVideoIndicatorView.m */; }; - 745A527CCAC9A0BBC94A26FB056FDFC3 /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = B026137DEBC8CD6B5287B1513DA67637 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76F59B1E6A44FE0A7BF21497CCEFA005 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4463195CA502FA3BA21FF769C1C5F6CC /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 7A3B48061259DBA587219267BA794DF8 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5647A166E99D22BCADC97C2DCDE87F80 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BAE64440AD93DB096418438222A2F9A /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE949C754E333F8C4C3477429A3B570 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F828E84C4002606A70D2B38CE2E2B30 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BE1E20E2CDDF820C8410440A247B99A /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B89927E45FB3DCD13B1302A233DADC8 /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DED20886B387C42D200FE78592D5C5E /* QBAssetCell.m */; }; - 8BB62E78AA74CEB6BAE8553879B88E2D /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 750C7001455879D3BE259AE2894911A4 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 905F26B40E9BE0A5BED7916C281E7429 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8553A09682A95B93CFA17A079D44CF /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 920DB3AF6B7E10B01B6936D9AD2738B1 /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F54ED452715CC564C1F8B274DF05AB4 /* RNSplashScreen.m */; }; - 946A347EA851A5BF342CB41BD393AF87 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D2836E4F4E855395C40A83EF200717F /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 96BC3E8079CCA9F5D338727D3291A057 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 544C820A52F0195DDB9B912325E734B9 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98D3B9F2DA57C1E8DA4AB300DEE26ADF /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FCD763F52F8DC11781F46E9AD336AE /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99221F1BA0F9994E37AB3E5CCD70D545 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 87CB894B21A2A191298D49D966644804 /* en.lproj */; }; - A295EE0B40BD097A5113572DFD811B05 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B6DBB63530C4C299A6660A08A74B1F5 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - AA661127D5EA4EF10418CCFEBC3836CE /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F4617FBE7B67A82D916E2DE1B4BF04 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABA00506BBA14A989C2E1C0022B131F1 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D7F10C760778CFCECA4DE2A5AE151F /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD8F9925B921E8C80A027050AAE6809C /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 366EEC1616CA971876D9048470F62530 /* de.lproj */; }; - B11D689F3199F8E95C7EC4CE7E73DE87 /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = D965292EFF62ABB4EE03B4F76B5D7B3C /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B16FB8AD8C88A3C93DF377FF608AF08F /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F146060A12B47C0969AF604FB6DC32E1 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - B252B9BD027A8726077B69601C69A7FF /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1545B48DF462936EEC76060F3F8C7ACA /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7D44C3C85376B3F45193A3015611B95 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 45FF04CD9C020D15A4E172B09E9B1B6C /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B83431A6D9CD77DD524F419CBDAC9998 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 050889920DB4C7A750B4D0F05D0BF611 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9026EDADDF4E8489A21A6816BA479E3 /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AFCB9FFAAF3327D8A42C9DB58D499AE /* QBSlomoIconView.m */; }; - BB82B4F61957DF830FB56A23F0DEE9BC /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0A397D7C71A0FDA9A913234D1D13681 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - BBFB2B5FD9361EDC6544BDE55D3919D0 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DEED1E11E500C444D719803E8FA301AF /* react-native-orientation-locker-dummy.m */; }; - C2502395CA84F976F7E0A2AE70A35E06 /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DF782E4A8240418BAF45CBCD828460C /* QBAlbumsViewController.m */; }; - C2D2C65EE31EAB452AE50821B3934D8B /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3CBE5EF34FB2B0C576A8E5997DEABD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2DCEF4262CBE112A1BFD446EE3A6CB5 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AC0FC295B279E71F32C9D9A16B8CAB9 /* ImageCropPicker.m */; }; - C6FEBB385FF9B11922F3F83BC4A3E5D6 /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BD00E773DC413A2D71CE3A1E10E9DD5 /* RNDeviceInfo.m */; }; - CDA537138EACA2DE75BED487724492D3 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0424CDDC45A89CA3CC3A671E2AF01117 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0A041B3C9628F5104156A408B38B95F /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D53984A8C06BD928E72A1ACF2FB336D /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0CDECA6D98F30BC34704FB84EFA1080 /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = A3CC6DFBA822A92A57AB068FEE8717F5 /* QBImagePickerController.m */; }; - D46C35A5056F00AC7F69F2512B2962AE /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = C22C846D7C4C757A7DF814C629E5A332 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4C610AC69A2682C7965F06A4304608B /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 96AB82FD98DDDB55A6212950B4641009 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCAD0344CD112B8787619568D11C9725 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD4F0204962AB6DD1DA22F8AA9CBCAB /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD52AD9D86B96F0E1BF4535084B6AC90 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 539DB4B4788C63E6A0610E6AAD7F990E /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - DED99FDCA5A62687C5693EFCA55E9E67 /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D851F9A0A6FD322CB934770AADC542A2 /* es.lproj */; }; - E139E84DC17194360E44BF896C686084 /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = D20A73060988F89E67E16DD8B6596186 /* RSKTouchView.m */; }; - E269644C13115B44B88F0007CD8CE76E /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 315C8987D27ECB700CD6C946149CE2C8 /* Orientation.m */; }; - E4AC95BD6299A14275D4DF15D076231B /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC2A24799C6E3A434895E3EBC61CFA5 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6D0CE94A56807752A29B84581EBB955 /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1962F46F0D0CB088FB4A56EA553F4433 /* RSKImageScrollView.m */; }; - E8790D821F890070A973CEAF5A3095A3 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC1AAF4C1C593CB9718E6AAFA7E4ED5 /* QBAlbumCell.m */; }; - E8F212CA19F204874F19257561856A28 /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 326D7CEFEE9B87A85C748E473C489A22 /* QBAssetsViewController.m */; }; - EA293E64838769BC33A9F06238A5122F /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = DB0BC583CB135236EA364C2C5B64CA3F /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC5FDD8EAD0AEB04DDBA220C2A80E84D /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FE7C728DAABA5CB9183137453B05C98 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED1CBA0FC23196CE6F9409179611041E /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B5332C048394B2C0C9D439551B10FA1 /* RSKImageCropper-dummy.m */; }; - EEA91ADF83BEFC849D9E808B2875C3C6 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B8255BA12F3A3B66C97E4A6422D75E2 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFD7C52C9350C48071BA26F6B9685674 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = AC63AE48EE01936D927BE2A4F07C9108 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC583245669EA1D4D320DCCE44400452 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EDFB3FBB81DD62BB8EAF443CBF1543A8 /* react-native-splash-screen-dummy.m */; }; - FEC430F7BDEFBF2D4742BBE6A8986444 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04FA90D6797F86AC296C2E3204D53878 /* QBCheckmarkView.m */; }; + 0251834A0E91F254174B18CB5D67C5F5 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D5C49BE7DBCE72939B0E0EE10F7CD56 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 056398FF1EEFFA487E754A3C10DB8398 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 056EEA871740983F21D770D4A00EDEE4 /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09D41749E4E1E1BA8882E542FB3566D2 /* RSKImageCropper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B5332C048394B2C0C9D439551B10FA1 /* RSKImageCropper-dummy.m */; }; + 0A4EE940EE240F3098BD73D621B3E4A0 /* QBCheckmarkView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BC2A24799C6E3A434895E3EBC61CFA5 /* QBCheckmarkView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0AA0649D4991D4B7071A960A78FF9E5C /* QBAlbumsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DF782E4A8240418BAF45CBCD828460C /* QBAlbumsViewController.m */; }; + 11B23534EFFE749AD096969E0D8764F2 /* RNDeviceInfo-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D72FB0684E0D6D61FACCF26BC7A4C29 /* RNDeviceInfo-dummy.m */; }; + 124357DA9D9DE268991ED325B94DCFA4 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 42728EB7E00911840EB7DF9FB7565329 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1496D60087AD8955585E904F0F5F84AB /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C1AF41318F98EA5D41F97C7140EC4ED /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1969DF302F2E7D6A0A0B7AF4F721CCD0 /* DeviceUID.h in Headers */ = {isa = PBXBuildFile; fileRef = 3926AAA6A1286454472C733600D78C30 /* DeviceUID.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19BACD0B7A458882F97D94D24375E279 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C2E9772FC46CB9DC5BDF04F1BE8D4E11 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22D116A70C540EECA0BE8E11B2296A0B /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 8219E394CA395A5CDD142F6DE672EC2C /* UIApplication+RSKImageCropper.m */; }; + 23E710866F5A92654A8156D9D181FB2C /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFEB0F127584BF6E2A6FB12C2B465B77 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 241237EEA83AA19AE243FAD39B90E841 /* RNCUIWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = B36F85AD4BC05A2024D44EDA60A6D862 /* RNCUIWebView.m */; }; + 2524222771F5C0215EAAE0527EB09B60 /* RNImageCropPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C81847F2FA8B6047E96591DEC10C30B /* RNImageCropPicker-dummy.m */; }; + 2A8C91E614242306EFD2052D763F7F95 /* QBImagePickerController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 621DFCF4DD83F8E27C52EA25BA208969 /* QBImagePickerController-dummy.m */; }; + 2F07AF6AB1D4CEF927872EDFF39E2AE6 /* QBVideoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 106D25E0B273E65041047936D693A478 /* QBVideoIconView.m */; }; + 38C0A10D989879BF3BB1DF0F3B06EFF1 /* RNCUIWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 180C2BA8ECD1EAE88E6EBF9C26F34933 /* RNCUIWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A4E98915162313F476CC8F4D2950C3E /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1962F46F0D0CB088FB4A56EA553F4433 /* RSKImageScrollView.m */; }; + 3C83F09A0686E7204D58831F4FFD427C /* QBVideoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1851FC7C08CF4D9F65A0B830D74DD3A8 /* QBVideoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D45826D8F2111B83F0D3E589787EBCB /* Compression.h in Headers */ = {isa = PBXBuildFile; fileRef = FC7D7FA94CB9215948D678D7F67543A6 /* Compression.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EB01A19C37EC15405054714EE7F695A /* CGGeometry+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7C64308FC6B4B6E2827F842F943B31 /* CGGeometry+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EE3F7E358E6B62282BCCD8C2462B7B3 /* UIImage+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = F3F4617FBE7B67A82D916E2DE1B4BF04 /* UIImage+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4243048F31E41F6368648BE2E201FA53 /* RSKImageCropViewController+Protected.h in Headers */ = {isa = PBXBuildFile; fileRef = AC8553A09682A95B93CFA17A079D44CF /* RSKImageCropViewController+Protected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47BBBE64D5CA497139F17EA1B660FECD /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 6699077C583B3122C5D811656942C327 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A0A6E58F35F2C0870D723D99B854F3E /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = D20A73060988F89E67E16DD8B6596186 /* RSKTouchView.m */; }; + 4DDC0990D7B453A57F09122F01DB2D27 /* RNCWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EE053223414B0935323B97B9CCCD836 /* RNCWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DEF844F0A17B0970183C0E96C592875 /* QBAssetCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 750C7001455879D3BE259AE2894911A4 /* QBAssetCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E7653D218E2FB51A644D6E622D5D6C8 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D50A7CFFB31136C471526E4DBBD60A1B /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54AF34631D4CF8F45EBCE867879A417E /* QBImagePicker.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 4FEEA791AF1252C10465E4FA22D12F31 /* QBImagePicker.storyboard */; }; + 54D596A2F4F7DE8BD61048F58E85A9EC /* RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE949C754E333F8C4C3477429A3B570 /* RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A2FA485AEE4C7BE7878F1724CF80E4E /* UIApplication+RSKImageCropper.h in Headers */ = {isa = PBXBuildFile; fileRef = D54EA6BF19303D981BC3776DA10327D5 /* UIApplication+RSKImageCropper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C085D2A3E386ED72AF879460E0F5CE4 /* RNCWKProcessPoolManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 58A40F9D6693085CF8A3D2AFB7EF5FE1 /* RNCWKProcessPoolManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E56F479C67578265A04DE867528AB19 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D5108B70B861F199A48876813618D9E9 /* RNScreens-dummy.m */; }; + 61485F5A9FDE863BC82B778B37F15E1C /* QBVideoIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 87EE112AB3510A06465DA033184F9F16 /* QBVideoIndicatorView.m */; }; + 624E0375742ABC12EE1D63556653C179 /* QBCheckmarkView.m in Sources */ = {isa = PBXBuildFile; fileRef = 04FA90D6797F86AC296C2E3204D53878 /* QBCheckmarkView.m */; }; + 664D896930E856809E9C6F72A11C5184 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = B82E3B17935DB9E0A68204FAC903DFA7 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66AA249F4AF9A659E93D11DF02E76093 /* QBAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = AC63AE48EE01936D927BE2A4F07C9108 /* QBAlbumCell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 681C1A2513F2CFECB9FC5E3E4A7024F5 /* RNCWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A41D46F9C682CD9E2CAF9F04B977796 /* RNCWKWebViewManager.m */; }; + 69395FAE51A05E1A41A4C630434F25AD /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C68F38858C1FF50749B7DDB146865E0F /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6DF7FC6AD33ED3D74ECD1F632377AB73 /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 800C6E7B55B718E4A1AC240A89EAE71A /* UIImage+RSKImageCropper.m */; }; + 6E9A707B24C745EC3E2FE7E146E114BF /* RSKInternalUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BECA47C45AFDA1069AA9FB874D372A7 /* RSKInternalUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 788493A27D18A4A45E082BC9D449B332 /* QBAssetsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 946EF2BF8DEF610D01C4A772EEAE7A2F /* QBAssetsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A63C6D10DF9BFE5FEBF7A0F37D4A52A /* QBSlomoIconView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AFCB9FFAAF3327D8A42C9DB58D499AE /* QBSlomoIconView.m */; }; + 7C7FA6B6203B7164620B79603C867D03 /* QBVideoIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5647A166E99D22BCADC97C2DCDE87F80 /* QBVideoIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DF0C3459BDDD97E34D1BCBC42841C47 /* DeviceUID.m in Sources */ = {isa = PBXBuildFile; fileRef = E6049D31257C782F79AB8A2CB37084C9 /* DeviceUID.m */; }; + 7F4AD868518E4BBAE70F5F139B5E608D /* Compression.m in Sources */ = {isa = PBXBuildFile; fileRef = C75DA7C2FA53ADD1AB6EE5C338D65C71 /* Compression.m */; }; + 7F99EC2AA82AA61286D60F57F50E7480 /* RNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = E2FC1854499228193D6DA848079460D8 /* RNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8709DC990618999F59412BF0B3005483 /* RSKTouchView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD4F0204962AB6DD1DA22F8AA9CBCAB /* RSKTouchView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E2ADDCD7F1074D8E9DB0B3AAC753E7 /* QBAlbumsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F3CBE5EF34FB2B0C576A8E5997DEABD /* QBAlbumsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B059340E38A4540DA5AE9C66A1839D9 /* RNDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC733EECC379610BC3C62A37E8E5FB3 /* RNDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F16AE034801C699C8AB83F7E4C5C440 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0932F22CDB4296763EE7729021801F9D /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FD1999C9DA02E9D151F36CEB5479F3C /* QBAssetsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 326D7CEFEE9B87A85C748E473C489A22 /* QBAssetsViewController.m */; }; + 907811A17D31AF49AB09B55E48DB42D5 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5273D144181073C7911DA840A201D43E /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9086ADDB1282B53FA3A7426B2D46D893 /* ImageCropPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 944748437BA20739B0DA6D60197C7A45 /* ImageCropPicker.m */; }; + 93F7363D39B6478DD25F50A26D7CAC18 /* RSKImageCropViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D7F10C760778CFCECA4DE2A5AE151F /* RSKImageCropViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 967EAC93F3F1831490CAAD33F82F2BA4 /* RNCUIWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = A9CB2869514173494452D3D4DD39F3E9 /* RNCUIWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97E51C0048F3DE4530B9173DBA3303EE /* es.lproj in Resources */ = {isa = PBXBuildFile; fileRef = D851F9A0A6FD322CB934770AADC542A2 /* es.lproj */; }; + 9832DFD22D79B08AE1D668CA17C8823E /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A383BAB79F02EC686B246E0E76A95CD3 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 9B7A6FAAD4605C49250B7CEB3E1CEE5B /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = FFF827A7D0D6DDC7FEA34B121DF017A3 /* RNSScreenContainer.m */; }; + 9C412C7B35195C9CD7C115A7C5A88C3D /* ImageCropPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 797CA4FB5D0378B336872FCA78D43A0E /* ImageCropPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C4EEC8C54BE0C3E4024EE4868ED518F /* RNCWKProcessPoolManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 69BAA883C327921F649F4B1F6DB3DACB /* RNCWKProcessPoolManager.m */; }; + 9F9FDB751AC31DFBB9433579578E48A0 /* QBAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC1AAF4C1C593CB9718E6AAFA7E4ED5 /* QBAlbumCell.m */; }; + A6CD815D0596CC7C8D498F825E60555C /* Orientation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9F504B008C3351DECD66B4C0C575D687 /* Orientation.m */; }; + AA27ADDEFB46C4605FB4E96E9C50036E /* QBAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DED20886B387C42D200FE78592D5C5E /* QBAssetCell.m */; }; + ABFB02FB9FAB24359E21D9B75E77E68A /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B060B44C2BD56A2E967ECC3A1410F7 /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE3B17E7C4BF77BBE4DD1E642DC52171 /* RNCWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = AC24ED5E140E9C69A692BBA8B6D34DF0 /* RNCWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B04226B72C6EEB32A9DFC9FCEF2B5DD7 /* de.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 366EEC1616CA971876D9048470F62530 /* de.lproj */; }; + B26344642961C7B2DB1155D1CE71C883 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4812F203B1949F02FD0B03AA313F0CA3 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B28B089655E8835A45D684C4B74AED2F /* zh-Hans.lproj in Resources */ = {isa = PBXBuildFile; fileRef = A9F3EEBC8F794B9CDC324BB9B3D5F622 /* zh-Hans.lproj */; }; + B626516C0407778EA39085E0687AC464 /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B50958D7B3BD16D9D1BF7E918A3CD4E /* RSKInternalUtility.m */; }; + B6B6C79E47F51A64B94EA360E35511CD /* QBSlomoIconView.h in Headers */ = {isa = PBXBuildFile; fileRef = B81995972E7AD3A939D5C02574F550A4 /* QBSlomoIconView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF055AA7DBEBA8905A175D29AC567300 /* react-native-splash-screen-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F86E6FDFF14724A44D47FB658D37732 /* react-native-splash-screen-dummy.m */; }; + C2FB4775C740401F261EEE50C30B1869 /* RSKImageScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1545B48DF462936EEC76060F3F8C7ACA /* RSKImageScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C47787C9531218E11AA0EBE9FE4F993B /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22944D967E8EB6CC0C14478A7B6E9CFA /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C4AF15B1213FD9F1CDE3808D25F3CB60 /* Pods-RocketChatRN-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */; }; + C5799479EAEEA1B764DC41C757519C6A /* ja.lproj in Resources */ = {isa = PBXBuildFile; fileRef = DB0F0FF6540AD1437196AF2AE8948FD3 /* ja.lproj */; }; + C6969918138844D72388FDC8EDB612DC /* react-native-webview-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A796E3FA7F8956F287FE8056D20B196 /* react-native-webview-dummy.m */; }; + C6B7D13D05AE788B4B764BD5B7E55066 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 18CA3F1E9C3217AA0AC954A18DF7C04A /* UIImage+Resize.m */; }; + D067DE924017E4F29F2FDB39EE74DD9F /* RNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 1774894313C68CFAFEF31709D575380B /* RNSplashScreen.m */; }; + D0A3D004404A87B711427B11FC752072 /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C1AFF362C1C24A3E0C0D9CE5AAC59EFF /* yoga-dummy.m */; }; + D0E633C7000C96C0228965B72AC0CC6C /* UIImage+Resize.h in Headers */ = {isa = PBXBuildFile; fileRef = 2250147A437E5B9CF73DF5B62571FF88 /* UIImage+Resize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D122E41D617F683C2B34B1585A613B35 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98FD2A6FD436DDE4BB46182D7CE097F6 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D6A238B5B6A7C3A5C86ACFD9BB55CB1B /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = 86A7ACA22A2B8A26BB576544CFD7EA35 /* CGGeometry+RSKImageCropper.m */; }; + DA5DF1C5AC6B29F88481335B7C6872B5 /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 228D54461BAA29FC086EE3F93E7C462D /* RSKImageCropViewController.m */; }; + DDDC6A2F219177825E0E84EB09581CAC /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = 87CB894B21A2A191298D49D966644804 /* en.lproj */; }; + DE50BBCAC7C7D4AB4849D750C4B52E6D /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = C3447E4E14DC5966D7514D3A32F9B0AD /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0890D145206692527728AA8800185FB /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = C41C4FDE8A2F358750E8BE7349992CE5 /* RNSScreen.m */; }; + E44C6C122FB7D8D125E12B5AAF39C4DD /* QBImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = A3CC6DFBA822A92A57AB068FEE8717F5 /* QBImagePickerController.m */; }; + EB54FBB243DAE73D7E01FDC9CF605A84 /* QBImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D53984A8C06BD928E72A1ACF2FB336D /* QBImagePickerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED0550EAC677A95CC78064C9F5C210CA /* Orientation.h in Headers */ = {isa = PBXBuildFile; fileRef = F68E836505A6DB028D7DB98CE14267D8 /* Orientation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE2A93FAE8D5124A4E2ECA30365962C6 /* RNCUIWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9A5ADAA02A6B68C1A8F594466BE613A /* RNCUIWebViewManager.m */; }; + F22CEE750A8F4066FD5C3FC9FBE729EB /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 78074D7D1426B745159A7309731DB3C5 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F396C12882F006F732A96AA6ADF300A3 /* react-native-orientation-locker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B9DAF1089D5304595022A329893DEB0 /* react-native-orientation-locker-dummy.m */; }; + F4BB7CED8CDC15ACB24B803D436D6FB0 /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A2DD45BD7BF47CFD3E9154A752A8CE0 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F949DBC76D6354C38F9D2A98D9A6498D /* RNDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A8B15878A58015E8CB768BD825455308 /* RNDeviceInfo.m */; }; + FC38AD932CA05EEC8AC1A59EA855CC69 /* RNCWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = B1B605004A5DBBDC276524CE58BF423F /* RNCWKWebView.m */; }; + FCC67C0167D232EA40EE374D7E634714 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C46A061DA56871863EC348CDF41DEFD3 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + FDFD29DD52CF2A502DFE889730C28485 /* YGFloatOptional.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86AE07833E9151D73607485D46347897 /* YGFloatOptional.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 071E1E59F2FCBB61F760C7DB9EB6D3CB /* PBXContainerItemProxy */ = { + 01C36B14EB20FE8CB82CC39300980EE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7A1361361838181F7617C267CDBDCE0C; - remoteInfo = RSKImageCropper; - }; - 0B3E140A2263E5B3CDC99E71D9BE9F25 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000002BB0; - remoteInfo = React; - }; - 10466733EF5F19EE2B44983EB13BDC95 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7A1361361838181F7617C267CDBDCE0C; - remoteInfo = RSKImageCropper; - }; - 1C29E26CFB2FE43C9B65A93D77917DD0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2E7333285525F3889264970D99637C5; - remoteInfo = "react-native-orientation-locker"; - }; - 37D296133551343E68172C8628857C41 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000002BB0; - remoteInfo = React; - }; - 3DEDFB0FA2232904F948BCE48CCE0C6A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000002BB0; - remoteInfo = React; - }; - 565324B151899A0DB508DEB7279C3EBC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000002BB0; - remoteInfo = React; - }; - 594C8A7614D299AA0322BD80AD6E559E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 376DEB4502B4900C4F93F4A1C7F1DEAC; - remoteInfo = "QBImagePickerController-QBImagePicker"; - }; - 810E15AFE5FB49133D1C8605A7CEF647 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 19E7A596BFB31645A127652B332D4DA3; - remoteInfo = QBImagePickerController; - }; - 95C5920EA280A40E68B98765FEBBBC57 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000002BB0; - remoteInfo = React; - }; - 982841B643C920292E2F91A06659D739 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000000002BB0; - remoteInfo = React; - }; - 98516380E4A03F298421C812CBEDADEA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F871CCC8CA4729CF25DFAA362986ADA5; + remoteGlobalIDString = 1C07AEF89DFDCF579A5A2BC2E4008C43; remoteInfo = "react-native-splash-screen"; }; - 9B4497C781EAA1C526EDDF39E8B40DE8 /* PBXContainerItemProxy */ = { + 129A73048386F48095E4468E39F62361 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8A6094DAAF476759DFAD6C3D9435C73E; - remoteInfo = RNDeviceInfo; + remoteGlobalIDString = A49950A5293BFE67914818C23681E39F; + remoteInfo = RSKImageCropper; }; - DED710C5A7E50EE3F1A37FA2D80EEBC9 /* PBXContainerItemProxy */ = { + 147049F7B609B922CADEAD3B306BED46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 19E7A596BFB31645A127652B332D4DA3; + remoteGlobalIDString = 000000002CA0; + remoteInfo = React; + }; + 1BE4AA0C3502ED50E51F803C4F50F504 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20E4CF7B7A03AD1F5B7FFBC7325571A; + remoteInfo = "react-native-orientation-locker"; + }; + 22975121D7EE8CC697770BF1D23771C1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FAF6F24B253252A5B7F8AD31E27A6255; + remoteInfo = "QBImagePickerController-QBImagePicker"; + }; + 4575E4009A5964A17B1B4F7A5665DD5D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000002CA0; + remoteInfo = React; + }; + 5D73A9E1448EE0468BBAB067731651A2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E0EFFF7F98EDDC5EA29A779B6056CC72; remoteInfo = QBImagePickerController; }; - E4E44B4A80B8BF85A1131827CCFAB866 /* PBXContainerItemProxy */ = { + 7C1B274A99A5F991DE331477A25E2604 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EA260E86CC615B56504AA34DA7363F6F; - remoteInfo = yoga; - }; - EA8CBAD760B7168A8E1F56A5FE2429D5 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B347A23B44C5457B10E9F0ABE49F3673; + remoteGlobalIDString = B2EC544CC7C0C1B32B8E254EE7C2FF05; remoteInfo = RNScreens; }; - F23FE9EB62C29EEC951ABFEE024C35FC /* PBXContainerItemProxy */ = { + 95D2BE0BE967BD9B147CF59C90D18DE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 45E44642036D1BBA1FC78B488A87579A; + remoteGlobalIDString = E0EFFF7F98EDDC5EA29A779B6056CC72; + remoteInfo = QBImagePickerController; + }; + A30645626D59A317AB8E8E4CC2B953CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A2923FF981017EE3FF96A37DE1219A22; remoteInfo = RNImageCropPicker; }; + AA7863FFADC2DF913B9ADD99F2BB7C82 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000002CA0; + remoteInfo = React; + }; + B2E2524A98182BD3A2C50F1104138AA2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B66E8DA8AC0E14784951673963BA5877; + remoteInfo = RNDeviceInfo; + }; + B77B0F37D31FA1AE1AAB3F3143F165B1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E06AB1FAF7FA8FBF0A9A51100E7D4636; + remoteInfo = yoga; + }; + C3FAA51EC4912B31BF92E818767E4CE2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000002CA0; + remoteInfo = React; + }; + CDC347D82B2FE3309081EA360B4EDAB3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000002CA0; + remoteInfo = React; + }; + D412ACF256DE99EB10B4BFEC4DCAD631 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000002CA0; + remoteInfo = React; + }; + D77B26514759C14E52D6C0EA147E7C72 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 000000002CA0; + remoteInfo = React; + }; + E19A494496E365B5AA14F450F4D348B0 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C804E89709ADE5B1AD6F17E6875AF383; + remoteInfo = "react-native-webview"; + }; + EF2C7F03A5D06F27EF24BECE0A9B2621 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = A49950A5293BFE67914818C23681E39F; + remoteInfo = RSKImageCropper; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 001D3F35AA430C96CAF2B161C249C66E /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - 00514A2A1FDC4CF6DF9CC90C4C8CA70E /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - 0098B8887C0388FCCAD9F8E6D735DF87 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 00D56C9AB060D3393DAF838F0BC7222B /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 029E32F20DC05FBB5F9A8726E92A59F9 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - 036F44AC6A89B092E1ECC974E826FCC4 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 037EC11F7D90188A0C0F553E48A6A2C2 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - 0393DA4BAE0F33D6F787162E877663F7 /* RCTTabBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarManager.h; sourceTree = ""; }; - 03D594315A2D63DF4075437775B1C059 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 03FD7BFC1F2F6B5FAD1AC23548FF29BC /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; - 04020010BB4EB875AFA599191099AE6C /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; - 0424CDDC45A89CA3CC3A671E2AF01117 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 0446A1D1479BD1219F3BDD5890752BC4 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; - 046787DCE49D0EB5D11B0CDDB4B15D7E /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 007106F680F48884D7773E7664B81410 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + 01450D05349CBE91F6E90AFB3AF15D54 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 02A9A7ACC2B0DB752282326997B6E330 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 02B01019E76A7B80F64C7FCA190EC4AF /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; + 02B1CCCF2CB07602A90A4E49C96117CE /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; + 031D80E61D89AC735FB167128831AA26 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; + 038D3B4F5D64700FE29C5674C7E7B1CF /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + 03AA771803490822C291C8574322B501 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + 03F5814BE651100C6704F6E311970CA6 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; 04FA90D6797F86AC296C2E3204D53878 /* QBCheckmarkView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBCheckmarkView.m; path = QBImagePicker/QBCheckmarkView.m; sourceTree = ""; }; - 050889920DB4C7A750B4D0F05D0BF611 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; - 050A747A47DF7C77909DB32ACC2B1232 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 05C784A300FAB4DB9E57A053E370F2C5 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 061729FEA5ECFD29FAE52F6326B31F6A /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; - 062AB2674601D74D1D5C262D9A679BFE /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - 0640EF9524D88E2CFB2B44E11BE3D6FB /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 064699AB1BE4DA00203D3A4FD6014C24 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - 06CE108430E1A0BCDE0154F90D03DE56 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 06E2D9E7CB9588499734C6C10CEB1328 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - 0709A71D59AE8F371641EFD11D6E8E41 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 07AED23F29777846BE24AF43410770E4 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 0802CCEE40B0CBE19DB8640AE8BFDF1C /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - 081CD5D3366AA96DFCD32A5F9386EF07 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - 086FECD444D2D4D96E6E7C4B5F9607E6 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; - 08C1F2C36BE3F2F2714B16D359E3BC0C /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 0911D294891270DB71A5B22E3FC678D4 /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 091CA047CEB1BE74933EFF10BD5B4D05 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 09A151C0E65F36CFB7132E9547900541 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 0A1D39A41BE67E3EBD07F183B827804C /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - 0A3BC17190AE4E89DE348C1E93BBFA11 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 0AF14569C855D974A9478DC5FF30DA2A /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 0BC6E0644CCBA488889A471E65B6F0A5 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - 0BD24BADD4C894A430BED60D1D2CE187 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 0BD65D7162FDFC2903C7529BE0141CFA /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 0C68ADAC6563981992ED70CAB73FDF9F /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - 0CBC9B8DCD174D77C57F426710FB1632 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - 0CDC1A093282C711672BE7709142B4B8 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; - 0CF81288F143A742B76A5BC43D16F994 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - 0D6D01D7E43A2F07286276E0B5241911 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - 0DDF7A1F03C877E8D2A79EC45A3904CF /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 0DE6F762B156FC0897B3B0888F30E863 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - 0E0E846C110B7BFC9C55D5FC0328E84D /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - 0E9A51FEA2F9A0573B01D47E067AE418 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 0ED00858C057A370F5E09C8DC30CF24F /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + 050C1CC92CA797E3460946DB43210911 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + 056EEA871740983F21D770D4A00EDEE4 /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 06524462D21612BA405D0029BB170ED2 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 081741F152BF40AB15D82EB34AE0CA0A /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; + 0932F22CDB4296763EE7729021801F9D /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 093D34DDDFEFB6BED9B48F2C4519A6C0 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + 09E7D873E4DBC2BAFC2D386A6388D859 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + 0A2DD45BD7BF47CFD3E9154A752A8CE0 /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + 0A71D51D81CBDB334A40BACC8A263A30 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 0A7FC87A4FD1B2D2DAC2239DD1A0D872 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + 0A8D3C59BD7A1E2FC65BF6333B0F8CD7 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 0B103103C75265672823000E638B1EE7 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + 0BD1D5985690469CBD8826C3ECD613C4 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 0CBC109DF9AF6A01596FC90E72E03ED2 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; + 0DB5BCB4A6DEB224D74A5469103205C2 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 0DCF37D985F06FDFDE7A4FAE506F32C7 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; + 0DF632BE62F995F2BEB1AD5B7CD76A12 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; + 0ECED868DBAE05B6D741AA4304999572 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 0FACF3ABB37493E481055A220301AA9D /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; 0FC1AAF4C1C593CB9718E6AAFA7E4ED5 /* QBAlbumCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumCell.m; path = QBImagePicker/QBAlbumCell.m; sourceTree = ""; }; 0FE949C754E333F8C4C3477429A3B570 /* RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropper.h; path = RSKImageCropper/RSKImageCropper.h; sourceTree = ""; }; - 100414BDFD5485704873CC3CB1FA496A /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 10068C32BEA66C0FA04AC954F7264B5A /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; - 1061D925EF6FBCCDA8D6C9357D51AF4A /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 105B36E9E39292A75D9B6557BD3C87E3 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; 106D25E0B273E65041047936D693A478 /* QBVideoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIconView.m; path = QBImagePicker/QBVideoIconView.m; sourceTree = ""; }; - 10C7E968D8636468177F7A44328C0F49 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - 10F246E2E16197F4BD43A1C60E594D67 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - 11F105DF8798B6056A556775A1DBED8B /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 1365C7F9B96D0E545454834D51E350F5 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; - 137B3802135416BE218BAF67690F10A7 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - 13C44300C6CDA1060DF9DE2841C4A452 /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 13CB399067D063B316CBFFEA51D319D9 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 13EAF7B0559738753836EF4E7FD8607B /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 14851341EC7B90FF31430228A56A85A3 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 1514BCFF806723F3369E864A1D960AD3 /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 109245FAA14A04EBC7E22043B342DF68 /* RCTTabBarItemManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItemManager.m; sourceTree = ""; }; + 10D3ACE7808DF6E9D91CAB6E07BCCFD3 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + 11AAA52EF7AA8A2A9D9C5EBFA290DC11 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; + 132256480C51E21B55F5FB71EDDD299C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 13383FA05F86840F23F93CE800139D40 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 1365E98D725EBCF0C6A651D5F02FA875 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; + 13CEED1EEC2F873D43A91BD4E0A460BF /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + 14C229A68D556C9B5A332B6C1C796722 /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; + 151D0B35EC9C8D9B597F1F651DB3A671 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 153DC4806249EB398C6F0231DB2A60CF /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; 1545B48DF462936EEC76060F3F8C7ACA /* RSKImageScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageScrollView.h; path = RSKImageCropper/RSKImageScrollView.h; sourceTree = ""; }; - 15463456B266A0762C311D9CF52DB0B7 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 15B1DDDF3B4B74556B4468F3BA616F71 /* RCTTabBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarManager.m; sourceTree = ""; }; - 1607DD12BD8A06270F983B548B406FBE /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 163F500A2FBA1AFFEE99AB93EF85455D /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - 1660931896F4E08BE1371259F79FBEC7 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - 17DCBD0E6D977B54929642A7AEF3C72C /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - 17EA99B983C926363B1EC204E3445359 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 167818A16531AFDA4891AC787E8BC0B9 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + 16B90CEBBFCAC08F9AC85CB67FCA878D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 16F870EFFA92742920217B66B0683D0B /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 17004E7303F6B9B0D0B7302DC46B8E04 /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 1774894313C68CFAFEF31709D575380B /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; + 17B40BA7BB44FC7D619B36DCAD886F4F /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; + 180C2BA8ECD1EAE88E6EBF9C26F34933 /* RNCUIWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebViewManager.h; path = ios/RNCUIWebViewManager.h; sourceTree = ""; }; + 184850666AEFB66BF1A6E8E5400E0802 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 1851FC7C08CF4D9F65A0B830D74DD3A8 /* QBVideoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIconView.h; path = QBImagePicker/QBVideoIconView.h; sourceTree = ""; }; - 188C43C9ED519A9F78C13CB971DB6215 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - 189617C12FAE564BEE73932E6D52355F /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + 1899D20E50ABFD84C0AFAEB4D9DCA26B /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 18B19C1CB22C4BFA90F8B1D72D60ABAB /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 18CA3F1E9C3217AA0AC954A18DF7C04A /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; + 18D7251EE633130E90E4EE1129D89EE9 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; + 19228B7BF7432D03962F5B186F3952C3 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; 1962F46F0D0CB088FB4A56EA553F4433 /* RSKImageScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageScrollView.m; path = RSKImageCropper/RSKImageScrollView.m; sourceTree = ""; }; - 1A3090463116C88A6C9966E24E7CE73A /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 1A5CF5FA988B17229356077A2A996E4C /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 1AE77C29439F76070DC40A05D35477B2 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - 1BCE42A6904C1B35538ED3C6E997E1D5 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 1BE7D33B8478DFC033C77554F627EFD0 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 1CBEF7C66A9A51F36011C0EAB6241095 /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; - 1D11931E01D5F80D53BAA15ED782DD6E /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 1D2FD843A4F0D88D80E17A87CFD2F029 /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; - 1E463D2EEDE2F62C3AE5AD41ECD54ECB /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 1F64B052A70EC6E90D7C37ACB7C2B806 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 1FCDBF5CC835B3FF3878371FEF73CBED /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 21E4D7071CDC82A3A328FFC3F4FAF068 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - 21F81D66B6EA927E43A4D37DBAF19A28 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 197D3585B75F30FD369E2A82B408FE6F /* 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; }; + 19D56C0E839D7D69363FE22C32FD7CAC /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 1A804032C142EE31372065CAC1A2AA40 /* RCTTabBarItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItem.m; sourceTree = ""; }; + 1B5328C966CC589AA097398B49B20578 /* RCTTabBarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItem.h; sourceTree = ""; }; + 1C1AF41318F98EA5D41F97C7140EC4ED /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; + 1D5C49BE7DBCE72939B0E0EE10F7CD56 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + 1E8682F8C7B00E226687BB57A7244A9C /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; + 1EE35783071590D220F121A3C2C1B74E /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; + 1F74F9E163381C593AF2808E62BA0B72 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + 1FC21E5C25656A7E369C98BF4FDDFDEA /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; + 1FF679F2EFC9A4CE2C48D5833D8D290B /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + 20B1B5ABF4238DFB01C104FB138059EB /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 2250147A437E5B9CF73DF5B62571FF88 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; 228D54461BAA29FC086EE3F93E7C462D /* RSKImageCropViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKImageCropViewController.m; path = RSKImageCropper/RSKImageCropViewController.m; sourceTree = ""; }; - 2329C6EB6D606F22E55F4A401677CEC4 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 23CA610514E110DFAEF8805100B31687 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 243E63D4F92E31506460FA18659B3928 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 246E7B152145E25934D9B8C75B9D5EAF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 22944D967E8EB6CC0C14478A7B6E9CFA /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 23080344C88F73955696F430C620948A /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; + 2322BF5E64B53570A24EC0025658B530 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + 242B4E3593FE134F318A4232019326F1 /* RCTTabBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarManager.h; sourceTree = ""; }; + 245B56988EA8730348619C4A866BFC27 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 24EDFD818F2EA4C5969B6C3360820CFE /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; 256941D9DFC96BDB77F031F670CDE98B /* RSKImageCropper.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSKImageCropper.xcconfig; sourceTree = ""; }; - 25A6F2FF5BC31E6E7D0ADF924ADE0399 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 25D726B05BBFBBA169946F59636D037D /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; - 25F46761DC95C1ECCFD898ACA00AA2A3 /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; - 262A9A88E9A69A6211E4C466B3787E0C /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 266D28A1E6266B9FBC6035DD0840235A /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 26867A52356E0E63067AA95C229AA7A6 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - 268E9C4072112085C179D9B26BC19537 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - 26FA148EB752C1AA469A0614DD03B23A /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; - 271D47AFE34420745B765D97B5BD2C76 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - 2742959020C0FEF901E710C95E8CD50D /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - 27ABFE44F568DC1AFC138FEA20E74234 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 27FA111CA719AA36E3D3176C76357279 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - 2812AAD92D43A3296DD971563DFC8557 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - 285861B2CC114A855A7A965EE0040E7E /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 297753943EEE1DEE81119FBECADB7CB9 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - 29B0E63E2BA66FDCF5267724E5831901 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; - 29CBAEB90E6FCC78BA53B4388D894C1E /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - 2C5E24D36FD56EEF31167538793FF2CF /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 2C5F4707B1ABCA2DC86B9A8EA10A7C26 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 25B7732D4997EA32D85381850FD1CBF2 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 25E1248CF61D4082EB9E43930E39EEA4 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; + 264A4CD8BD7ED996C1F4D20199624320 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; + 26EC2CA6352CCFE4506871E1522479E5 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 277AC889C0E5DD1572E3A3335A4D8EC6 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; + 282222649BEFDC72AD39AC87FF1AB9FB /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 282AB70396B8D15545B021BB549352F6 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 282CEB67535768C0A2E68C6BDA99BBB8 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 287ED15DF386D752B4D73961CA560BCA /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; + 291BBF50C34DC84A556905870AE6D230 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 293EA912FE28D7E135D509C0EE052703 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; + 29C18A6D3D94F2F989443D5C462C1DEE /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 29E060E959DFF0908DD3130130896677 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 2A41D46F9C682CD9E2CAF9F04B977796 /* RNCWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebViewManager.m; path = ios/RNCWKWebViewManager.m; sourceTree = ""; }; + 2A8F5606B00BB3EAA4E84E37290729DB /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; + 2ABBF629D1A5E3DB6C5B3582339FC46E /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 2AE27B19473F6E9D6C808E1CDD0F810C /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + 2B4F61B7AFBC5D4A521CF3B91BE89D54 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; + 2B79E7E5E8E66CCD65463D7EE7213FDE /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + 2B89A3B0ABEE8873B86A09E810EA0960 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageEditingManager.m; path = Libraries/Image/RCTImageEditingManager.m; sourceTree = ""; }; + 2B9DAF1089D5304595022A329893DEB0 /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; + 2BB6EEF25F9512D81D28413A025AACF9 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; + 2C1D0AEBC9283524EDDD7526D86CF9A2 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; 2C7C64308FC6B4B6E2827F842F943B31 /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CGGeometry+RSKImageCropper.h"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.h"; sourceTree = ""; }; - 2CEFD360C50C98161055F940F696285E /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 2CF204A33EAE0CA74D22C0E87BB277A3 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 2D69D55D37FC7F640BB6B79D69A1A445 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + 2CBCD76A780672DE949EFD8BE6514F6B /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; + 2D9517616A00C71EC8F7A231547A3BAE /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 2DCABE58B184BD9141075EEF8E7CC87F /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; + 2DDBBBA414BFAC6A91D4370940B807E3 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; 2DED20886B387C42D200FE78592D5C5E /* QBAssetCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetCell.m; path = QBImagePicker/QBAssetCell.m; sourceTree = ""; }; - 2F0CE0ED4EDA919AD256F6C7CC61C6B0 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; - 2F54ED452715CC564C1F8B274DF05AB4 /* RNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSplashScreen.m; path = ios/RNSplashScreen.m; sourceTree = ""; }; - 2FEF970155FFA4E30FA60F077543595E /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; - 3027A87FD2726D2E1B58AAEAEB3E47B2 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - 315C8987D27ECB700CD6C946149CE2C8 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; - 31739A837A079B730EDCA1E0B3C0C5C0 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 2E4E0DE8A52CF4EC9A38C3227E37E29E /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 2EC77E38AAB66BAFEBAEE673161E67F7 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; + 2ECE5370966031F9890293F54F2EC6AF /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 2F125717AF8A38AF8CF302C9AD863D8D /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; + 2F60BB9FBFF30D28896C62BD316F2712 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 2F9ADE592072E0FDFA7143E8774A26C0 /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; + 2FDC163C042E5D06810847431D4485A6 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; + 30164588906AD6BAC24E49E7375EB66F /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; + 30843AC296AB1AC7A4C631B4B514AE6D /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; + 30EADC9429885BF3DADA2942CE46CCA3 /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; 323058060B80C54EB738615E13165673 /* ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; sourceTree = ""; }; - 3262E064BB3F73889EB6EA975EBDF45C /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 325080D4F095CAB6488E5B3349816FF6 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; 326D7CEFEE9B87A85C748E473C489A22 /* QBAssetsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAssetsViewController.m; path = QBImagePicker/QBAssetsViewController.m; sourceTree = ""; }; - 329E7DF0659DC938075AD8A80187DFDA /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; - 32D4CEB33682DC80303DD7F911B23031 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 32D8F35C239F013503859993113DED67 /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; - 342855703A60646C6D2D88EF986DB2B2 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 351A8BCFE4A7213DCA63D7B0D0EF7453 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; - 357D19F4E487432210495DBB0D1A75F3 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - 361240A388C3A4891CCF12614ABE5435 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 337365E76AF6DBBB5BEB0E1558B14C20 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 34195E9BC139FCFC89A26A5247F9CD5D /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; + 34205552A63017B04C3CF4CD3B5B1BF4 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + 351AD5411A92B6C8CD044D5BE37EAEF0 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 354DF97F04E0382FBFA532281082452B /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 35CF8F44C47AEBB21AF361D8F3E87C12 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 3666B36FF9D733DE86523E57497C120A /* 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; }; 366EEC1616CA971876D9048470F62530 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = QBImagePicker/de.lproj; sourceTree = ""; }; - 36B66299CF31D00E22EF1EC76335ECF5 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - 36DDA5AF7C5E9130F7887D8A8DDDE9EA /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 3704EE64D78CCCB1714BB674D7012CA1 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 3712AAA3FDF0CF222FCE1CBC0F6D910E /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 37B60ABD0903E36916018E9968CEBF16 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - 37D37EB0A9B70591ED201D8811AAE3A0 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 385E0929E61834CC0A8D99CF9B482DDB /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - 39ACF32A37A629C7AFFC27C25CE034F8 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 3A8A3498EC9A70EA25125CF052517CE9 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; - 3A93865D02C7E096A714023D9EE59743 /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 3AA0868E7AEA6B309952FEF68C022874 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - 3AC0FC295B279E71F32C9D9A16B8CAB9 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; + 367CBFC3744CDF150D460E14B0B07CE8 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; + 3911C81A55838BB50F74077C14C5EC8D /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + 3926AAA6A1286454472C733600D78C30 /* DeviceUID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DeviceUID.h; path = ios/RNDeviceInfo/DeviceUID.h; sourceTree = ""; }; + 397BCFF7A7278FE3DCA8936E387FA5B8 /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; + 3993C647D4DB51C11E3E155729FAE582 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 399625AA5D67CCE07016A4427D9012DA /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 3A796E3FA7F8956F287FE8056D20B196 /* react-native-webview-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-webview-dummy.m"; sourceTree = ""; }; + 3A863FD623E1E24B30698E8F7E04F86E /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 3ACD84EF94FE131C73C77EA78D72D3C7 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; 3AD4F0204962AB6DD1DA22F8AA9CBCAB /* RSKTouchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKTouchView.h; path = RSKImageCropper/RSKTouchView.h; sourceTree = ""; }; - 3B32157A75D0C049113F71E8CBF7B57C /* RCTTabBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBar.m; sourceTree = ""; }; - 3B40326E311A8FF1845E092E47F48B98 /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - 3B8255BA12F3A3B66C97E4A6422D75E2 /* RNSScreenContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreenContainer.h; path = ios/RNSScreenContainer.h; sourceTree = ""; }; - 3BE1E20E2CDDF820C8410440A247B99A /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 3BFB2D2FCEB208184ACAFED5372EF5A3 /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - 3C30AE8206C396D40BBCFCA2260672AC /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 3C35E8291B46F1C8B58BB31370CEF565 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - 3C9EB9B7658939544C716600596FAB27 /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 3DC2AD3C0A2D215CEED41FDCAFB13FA2 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - 3DC8844D1CA28F7CFF10575E0FFE08C2 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - 3E1F1BFFEED3855AE9F27CDDADAF0DC6 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 3E2891A18293B2115C93A966CBB5E43C /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - 3E2D93FD43DA0DB543333C665D72F005 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 3E7C84D7EBB6A9BEF8B5E9AB111B8B0A /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - 3EC25D80B47D0F4C718BB04994D157F0 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - 3F0458AFF4435F5531C58B040C7A0416 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 3FE7C728DAABA5CB9183137453B05C98 /* UIImage+Resize.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Resize.h"; path = "ios/src/UIImage+Resize.h"; sourceTree = ""; }; - 40CEDB12A0B4176611A7B92F698981D1 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - 417B11918AE3693041FB5B101C4F6D7D /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - 418F3218003F8EA864AA505408324F35 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - 427DCBCBBC17065E30298E9F27FF2B3E /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - 4340CE76453F3D58DBC213F2A57B4C21 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - 4397519125D3EBC73DC10C399BAC5726 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - 43D77BFF15C71BBC0B692247F947543C /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 43E21722FD1595CEEC0C501900A8BE60 /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; - 4410405266EE3E4A35E117FDB030667C /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - 4463195CA502FA3BA21FF769C1C5F6CC /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 446FC8184A33BE13CA27EA7E3AEA1D8D /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 448FD17844FFC72B15E97C0AC910C5D5 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 45219F97D15BAEC20024AB09A3D17062 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 452CC0B743954130C31AE9C0FA3447AD /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 45FF04CD9C020D15A4E172B09E9B1B6C /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 46FFE90051DC023E3D60F19B4C21261C /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 47A195E33E073EB293C6FC190BB17BEA /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 48AFBCB5EC836DA24A806E76DA3F0E61 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - 491752B66059FFD63B78CBE51DC4D3AF /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - 4963E1E03DA7158419F3C736824C0F09 /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedNodesManager.m; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - 49F008DBFDD3DE07F91E97780EAFD91F /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 4A20EBA18C0863D5E9DA10416E985CF8 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 4AFC782E4F2F995690A2B0F592254941 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 3B67876F341128FC31B67D3AE531B2D4 /* 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; }; + 3BE709CBBDD416B06CFEBD7BD2307627 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 3BF54326DA25F4D7200AB01841993D1A /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = Libraries/Image/RCTImageEditingManager.h; sourceTree = ""; }; + 3BFD08FD2C76F2061C272C945E2894A2 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 3C643456F4751DA618214E3EB46B5E94 /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; + 3D224F2F48AF6105ED2AAF44B5A3FF7E /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; + 3D8AADCA51D23EFC48DF74E1028FC4DA /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; + 3EABFAE56D8151F22D493ABBAB766EB2 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + 40E048CE60DD0273CEBD902E431B30FE /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4139FE3A1DE9308FAD1ACF5434FBB4A7 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + 419F0F8AF4426DEA137186B0CB9D7E68 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + 42728EB7E00911840EB7DF9FB7565329 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 442DBCA6E7C4FF9522CF1BF62B7EF3BC /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; + 447A4575A49400ABCA0CA3130EB03E29 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + 44B46886B9419C5C10F650467E9D5271 /* RCTTabBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarManager.m; sourceTree = ""; }; + 44FC764D7F7089FBBE437F345D9838C6 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; + 4664EB61201313DEE8E58631060107DE /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 46D22BA65A87A2EEF2D5C14D1AE92252 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 478171618F6295A34DDC5B9D64FDE4CB /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 47F773669931163B565334C7BE66D82D /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; + 4812F203B1949F02FD0B03AA313F0CA3 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + 482D14CEFB0BA27B1F387B871E6C69D2 /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4A0717979ABF6BEFBE01C43D8B924125 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + 4A86730141980B58ECD4BE368350E9E6 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4AFCB9FFAAF3327D8A42C9DB58D499AE /* QBSlomoIconView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBSlomoIconView.m; path = QBImagePicker/QBSlomoIconView.m; sourceTree = ""; }; 4B5332C048394B2C0C9D439551B10FA1 /* RSKImageCropper-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSKImageCropper-dummy.m"; sourceTree = ""; }; - 4BC8EA45459138B5B3A88AF673353D94 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - 4C9E983A4ABA106075B6401F65435FD4 /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTAnimationUtils.m; path = Libraries/NativeAnimation/RCTAnimationUtils.m; sourceTree = ""; }; - 4D13063D3ED866C31991966AC6249F68 /* RCTTabBarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItem.h; sourceTree = ""; }; - 4EC67A7C3A0E43F29D0B6C81BD30FD0C /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; - 4F1304BB299C55DD50585663EE0AFC36 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 4F71F1BFA642FCB6BBB414644522E96A /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 4C1BFDBAB7FF79D89BAE098C2C7E5A96 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 4CD5EAD34FD7AD040F41A0E26EA046F4 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + 4CE93577BAF26F2114EF3CBC9BA67980 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; + 4D72FB0684E0D6D61FACCF26BC7A4C29 /* RNDeviceInfo-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNDeviceInfo-dummy.m"; sourceTree = ""; }; + 4D7FDB55F8E91B7145D0892BC6D30054 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4E71F7FA06E87DBC4CDF74D34CE3B408 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + 4EE053223414B0935323B97B9CCCD836 /* RNCWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebViewManager.h; path = ios/RNCWKWebViewManager.h; sourceTree = ""; }; + 4F0426240703B44EB99EF892B05415E9 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 4F22F1686F637E3B558D34E7315A04D5 /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 4F86E6FDFF14724A44D47FB658D37732 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; + 4FD38A3C22827D49FE94F00E69673BB7 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; 4FEEA791AF1252C10465E4FA22D12F31 /* QBImagePicker.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = QBImagePicker.storyboard; path = QBImagePicker/QBImagePicker.storyboard; sourceTree = ""; }; - 5051920349DED3C4DFA19C777BE759D4 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - 50D9482D45D23EB0BEBDECE87A9C4324 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; - 51C5629C67E5348D16F22F38BA4F03F8 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - 51D3B51714228964341961100DBDF0CA /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 52EE177FDCE7DF4F47320B2A2C2C8B5C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 531EC6426E5EADE07C43F3E82A081497 /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 5332D8878BCA59054858050834FEBB6D /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - 53724EBFA4575CAD65064AB627FAE8B9 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; - 5376860F2D5B2CECA759406A2E352821 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - 539DB4B4788C63E6A0610E6AAD7F990E /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - 53FCD763F52F8DC11781F46E9AD336AE /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 544C820A52F0195DDB9B912325E734B9 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; - 551A094E25264E98C3FCC519EB8083BC /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 563998BE08F0A4179BFFDFF2CE1079BA /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; + 5093A78CD0A5E2617B2FB300CF84578F /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 5148EC0E940DF626F16D0C2534A9C720 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + 51747483AAC76DF379B6EB76D3110220 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 51AE04DDD566AE55528339F5BC500439 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; + 51DADA9D79F0298E290A5E7115C13C0F /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; + 51F1A44A424A174C817A737C9F396672 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 5220C1AED11A44378DB20EDC255C6E98 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; + 5273D144181073C7911DA840A201D43E /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + 531B5BA23F414157657B78B33D1CEB42 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; + 53579CBAC70F2647A1371BC68F1B4C61 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + 53F337AEA64609394BCBE64E95EC535F /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; + 543CB5066EC48CE7DF3DB0B6D2C9537E /* react-native-splash-screen-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-splash-screen-prefix.pch"; sourceTree = ""; }; + 5445BCE93C132FA120CAC0C0AC93A49F /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + 54827B2BD7583B431B510AB896693511 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 55139F1A24AE0F430E5FEF83BA530C7A /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + 553EE800D5141FD8835628473E04050E /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + 558AB8AE68E0B06C18ADB16B0495CE54 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 559F978EBDD94324B988A4B878960567 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 55CEA31F466A7D8D04F0B54EEF4F79A3 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; + 562989699027A5C027EFC0E8466C69E7 /* react-native-orientation-locker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-orientation-locker.xcconfig"; sourceTree = ""; }; 5647A166E99D22BCADC97C2DCDE87F80 /* QBVideoIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBVideoIndicatorView.h; path = QBImagePicker/QBVideoIndicatorView.h; sourceTree = ""; }; - 571BB956F0696DD25BB14FF7D476E45C /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 581151D5E86C51A3B94E88050623777A /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 58A965CF696CCB21C81DB3CE0DF589EE /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 595BBBF07E4EF2CBF65B3E9EC70F9810 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 59D3AD5771B8AEDC9A266AC5D11FEA10 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 5A258B0B68B31283F7B6EBADE886191F /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 5697E59A3AD911F125262381459DBD39 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; + 56B147A6FE4A9EB724141940096579D1 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 57167C4F92E9A2EF9AC60F1043FD913A /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; + 58273BF605B14C9BCA9CB752A378B1BC /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; + 58A40F9D6693085CF8A3D2AFB7EF5FE1 /* RNCWKProcessPoolManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKProcessPoolManager.h; path = ios/RNCWKProcessPoolManager.h; sourceTree = ""; }; + 58B63F9ED7B4A782DCB58860BD3A52F2 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 58C917DED6CCFD5EFA71E1AC80696688 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 595E12691E7C47EA574D309111EA5789 /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 5989C6F67606EFB9A2E7F5A06198E2A0 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + 599D17A91B39465F126186EFB752947D /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; 5AD048465639525B81E23944B58005C8 /* Pods-RocketChatRN-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RocketChatRN-acknowledgements.plist"; sourceTree = ""; }; - 5AF578D55C54F5A8C4F54A00AA84BDE5 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 5B184744E87FE3807A5C7BAD14C965E5 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; 5B50958D7B3BD16D9D1BF7E918A3CD4E /* RSKInternalUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKInternalUtility.m; path = RSKImageCropper/RSKInternalUtility.m; sourceTree = ""; }; 5BC2A24799C6E3A434895E3EBC61CFA5 /* QBCheckmarkView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBCheckmarkView.h; path = QBImagePicker/QBCheckmarkView.h; sourceTree = ""; }; - 5C05BE1A76D838F8A6523A20E3676E77 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - 5C1DED7D50345575AAC6E62A39D8054F /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 5D32426FAF18CCF78BDE677F15FBD486 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + 5BD4C1700958C983EE57E62AB3A8FCA9 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + 5BDD76CC80F4AE34C80599246BF22DED /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + 5C65A6042AEB0006A029A9A051BAE0BE /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; + 5D18DBC081F996BF64C52D818652962A /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; 5D53984A8C06BD928E72A1ACF2FB336D /* QBImagePickerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBImagePickerController.h; path = QBImagePicker/QBImagePickerController.h; sourceTree = ""; }; - 5D8F79AD8E49996EA3B368852E1B1ACC /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; 5DF30EA38A340E7FD2E38AF1461EB5E1 /* RSKImageCropper-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropper-prefix.pch"; sourceTree = ""; }; 5DF782E4A8240418BAF45CBCD828460C /* QBAlbumsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBAlbumsViewController.m; path = QBImagePicker/QBAlbumsViewController.m; sourceTree = ""; }; - 5F0EF1F75094431978FCDE24FC45AFDA /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - 5FCCBDA26F090520AC7C264F5C3A64C4 /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 60171823D67B8B62843D4BD3E227494A /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 60EE79D660FE3850F9D81E129B799A07 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 619D398605F274F512A37005F89C47A0 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - 61AB2C57569542CD6BF181791BE67D18 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 5E4D74B2283D9ABC10D5E0978D903EB4 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 5E7B6B69F53ACC351D55118EE95D9208 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 608D2887DD5BDA8FFEF659C55F4E5927 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + 609D21210FACE41351840506BAF21F7A /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + 60D44DDE64087BB5BBF18A68B5A6597B /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; + 61378045AB18ABD55D340B7553A87F88 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + 6186E89C0F729828103AD75E44BB5746 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 61A4C5AEE8A97EE588904F23D6B531BD /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 621B6D4D55995888D2D3B7EAE31D4C61 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; 621DFCF4DD83F8E27C52EA25BA208969 /* QBImagePickerController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "QBImagePickerController-dummy.m"; sourceTree = ""; }; - 624F8EB63A914191A50FD2152CCB5F1A /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - 62C57694057F1333B1F028EEBB512FD0 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - 62E95488A15EC81935F4FFFE5C51E537 /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 62ED903F01938E7B3D3A63EB4BC4AFE1 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - 63038348EA4375E117E70C915F387709 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 635B42A2B758B27CACB17A0DAFDDAEB7 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNativeAnimatedModule.m; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.m; sourceTree = ""; }; - 650EBDC77ECF37144D0728C6534F6173 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 655ECDA00C0A57ADEA5A6ABC350DAE9E /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 65BFE3F4591E5D73F2C2579CC848FE47 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - 6619DF02B5F385F8DD192A93359BB4F3 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 672038C8083A8B4BA1E5775A5AFC9361 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 67EBA004DA6EEBA8F5551DF84B0C7D8A /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 6855ECC7BA797EBE0C57D6904E81611F /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - 68DC443D538B177D6E528650FFC6569E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 68FCAD0F17C38CB134DA66E2627D4F3F /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; - 69993B54631F2A0D8FBD7B1D2A6BDAE3 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - 69F489DDFF00380C81B1A59346478644 /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 6A94F5427F896A6D48200D66AA99CD3B /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+Text.m"; path = "Libraries/Text/RCTConvert+Text.m"; sourceTree = ""; }; - 6B444FBDAB366333F147188CA792893A /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 6B8FF757A593860E619F168BBEC5A7CE /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - 6BE2CD0861F9C164C7F5D72ECF27B5D4 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 6C206EB72E68002F23BE06399A7479B8 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - 6C95C2A4CCC95CA79EE80D0C3D42DEA9 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - 6CFF3186442B41E5439E05F33672FA03 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 6E51E8D7B3CDE4984FC843758832ECA1 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - 6F5D70922D132E811892B44688AE7500 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 6FF6B54BB13B7FA199A7D8D89D6BFD76 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 70498A1A5364404426AC5F72010C366C /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - 7059A0EA7E394745C48FE5A62D7162BD /* react-native-splash-screen.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-splash-screen.xcconfig"; sourceTree = ""; }; - 70F11985178914BB5CCCDCFB27AFF15B /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; - 70FB9D8E3A21FF6342AFABFD6FC9303D /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; - 71BFB7039D4CBAD01671C4E3DFBD36F5 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 71FF09946193A6EB5FF661F8F4ADF671 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 72816CCF5948D04DF784BFD60399DBEC /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - 7295B2B862324D5461B33741C5972161 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 740A644B2A6DBC6C47B77944E4298DAC /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 746E44DBB76CF4DB005BCE92DC8C8666 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 622A7FB6F322EEBF09E8C0339D00A65A /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; + 62CAE8CA3ABA2E0E77E95D9B4D114F0E /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; + 636379DA2165EAF1354686875952B932 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; + 63F3D3546AC8AC0DBF8FBF76FBAA4B14 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 64F9F0152CF9910465BEF868330C08EC /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 6624A16665F2DA40F84F0980A09C0868 /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; + 6699077C583B3122C5D811656942C327 /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + 66FEC191205C844BAD99E922E3405AC0 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; + 681B34E7FF585363FAB36E2AB0A9B1D5 /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 682698C1DA04FDC8F37003782FFD26AB /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 686CB85643DC17E5B35FF62D3087D93F /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; + 68E3E5C4BF9D4195C23733C897C2380D /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; + 692FB69D968F0294C618FDF9B05BFCAC /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 69BAA883C327921F649F4B1F6DB3DACB /* RNCWKProcessPoolManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKProcessPoolManager.m; path = ios/RNCWKProcessPoolManager.m; sourceTree = ""; }; + 6A9E016B1C0FB81691C394B3E728C123 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; + 6AA72ABF8A39D570E90ADBD7E1F35F7C /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSettingsManager.m; path = Libraries/Settings/RCTSettingsManager.m; sourceTree = ""; }; + 6B8423AD9CC4AD4C2B206CC827FB05D5 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; + 6C15295B083EB416486038D135B7C0E7 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 6C26AD1E06613F5016C12D3366CEC7EE /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 6C307E76EE75E3FBF41A05C2F83A6D3F /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; + 6C3679544E7976CC59468CCA9B034B95 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 6C60755C6A7B5584333368E68FFE859E /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 6C99AA16ADB18A2244D0DF813021EE97 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; + 6CC77D9F5275D0118DBDEB034A57F8E2 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + 6D0DBB575674A50524916E24866E1579 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + 6D0F1E6BB2FE39A8C71B500AEEBCFA52 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; + 6D20DB62D0F1F61AC148785320E11622 /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; + 6D7D6A977D3CC0942329CFB8AEE1056B /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 6DAED799040628A460307CE3F2790208 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 6E3A8CDFAF4E268DBD988791568FA420 /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 6FEC387D393A023670FBE6226536A383 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + 71AA2A5781BA84D90E165A9D9B90D8E6 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; + 71ADCE416A1661217BD257AD08498A2C /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 71FD511FC9AC54D56A14DA835C0B2D9B /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + 7209A78C09803F0F9DC64FB21037D900 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + 72F9A98E99DCAC23D9D1C6CF912FAECD /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; 750C7001455879D3BE259AE2894911A4 /* QBAssetCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetCell.h; path = QBImagePicker/QBAssetCell.h; sourceTree = ""; }; - 75CDD7F27A01B6F41948CD70220D0474 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; - 76130C7656896D95E8FCD32465BFB845 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - 767D8613D16D904151FB5389E109D079 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - 76DF5E97CD0DA9DB71A589FD0D9B9B68 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - 7A373FCD7A4A74E199129BA1D8259305 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 7B3AF6B20F433859B45CED4829D51204 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; - 7B6DBB63530C4C299A6660A08A74B1F5 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 7BDA32F18AAA1E9DED3AB89CFEDED5C1 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + 75D84F6136937F7DD46A78EEC77D4FE5 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; + 78074D7D1426B745159A7309731DB3C5 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 78FFED7CA6B12B78B28086F07D20D10E /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; + 7937808C0309A370C876D390F3DB1562 /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 7952664CCDC8DC6C5E28AB43D8C408B9 /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; + 797CA4FB5D0378B336872FCA78D43A0E /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; + 79D1777133980A9A0D733072C0C4133A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7B15620EF181E777414FFDF8ED230DBD /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + 7BC733EECC379610BC3C62A37E8E5FB3 /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + 7BDE7552FB0946A41A6DE62FD4130829 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + 7C5084EC930C8FFA526FA69EE17C0A83 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; + 7C81847F2FA8B6047E96591DEC10C30B /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; 7CBB70653DCBD6DD993B57C905751C64 /* Pods-RocketChatRN-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RocketChatRN-acknowledgements.markdown"; sourceTree = ""; }; - 7E17A7CFB24D7A38190D08E61C26F485 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - 7E1DDFC978C6E77D0A6F811908557BC3 /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - 7ECFD4785B8B4C3D6B9E066292066004 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 7F57D59936846D9831CBDB383093E9BF /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - 7F621CDAAFD4D33F097A90BE3B7CBF46 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 7FD23D6114588453E86E440A1AB696B7 /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; + 7CFE4D66324A45CF936AF40EB5BCA91F /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + 7D896E990158C05F46D5A54BB5B5D02A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 7DA5F4DE398E3106B44659688E03BF7E /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; + 7DD57D7A5BEAE0E2BC42B76A8BD7786E /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTBlobManager.mm; path = Libraries/Blob/RCTBlobManager.mm; sourceTree = ""; }; + 7E0BED73F00CEC3CF844BB00FBDC488C /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 7EB18F522F26150DA2122BC6ACFB575F /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; + 7FD8611849322CE76B4548FF0B4D769D /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; 800C6E7B55B718E4A1AC240A89EAE71A /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+RSKImageCropper.m"; path = "RSKImageCropper/UIImage+RSKImageCropper.m"; sourceTree = ""; }; - 8130538E8607C685C10F194D6B26D171 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + 80C5CD225D53424B349057E6B6CF29FB /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; + 81482E5A07A75A00AD0F863B8BF3053D /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 81DD551BA750A80BE5838AE345E34F65 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 81FB7B0431ABC4CB61023CE0B9D1FF0A /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; 8219E394CA395A5CDD142F6DE672EC2C /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+RSKImageCropper.m"; path = "RSKImageCropper/UIApplication+RSKImageCropper.m"; sourceTree = ""; }; - 8240EF6EAD398B639C64D85869287194 /* YGFloatOptional.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGFloatOptional.cpp; path = yoga/YGFloatOptional.cpp; sourceTree = ""; }; - 826E421BEF3EC9E0431C09AFA28E1DAD /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLocalAssetImageLoader.m; path = Libraries/Image/RCTLocalAssetImageLoader.m; sourceTree = ""; }; - 82A64A66E74500740B4A668AD3ACE0BE /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 83091F8332BEB1A0570BD29ED6AEBF38 /* RNScreens.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNScreens.xcconfig; sourceTree = ""; }; - 83827AE9D9BB8DE99A576B160AFE7981 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - 83C0EC665E9D1A034383DB0C8E6499D1 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 8682BD7390FE9F1E5F727B9F50FDA9E7 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + 826B33AB223AC07DD12D4AF36F5013ED /* RCTTabBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBar.m; sourceTree = ""; }; + 82FB3F7386DBC194789AED6B686989C3 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; + 830ABA858252EB68CB233B63E915C03C /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; + 831533ACD77445B09471BEC33A702535 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 8398F9B37B46C377312E98B1657DBFB6 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; + 84014793990BAABA22E72F991B9F4816 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 8465C6F9FDC53E0759FFDB6D5E2146B6 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 84815AB0B8BF07B5B39807A8CB2FB5B7 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + 85D18C1C2C119E0145F6820BB5FC28DC /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 8687273AAFA37E9B4866F40161D87469 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; 86A7ACA22A2B8A26BB576544CFD7EA35 /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CGGeometry+RSKImageCropper.m"; path = "RSKImageCropper/CGGeometry+RSKImageCropper.m"; sourceTree = ""; }; - 86D0E2114A2970137C854C7ADC47C651 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 86AE07833E9151D73607485D46347897 /* YGFloatOptional.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGFloatOptional.cpp; path = yoga/YGFloatOptional.cpp; sourceTree = ""; }; 86D7F10C760778CFCECA4DE2A5AE151F /* RSKImageCropViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKImageCropViewController.h; path = RSKImageCropper/RSKImageCropViewController.h; sourceTree = ""; }; - 874ED67387D772372100E6FF780E55A0 /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 87C3F358B6D852BEE70EC241DFC81065 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; + 8739EA5419C46224192B213BF0BF665B /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 875F12B7C0A3C300E311A8D1CD09724C /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + 876038ABD6AAF6D54C5C9CCF6277CD29 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; 87CB894B21A2A191298D49D966644804 /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = QBImagePicker/en.lproj; sourceTree = ""; }; - 87D94C3A893DFB1F134745713BA6F814 /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; 87EE112AB3510A06465DA033184F9F16 /* QBVideoIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBVideoIndicatorView.m; path = QBImagePicker/QBVideoIndicatorView.m; sourceTree = ""; }; - 88917A04E636745CEE774501525AA295 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - 8898DF34E3F974903D595C660E676A99 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - 88A8515B48974FC969F1E89169D5C201 /* RNDeviceInfo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNDeviceInfo.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8918C2BFBAFF24B55113088854A9AEE6 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 89958DF6A2D9D026B85FE231F20AE866 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 89A41F25F8E650ECF4D5708A6AC1FAE5 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 8B11ED4D8446258104D1377F660BC16F /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - 8C66EC017AA7FD72EEAAB27BEA5AC8CC /* RCTTabBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBar.h; sourceTree = ""; }; - 8CC37963EED2F382EF45842E80782EC8 /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 8CCDCF9C9168F9C19BBDA47A1D766C90 /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 8D2836E4F4E855395C40A83EF200717F /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 8D62AE4044E6CFD64A2AB246C5DC881F /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 8D7AB0E77E5F0B7023775103CCA2AC23 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 8D9FB422BB001864E8C32179A1D9D092 /* RCTTabBarItemManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItemManager.h; sourceTree = ""; }; - 8DDBB4580DAA6CF7E5DC989C33611559 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 8E3688E0ACC56D3C502E9E027BA483E6 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - 8E8851FC74C49CF67B397D2D019B509F /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 8EAEC203E3943497A80D2F2E7D5A9721 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 8F4AF6B32F98F24F4FC7A5A6804636DE /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 8F86C4E9BB8DC0124DE2D4774943E5FD /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - 8FB5BF8CCF5218DCABBE79DA9180C97A /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; - 8FE8B9EABA2735DD3C8ABFB0415C6B0E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 9051F78EC9F56B04741E5BF0277F3897 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 90769A2F883A02AEA0F512D5B138ABB1 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - 9118DFE411018AAC2439B34F30778B8A /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 91595E33BB3C3CC431C52475568C6F18 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; - 91DE9089174704B0641C37DBD70C4421 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 922C416B12FCFCAE2C5F23946EEAD847 /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 9240939567173E6C7F29842682CF45CE /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - 936F14168D95A9419E8B779532617DC5 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - 93CE6C722326B2C1FF33107568561C86 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; - 93DBC46C7D10469D70F4B166A6A278E3 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 888498C5027A162639AC6A4188A19455 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 894647ADF808930B31CB8078F2EDBC44 /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 8954F1BF82D4092C62087639FAA7F894 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 89FDE24C10828E5A12AC6121ACFDFDC3 /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; + 8A0F589F94E98F1AD5C3842F1990EEE6 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 8B24A41749DE1FC6735C71F943E8C0F0 /* libRNDeviceInfo.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNDeviceInfo.a; path = libRNDeviceInfo.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8BB5369944FF89FA300BD5CB7F9AFC13 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 8CFFB9B18315D87922FC827199D613D2 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; + 8D994BB4263BBEB87ACEBD7DCEB944DD /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + 8DE05D068610C1B865FE02215676279B /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + 8E25EF1B954CD88E25A9395EB704CE58 /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; + 8E76A763ACC79C2A0C087DF9980B82E5 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; + 9065291435C0C46627D841A11929417C /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + 9159A416470FF35CBB7057771C89FA52 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + 91ED0271979CB14C165D67E731E96951 /* react-native-webview.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "react-native-webview.xcconfig"; sourceTree = ""; }; + 9229D302BABA35C7D1A490345DEE9FEC /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + 92C76A94FA7D688503CA94B303A4D833 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + 92D8C13EE9F23194962AC5EE2A71D315 /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; + 93ABED37D4D19F43BC4E1146211516ED /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 944748437BA20739B0DA6D60197C7A45 /* ImageCropPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageCropPicker.m; path = ios/src/ImageCropPicker.m; sourceTree = ""; }; 946EF2BF8DEF610D01C4A772EEAE7A2F /* QBAssetsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAssetsViewController.h; path = QBImagePicker/QBAssetsViewController.h; sourceTree = ""; }; - 94C30DB1E5496CD92D0C8ADD86F8C27B /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - 956A21AB6B0CF1AAD8BB8CC3069FC8CE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 95A1E6FA137593B61116E00C4A895FD7 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - 9625F54D80E643C2A4143EFF98F1FB6A /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - 96AB82FD98DDDB55A6212950B4641009 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 96E21C135BC6C9AFAC403003CAE169B6 /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - 9723584C13DB4AAC329AF516B8FA9986 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - 977B4AE4FF0B805DF9FB61FE0307F26A /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - 9818F66342D8DA23D3C14BDFF9A71075 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 98D7287CA6BBC301A5266EE735C828DE /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 98D963A101F8936507EFE71622A3A993 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; - 98FC94670CE714EC8334757895FE042B /* 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; }; - 9968319623A16FA5FAEA1D88EB6AD654 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 9A3D85F2B9374FD1B58C3A12FB9A621B /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 9A7B40E2C9F45CF3F0E6D3C0C1491F8B /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 9A906B69A37E40A4ED5FF63BE6A91C4C /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - 9AA939205D04DA4ED4C4A20C8CE3849F /* RNScreens.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNScreens.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9B247E00598331D6C8E57431535A9AF0 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - 9B858B41CB0EAAA37C6E7CFAB771FE0F /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; - 9BAF820A2D0F85E58504C68F6BE00146 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 9BD00E773DC413A2D71CE3A1E10E9DD5 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + 95E18AB24FB8712691231B5872FBC6CB /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = Libraries/Image/RCTImageStoreManager.h; sourceTree = ""; }; + 96328B7DC9B1666E2D54084E5077B77C /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; + 96B9EDFED51F094D43F70B2EED8D5C45 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 96F58754C76F90FD989E223DF6E1A746 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + 96F827B30DDCFEABA57815C5B65454D1 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; + 97A686D78DA82DC733250DF15BA4D63E /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + 97A7BD83772915AD84B250B6C123194E /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 9871657A28E4157DCCB1920A8DEF0637 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTResizeMode.m; path = Libraries/Image/RCTResizeMode.m; sourceTree = ""; }; + 98FD2A6FD436DDE4BB46182D7CE097F6 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 993812F021DDC6477A2EFD5D32FFEB59 /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + 9987B243AE59F0B9319599B1DF9CF706 /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileRequestHandler.m; path = Libraries/Network/RCTFileRequestHandler.m; sourceTree = ""; }; + 99AA38EF12DC98EEA5173B204E42D617 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; + 9A93D3F0083F9E24BA91C4337D73B9C5 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + 9AB63477ED8EB46CD9394D78FB6727DD /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 9B2EEE3DB2F32EB1E3500DB7BD023A69 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; 9BECA47C45AFDA1069AA9FB874D372A7 /* RSKInternalUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSKInternalUtility.h; path = RSKImageCropper/RSKInternalUtility.h; sourceTree = ""; }; - 9D545FA0EC9BABACD3D7C47D741F2CCE /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; + 9C3BF3D01BB0AB4A96BB62704D4ABEAA /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; + 9CADF1CD749E90C297F7A0F2E5378085 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 9CC690CC5E5FAB10ED5FE884A6654E01 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 9CF186AAB3C603B25610EBAC7A86F220 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.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; }; - 9DDF0320508EF1DBD9B1444C77969C4D /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 9DECEDB095E3285F20F60C497BD31D3C /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; + 9E416D6EBA2DD62F7B7B40516C751CA3 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + 9EAF14BFEBE838682DC2E5391D574EC5 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 9ED791D95FE23C8E624E596ABDEBED7E /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; 9F3CBE5EF34FB2B0C576A8E5997DEABD /* QBAlbumsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumsViewController.h; path = QBImagePicker/QBAlbumsViewController.h; sourceTree = ""; }; - 9F998DF383F24B71CD95386D9D85F817 /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - A04967F27C92811B015FAEF929AC7822 /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - A146562F703870471C4135893C4FEEA6 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - A18579D1109D274B3733B89EA271454A /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - A1D18F26DBF3C996DD1FFC4C5A65787F /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - A3127B3031C0F3974045CE95A5A0B357 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - A33FC5B7552F5814C26C86B4D0C45DB6 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - A3AB23990432F627324E97DCAECB0AB9 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - A3B66D0CEB1FA10C46904324629D720E /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 9F504B008C3351DECD66B4C0C575D687 /* Orientation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Orientation.m; path = iOS/RCTOrientation/Orientation.m; sourceTree = ""; }; + 9F5E0ED700E0ED4F3EE3C12CFDF1ADB8 /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 9F910A57BD5FDB211E1A0F1AF4E0A7AE /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; + A172FB768A2031A78104D1D9C0FB7DDF /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; + A1F521BD5FF95018957FC17F4CAC724D /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + A2B9C06C4946A12EDB2E82D568BA24A5 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + A2EF99E696E558498A966CC434D2B479 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; + A353A3A72F967BA50182167855225BB5 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; + A383BAB79F02EC686B246E0E76A95CD3 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; A3CC6DFBA822A92A57AB068FEE8717F5 /* QBImagePickerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = QBImagePickerController.m; path = QBImagePicker/QBImagePickerController.m; sourceTree = ""; }; - A480986A266BCFB9782B8C2361A67ED0 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - A5045935E8692E253A2F45EBA27B55F2 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - A5414E0AA7C06AAB555A30487338E3F2 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - A66649A75AC5EE27F88DDC6D7670A608 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - A6D71E06BDD4CD5329DED13294AF623E /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - A74618E6B701C9AD87FB83A6050A5467 /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; + A3F3042202CC2ABD65302660F7ED79AD /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; + A3F5A1EB7C34EB7AFE6DBFD932A0FA04 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + A57B8683F0A32BE97E1EE2B181E51D90 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTActionSheetManager.m; path = Libraries/ActionSheetIOS/RCTActionSheetManager.m; sourceTree = ""; }; + A589CCC088FDD156C9CB50CE4022341E /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + A5B60669198820C2BFAEF5A476DA95B7 /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; + A7C3E128D6DEDDBD4FAE2634DFEE3AB8 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; A7EBD2199C28CAF29EAE45BF9FAF9209 /* Pods-RocketChatRN-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RocketChatRN-resources.sh"; sourceTree = ""; }; - A7EC0B2D5A21D30FEE6FE3E4AC78CEBC /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - A83156266BFD8B6C1005EFFDFC0839E3 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; A836C114C9DFF1C1A5A210722C3F678D /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = RSKImageCropperStrings.bundle; path = RSKImageCropper/RSKImageCropperStrings.bundle; sourceTree = ""; }; - A83CB151E3CE529F2FAFE98E386D63C3 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - A8566A097833C295CD8D9BE7B6D27C36 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - A856F4778BC833B74EE6FAB7688F73AE /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; - A85D19F52A8A3E03D576F447C82D7BB6 /* RNImageCropPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNImageCropPicker-dummy.m"; sourceTree = ""; }; - A8C46E70CCEA1F9540272BA793E9307C /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - A8E4EAC3A5076DF0F5018B58AF0762AD /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - A91C59F46DD17BCF65254D2DB4A7E2A2 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; - A9254C873AC173E76B1DAE455F06B7C4 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - A92DA40421587A9AB5BF53EE34C4401A /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - A9961A6D55D02DB57912ED7AADA62827 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + A8B15878A58015E8CB768BD825455308 /* RNDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNDeviceInfo.m; path = ios/RNDeviceInfo/RNDeviceInfo.m; sourceTree = ""; }; + A8F7F6CC0B163B82DD80281E52EA1313 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + A90C9426AC1E6DDE5CEAC29638C5B97C /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; + A9CB2869514173494452D3D4DD39F3E9 /* RNCUIWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCUIWebView.h; path = ios/RNCUIWebView.h; sourceTree = ""; }; + A9D9D5B8724455D2CD4D55827EA95A63 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; A9F3EEBC8F794B9CDC324BB9B3D5F622 /* zh-Hans.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = "zh-Hans.lproj"; path = "QBImagePicker/zh-Hans.lproj"; sourceTree = ""; }; - A9FB701B166EC19983573211D713A782 /* ImageCropPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageCropPicker.h; path = ios/src/ImageCropPicker.h; sourceTree = ""; }; - AAD89152C28A2161656B81B0777B24C2 /* UIImage+Resize.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Resize.m"; path = "ios/src/UIImage+Resize.m"; sourceTree = ""; }; - AAF944EF32D4A0552CEE83DEDC494C15 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - AB450DC3931569E165BA512CCE6CF561 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - AC3C720F8FE7C7061F7C71F2A5BB9EE1 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; + AA5F96C1B14073CFE0B42873BF563516 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + ABC61AFDC306B3FA85D2539304A85A37 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + ABFBCF8A4AE82247AE8A5004DA06633B /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + AC24ED5E140E9C69A692BBA8B6D34DF0 /* RNCWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNCWKWebView.h; path = ios/RNCWKWebView.h; sourceTree = ""; }; AC63AE48EE01936D927BE2A4F07C9108 /* QBAlbumCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBAlbumCell.h; path = QBImagePicker/QBAlbumCell.h; sourceTree = ""; }; - AC6E6CEAB04FA1B9D28B8E92B0BCAE44 /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; AC8553A09682A95B93CFA17A079D44CF /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RSKImageCropViewController+Protected.h"; path = "RSKImageCropper/RSKImageCropViewController+Protected.h"; sourceTree = ""; }; - AC9EC3A02B3A86E796C95DABC5A7381C /* QBImagePicker.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = QBImagePicker.bundle; path = "QBImagePickerController-QBImagePicker.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - ACCBF0D0C4E018CECF67AD077C544ED4 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; - ACD2D6915A2653132B2F66E01727D4D8 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + AC8E9DB8783388C82A695D9FBE7F1795 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; + AC9AFD5FD5F68D0EE8EC148F0108C8E3 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; + ACCC804F7543187FE4F1D3D4B5D99500 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + ADB14E28568416B1AF09ED816FD35829 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; ADBE2FDBD1D1162060D91C0F3617836D /* QBImagePickerController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "QBImagePickerController-prefix.pch"; sourceTree = ""; }; - AE55FF52E7F0EC0F0D392DF28EE6901C /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - AE8125E058BDF23E9CE0487A22496FD2 /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTFileReaderModule.m; path = Libraries/Blob/RCTFileReaderModule.m; sourceTree = ""; }; - AEB00451BAAC7D81526787EF1B8C5E59 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - AF659680BCFE5758A02D774C4A72A47F /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - B026137DEBC8CD6B5287B1513DA67637 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; - B1832FEE2B568DE53623A7008609D278 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - B1FAB5701F053C4D9616A0F8D43CA058 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - B230ADE88ACD462410387DAAF318B625 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - B25D7FF21E435E7DC275BC04CB0828A3 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - B2B9EF3FBFB01D2FD1525DE8A4EB8C5C /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - B318FFB4B464F78B39D6D0B54FDE97D4 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - B335D9B16D737CBCCA1081AC07500B41 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - B36F74975B1A86193358D4AB62FA86F8 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - B377A2EAB53ECE9B0864A99515A74C7B /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - B3B12911C2CF5118B398D0171B0B2C2C /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - B47E935B4EB0BE7E7DE38DCAB725340F /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; - B4BD5FB79973BC44F32633D02309002D /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - B4EBA67FC1D1E065D002614AC1C99E89 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - B52CB1ACB7A84D9FC0D03DC364F8E60F /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - B5AD1E403664B2FBC2E31957CA59ED57 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - B60E8C6820C0A94B4C8EAF59B2CB148D /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - B7823ACC8C0A87E33D2CD4CEF0C23373 /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - B7BECC67C175AFECCE05451B0E78C9DA /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + ADF91A248FDDB9EC6443E560C5A2ECA1 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + B01169859C74BFCB4140B60A24670337 /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; + B08EA4BC07218EEB63F08330615F40E3 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B12A5B6128E4589BE739593CD0326305 /* 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; }; + B13CD96481C0DAA4003F23409C85EC9C /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + B17455DDEBCDAB6DBFA64AF84EFE1EFD /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + B1B605004A5DBBDC276524CE58BF423F /* RNCWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCWKWebView.m; path = ios/RNCWKWebView.m; sourceTree = ""; }; + B32FBB4F06C2FDB6D4BE0656D6FF3710 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + B36F85AD4BC05A2024D44EDA60A6D862 /* RNCUIWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebView.m; path = ios/RNCUIWebView.m; sourceTree = ""; }; + B3A6ECB803C57E458B3C26594CC6CB57 /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + B48EF2679F2BA1A9379D3885985EDCF5 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + B515C1C42C5E9DB45B7CBAAC2DAFE63C /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; + B543EECF502E98DA81BA8C8F7A82F01F /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; + B54CE654674EE52CD7AE78D1BD90C6C2 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + B5E1CA190DB9995740BB707583E14E5B /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageView.m; path = Libraries/Image/RCTImageView.m; sourceTree = ""; }; + B6F020F55947D262B3EA515491CDDC46 /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; + B73E2576889B496EB3D1DCC329AC82A3 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + B7850B6FE476FCA82EAA00336C021543 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + B7879C6025CB82D3F29E4CEBC553949D /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + B7939382BDC2757193FD036D7288381D /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; B81995972E7AD3A939D5C02574F550A4 /* QBSlomoIconView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = QBSlomoIconView.h; path = QBImagePicker/QBSlomoIconView.h; sourceTree = ""; }; - B8BADA624381F97D9609FC92E1A428EB /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - B9E215D5BA187C1E5270FD0BEE4DE417 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - BAB07EA45C7EE54561929B4706389D44 /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - BB0A33EB1BE871263012A9963A882C8D /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - BB717D4B0308A909BE2F7D6676BB162F /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; - BBF06023ED87149AED7025398FFF0AFC /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTGIFImageDecoder.m; path = Libraries/Image/RCTGIFImageDecoder.m; sourceTree = ""; }; - BC9BB35D6305F97B38A96CEC76C34811 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - BE16BE7A6B0DCA9CD1B96485A5E9586A /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - BE2B217B325BE0BD8011F296B2DEDFC4 /* RNDeviceInfo-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNDeviceInfo-prefix.pch"; sourceTree = ""; }; - BE3DAEF86DC69F4DF4184549E6F596C8 /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; - BE74367AF82944722E235E75D88607D7 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - BF77EEC7468024B1C0BC1350883D457A /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - C006FBD3552C694CB2E6923E515731D0 /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - C09135E58DF63A82441A03FA131DE6D6 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - C0A2653B6B836DBFE838F5D4398507A1 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - C0A397D7C71A0FDA9A913234D1D13681 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - C16BFB5A6D3A1572BB975AD8E728567F /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - C1AFC694DE1E9FC489594C56F943A2D0 /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - C20106F7FA1FD2E499EDF3D7E68E28EA /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - C22C846D7C4C757A7DF814C629E5A332 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - C23FD66B46526F94BA6CA5B587D4E5B8 /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - C27E34634B993D92BEE38C5699F00473 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - C29707AD153DAEFDFA69D1AC32333711 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - C3F916E41B4827F6980C1DC4D4A60FAA /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + B82E3B17935DB9E0A68204FAC903DFA7 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + B84A027C1582D223B99C25FB1BE81A30 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; + B8952A71481F9D8BADB399E8BCC7816D /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + B92A7F07EA5460EA52AD8D6BE803DDCE /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; + B95347AA3066F698145FC492887DAA32 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + B95A973B5E20BB8E3A18BCA91D409A34 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + B9A5ADAA02A6B68C1A8F594466BE613A /* RNCUIWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCUIWebViewManager.m; path = ios/RNCUIWebViewManager.m; sourceTree = ""; }; + B9CE0E05B2C25E87D5B494DB07E598FF /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + BA2CD96327DDF85F57BE8EE813DD53B5 /* libRNImageCropPicker.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNImageCropPicker.a; path = libRNImageCropPicker.a; sourceTree = BUILT_PRODUCTS_DIR; }; + BC01705238CFCF7380681B0F05809440 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; + BCED19CD304E1E10542A82B64547EBDE /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + BDFD86B304152ACF9BC50AC0153F821F /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + BF53ED13C1003E0AC70141FE1193257B /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTDataRequestHandler.m; path = Libraries/Network/RCTDataRequestHandler.m; sourceTree = ""; }; + BF984B32F485CB58BC4A671D77475310 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + BF9E16CA6405AA488986CA2AE874D1AD /* react-native-webview-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-webview-prefix.pch"; sourceTree = ""; }; + BFEB0F127584BF6E2A6FB12C2B465B77 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + C03D76DB1C20A033ECEE3F81A6BB3E0A /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + C0C7940692ABD89BB39128A27F72A05B /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; + C16B164C02414F95AAB3F8F69B33D867 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + C1AFF362C1C24A3E0C0D9CE5AAC59EFF /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; + C2402DBC29E396FD752B27062D3D93B5 /* RNDeviceInfo.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNDeviceInfo.xcconfig; sourceTree = ""; }; + C2E9772FC46CB9DC5BDF04F1BE8D4E11 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + C3447E4E14DC5966D7514D3A32F9B0AD /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + C41C4FDE8A2F358750E8BE7349992CE5 /* RNSScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreen.m; path = ios/RNSScreen.m; sourceTree = ""; }; + C469F5EDC3BC8E115CE5253D3E8378A4 /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; + C46A061DA56871863EC348CDF41DEFD3 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; C48472A9024BBBA4569F1A9B24487CAF /* QBImagePickerController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = QBImagePickerController.xcconfig; sourceTree = ""; }; - C50B7769696A0A1A95A3E90A4B6CB4D4 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - C55291E9E75296D5EFFDC672D78489EF /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - C5645377732150F0C2AC31992A0F1D68 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - C66D23BD7FA291C2A420D26120802156 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - C689E64159AEEA40211F23D668343F88 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - C92312EB56D739328CBAC63D50763B7A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; - CA47993C4D12E636F3377D02DF673319 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - CA65D7FA7BEC50EFEB9C34C47B0E70B6 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + C49AFF863EC5E005223F1E79D997F9F9 /* RCTTabBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBar.h; sourceTree = ""; }; + C4F9B576690A3F2FB4461943D081DF11 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + C5E35835715A8A3C60E24C0BE203CBCB /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + C68CF94304AD589E14EFD1F113F994BB /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + C68F38858C1FF50749B7DDB146865E0F /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + C696230B5CCAD74B2597D307D859B5C3 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; + C6B762251B1EDCE8F1C94511FBB2AFBB /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; + C6DA940DF16C87C60FF8BD62997853BC /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + C72577C9106A42C93AC330A120556AFC /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + C7289B6BE376F166AC6B6712EAC562F2 /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; + C75DA7C2FA53ADD1AB6EE5C338D65C71 /* Compression.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Compression.m; path = ios/src/Compression.m; sourceTree = ""; }; + C7A5152B9D194B1E20A2DB3323144BC4 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + C878D9FA6B1739AD785A89C977C490EB /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + C8B465ADA6F79E7498D51C556753E3B7 /* libPods-RocketChatRN.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-RocketChatRN.a"; path = "libPods-RocketChatRN.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C93E60E56E803B321862FD5BCE20F8B4 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.release.xcconfig"; sourceTree = ""; }; - CB4BA7C36F89F24430912BF66FCED3B8 /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageShadowView.m; path = Libraries/Image/RCTImageShadowView.m; sourceTree = ""; }; - CB6710574E97ED0D0D6582CAE21FEB7D /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - CB6A6146E8A115DD82E6FBAC774D5A2C /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - CB7473CD253A910E0D3BC2CB7FD3ACE6 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - CBCE8244E0EEF1BAE24CE44A090A9928 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - CBE3851D96D8E8F8D371C469610FD5FA /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - CC01AC606AB9F3D427BCA0B135973E1C /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - CCAE0090B5A2FA4AEB464C1EC4B5E2D6 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; - CD31594B340A8531EAD91587DBD0B63A /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; - CD98AECFC927491B54D2012A3A8F7237 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - CDB7907065F35FE6E50DB29B145EE63C /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - CDCA26F32B695C0B132DD03CA73D687A /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - CDE191B4B16553C60A4892F804BCDEAE /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - CE21E0024EEB3B2BA0DDFEC2E89C4915 /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - CF3DD77A8E7F9255EA71D5CA582E77B6 /* 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; }; - CF6BA97244BB424AF032C6913D41D451 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - D0530A6773039FABBA72DB3A990536E2 /* RNImageCropPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RNImageCropPicker.xcconfig; sourceTree = ""; }; - D0CAFA721BC8F6010A3290D681C8AB49 /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = Libraries/Image/RCTImageLoader.h; sourceTree = ""; }; + CB53013C3D85FACAF84C8E6018CF1351 /* react-native-orientation-locker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "react-native-orientation-locker-prefix.pch"; sourceTree = ""; }; + CBE961F6D798C387C84B71689FE8603B /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + CD2DC9A8364E1EBA0C8A12C19EA7774E /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTNetworking.mm; path = Libraries/Network/RCTNetworking.mm; sourceTree = ""; }; + CDB75CAD63BB23C62045E3B4049E1501 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + CDF2D621E8F7FF59C22909D0D2FB312C /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + CE1F36B82A0BC45FE9377D6AD8D014FB /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + CEBD1D86284CD1ED68EEBFCF2170B2B1 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + CF8DF940E2113769EEAFD624DFC6D377 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + CFB6DD39BEC27A2FAF13C106369D4154 /* 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; }; + D12DBEB6F0ABB8B80D05D682DF1AB303 /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; + D1510692E93A84B4BD0DC1EB067E74AF /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; D20A73060988F89E67E16DD8B6596186 /* RSKTouchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RSKTouchView.m; path = RSKImageCropper/RSKTouchView.m; sourceTree = ""; }; - D2D2277D6213BC53ED346884F70F684C /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - D35F3C1DA14317D66C0E46EC353E7BE0 /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - D3D2E7D9EB92ACAC1A30786A65F42162 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - D4D4AF31953A8E6A7F9EEFF15FBCBA7F /* RNDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNDeviceInfo.h; path = ios/RNDeviceInfo/RNDeviceInfo.h; sourceTree = ""; }; + D366ACF43470CE19F1E49FA248B5F7B4 /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; + D367AFB0BB19FCD54E8E1E2D0681229B /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + D4B353DD08C8AFA2C72CC2CD13EB21DC /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D4C09830BA97883A3E92315BB70D96D5 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + D4DBE73FB2F08FFA9D4ECA31315B768D /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; + D50A7CFFB31136C471526E4DBBD60A1B /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + D50C5C6FEF2C1158391FAB1AFD1F3847 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + D5108B70B861F199A48876813618D9E9 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; + D5392B2572B80606458B3795CDE4C2BD /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; D54EA6BF19303D981BC3776DA10327D5 /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+RSKImageCropper.h"; path = "RSKImageCropper/UIApplication+RSKImageCropper.h"; sourceTree = ""; }; - D5E63CBD1E38651A82BA99901D1DDA92 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - D662B10043F241ED5DB4E8DFB4F8E81E /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - D6843CACF833347A22F3D0154032CCD3 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - D81D4738D4DEAFE8D0440D17925951B1 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - D845E6AB039F86886CD857B0D100C918 /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + D5C5DE18C41C30B7F350D3681477A40C /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + D6EC3F0ED686A454E0E08EB21FBAE5CA /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + D726D71B3433F1DA767E4C1F1D99CF1A /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageViewManager.m; path = Libraries/Image/RCTImageViewManager.m; sourceTree = ""; }; + D797009DA045D8676FC128DBC4E3E4C0 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + D7A47AE3BD6509C48AE4AA95663A9454 /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; + D7A4AF2DD5E45991D1534A03D0374784 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + D7A72C74AC0EE624922DEBD55175E27A /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + D7B060B44C2BD56A2E967ECC3A1410F7 /* RNSScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSScreen.h; path = ios/RNSScreen.h; sourceTree = ""; }; D851F9A0A6FD322CB934770AADC542A2 /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = QBImagePicker/es.lproj; sourceTree = ""; }; - D9088966D0A5BD33952D523C2E522849 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - D93F3AE9D1D78F5DC67A097857960EC2 /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; - D954952372395B97ACC6EDEE83062EA2 /* RCTTabBarItemManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItemManager.m; sourceTree = ""; }; - D965292EFF62ABB4EE03B4F76B5D7B3C /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; - D9C40E022305E79A22E0929DBE1BA1B9 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - DA2EFA9AE89E1114DD9EBB8925871E7B /* 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; }; - DB0BC583CB135236EA364C2C5B64CA3F /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + D85307A994B891D45849A9E32CB70D90 /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + D866ACE750349C23951D39B4138287D5 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = RCTHTTPRequestHandler.mm; path = Libraries/Network/RCTHTTPRequestHandler.mm; sourceTree = ""; }; + D8BE7210CE931A34038844E55D1068E8 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + D92283A6F5EE4D31805DCFC83EEF951B /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + D98670251CE56461121F8B24E4AD1434 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageStoreManager.m; path = Libraries/Image/RCTImageStoreManager.m; sourceTree = ""; }; + DA3F359034C16522E4CAF14AA5DE7F7C /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; DB0F0FF6540AD1437196AF2AE8948FD3 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = QBImagePicker/ja.lproj; sourceTree = ""; }; + DB1760AFCF23AF32C8D3C572848F8171 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; DB26A8DCF5A6E3B4A1BC4152C6D9DC6C /* Pods-RocketChatRN-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RocketChatRN-dummy.m"; sourceTree = ""; }; - DB5FC833E29AF196E7720E488CDA3395 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - DB777882BF18C387FFF2CBF0CBE5E654 /* libRSKImageCropper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRSKImageCropper.a; path = libRSKImageCropper.a; sourceTree = BUILT_PRODUCTS_DIR; }; - DC725498384BC48FBEB9F1AEF689B413 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTVibration.m; path = Libraries/Vibration/RCTVibration.m; sourceTree = ""; }; - DD8B9039A3ECBAF3D750D3301458315B /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - DE8FE4A41F05BE8D83590DD6382A7FDC /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - DEED1E11E500C444D719803E8FA301AF /* react-native-orientation-locker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-orientation-locker-dummy.m"; sourceTree = ""; }; - DFB8E920A2DA14D79972FCE537306B3B /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - DFFCB4F8CE406E457AA2EE9FCBFEBD05 /* RNImageCropPicker.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RNImageCropPicker.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E050284EA349A78C0AB314A61EAE1B81 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - E0D20E0D349823CDAB2788249CA41E6F /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - E12DB51E268F97950FCD638E17021A7C /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - E3665B023408332A39787B4A94A390AA /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - E3AABE31BC3425049FD4616034256F30 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - E41D573E3B53EF4D2BAA047A96FF6510 /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; - E42C5611C2E78039F2DBC5B7E4EF8842 /* RNScreens-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RNScreens-dummy.m"; sourceTree = ""; }; - E42C952C62624B6E9214A9FE7D19D27F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - E531EAA17DE0F69BFFFD218316444639 /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - E574F27D079F4550B79C0AA9B471FF25 /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; - E66536607DCEAA7AA1BB7AF4EAAF5281 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - E66FD8BEB2EF88EC064284128626B228 /* fishhook.c */ = {isa = PBXFileReference; includeInIndex = 1; name = fishhook.c; path = Libraries/fishhook/fishhook.c; sourceTree = ""; }; - E77478272C0E636EC4B9B73FA81334AE /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - E7D1AB9485C44C8BA81BE7615CC094F7 /* RNImageCropPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNImageCropPicker-prefix.pch"; sourceTree = ""; }; - E8A9DDC85EA80E57490DD6044476DF87 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - EA96A939FD06B99DE391DFD94F7E4C9A /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - EAC0E568103D10BEDCC837BFE7AFF027 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - EB6270FFC5AB407CB9BFE1AA7256CC47 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageUtils.m; path = Libraries/Image/RCTImageUtils.m; sourceTree = ""; }; - EBBDA5D2BB268936466B92CC19310FBC /* RCTTabBarItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItem.m; sourceTree = ""; }; - EC82E72F96C8D52E9C3C71EC9221F11B /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - EDFB3FBB81DD62BB8EAF443CBF1543A8 /* react-native-splash-screen-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "react-native-splash-screen-dummy.m"; sourceTree = ""; }; - EFA54538ECFB82A89BB6F9EB0CD8051B /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - F0D5A41E5836CBD801A7E83428AC8B9A /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - F111B161C7A93FDAC808A2C8339651B4 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTTextAttributes.m; path = Libraries/Text/RCTTextAttributes.m; sourceTree = ""; }; - F146060A12B47C0969AF604FB6DC32E1 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - F246C85E16D641384A6BEEA703F2D783 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - F268146C1C7C9786D95E98F8E625DB0F /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + DB57696EEB1389B1728667670DD024C1 /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; + DC28CBE63DE198CCACF1DE3BE5E11358 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; + DCEC0C7571FA309C5A5ACB8D659FAFD5 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; + DE3DCBAA8BD8F1AB89DDBB4E88E0E618 /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + DE7875CD5CF1B647F652B1428B89A287 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + E0598B0F8A05F82F6334CD516B7C8F6C /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + E1146FEABBCCE2FFF8BA69C8E267D6BA /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + E1982DAFAE670A202469DB8C1C9AA92C /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + E19857AE13EF29A5EDB1664E5A112A24 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; + E1E85D53C6FDB812D8AB1E03BE43841B /* RNScreens-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNScreens-prefix.pch"; sourceTree = ""; }; + E1FDDA5928388E9AD1C2D79B6849872D /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + E2E658A6F60E2A24D273B97BD67AA3D0 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; + E2FC1854499228193D6DA848079460D8 /* RNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNSplashScreen.h; path = ios/RNSplashScreen.h; sourceTree = ""; }; + E39639E19550764150D20775CBD5ED6B /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; + E4259B9278DE4854C950EB531DA83B36 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetworkTask.m; path = Libraries/Network/RCTNetworkTask.m; sourceTree = ""; }; + E427295135C0E9D46AEA0C4B64F41127 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + E4CEDCB2ABBBBBD4E68585CEB122052C /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + E4D0D8915AD4797A0E7E6F49D1026DE7 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; + E500064DC0DF67476E22D327710259C9 /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + E59BC1CDD9797D80EA8139F6DCC53E93 /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + E5C445C89347660CB981512D3B7614FB /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + E5FC14883D5AF19F7C1070C9D6A6F780 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + E6049D31257C782F79AB8A2CB37084C9 /* DeviceUID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DeviceUID.m; path = ios/RNDeviceInfo/DeviceUID.m; sourceTree = ""; }; + E6304B1B80954C32DC37C2305B28C93C /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + E6443E04FCDBF2C64D8584A993541946 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + E7E464FFA399AA65092254914BB29CE4 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; + E7EE291BCD5C81901E897364D7B341E9 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageCache.m; path = Libraries/Image/RCTImageCache.m; sourceTree = ""; }; + E7FF6267A04029A18D6884080A2A8B02 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + E91541882E8884B2E4D48327C3E8A6B9 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + E97AAB7BAB71E64DB9933F436F5B2B76 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + E9DC26E11673AE9E5204666AEEDDCA9E /* fishhook.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = fishhook.h; path = Libraries/fishhook/fishhook.h; sourceTree = ""; }; + E9DF20B10C54A9A3EB51486DF606A2E8 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; + EA0F695C1662E226578AB60AB755C27D /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + EA5F51865F3B67A25265473FDD4A22BD /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; + EB5EE2E52B47F15752996BBF327EE64B /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + EBE6DF08467CDF7BE8B09172CF4EC433 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + EC6D9A7CC0CE4F8256CFDE1DC5D1C798 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + EC9A2F7D6D852520F5227FFF5533C8E5 /* RCTTabBarItemManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItemManager.h; sourceTree = ""; }; + ED1E2F004C930381B8E3AB0265762C59 /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; + ED33B03C3A9A9F3EC111C9A015196B19 /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + EDB994FE44EC0BA0226F4B57A786FE22 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; + EFD66DE7811349792472487E019F6C4B /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + F077D0CCE39071F62001185DBCEC6328 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + F144389B7FFF3B09A5FA2D63346073DA /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; + F1EEDECE83DC80AF5018C7737036CD2D /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + F1F67288EB3C4ED90D685B1B3560195B /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; + F28A360DD08BF71F075F387CA4CB795E /* 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; }; + F301A9430E07574B1D59789731FC58E5 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + F3CFB68C8CDB753F565D6AE3758477BE /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; F3F4617FBE7B67A82D916E2DE1B4BF04 /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+RSKImageCropper.h"; path = "RSKImageCropper/UIImage+RSKImageCropper.h"; sourceTree = ""; }; - F72FBA9500CA6A95B57377539D4EDB47 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - F74927D59C3926FDC30F224101226302 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - F8492AFE2760871C40F64DDD59AC19DD /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageBlurUtils.m; path = Libraries/Image/RCTImageBlurUtils.m; sourceTree = ""; }; - F8C66FE78B0700BF69630740142E7062 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - FA6C8BED4536145B3A3F6C5A32EC10C6 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - FB310A9210510C53E3B3CA1997310591 /* 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; }; - FC46BFE40D12E7216DDFE182392D18CA /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - FC755C85A89B676B6C121B03FCDDB5A4 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - FD8AB2891C8F6F69E875EE2777013F19 /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - FDB8C13E5EB0226E6C9CAD84F7D0BCF1 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - FE5FBB652F2FD39AAB0D1318AD3D010A /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - FEE6B06681B746489883625FCED01A3B /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + F41C99C4D94C7F6BC004542EE00A37FB /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTLinkingManager.m; path = Libraries/LinkingIOS/RCTLinkingManager.m; sourceTree = ""; }; + F520BA72845E35631BC0D2A55D35DCF7 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + F56BC9C2794410F266CC8239FA08ADD2 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + F5DE58B21EFB233D34A6D0EDD41D6C41 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; + F5FB151ACF607775DABCFC35D39637C2 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTNetInfo.m; path = Libraries/Network/RCTNetInfo.m; sourceTree = ""; }; + F68E836505A6DB028D7DB98CE14267D8 /* Orientation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Orientation.h; path = iOS/RCTOrientation/Orientation.h; sourceTree = ""; }; + F69B833377807B7490AA835EB28A7E2F /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + F712AB418536C6F0A45E32261ACDA068 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + F8690C9A69628759EB79791D0904F5FB /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; + F8750E0492B50455F7F104FF36A1E41D /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + F93FB78F75493312E7E973423383A0D3 /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; + F95E30AB79072AA1B8A982FFB8E8DE5C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + F990D9E7D56D1CEDB80565ABCC62319E /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + F9B35CE3BFEC2A43E063722B57599A2A /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + FAB94A92D6A7096AA15EEB732E3930D9 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + FB16985C29FEFA71FC073914A9701EF2 /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + FB40EC1F138B803DF8D6F38AFB31424E /* libQBImagePickerController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libQBImagePickerController.a; path = libQBImagePickerController.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FBD8ECD45C20AD507724D1C463351907 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + FC68B38D4F5205C550B768BCEBD707F1 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + FC7D7FA94CB9215948D678D7F67543A6 /* Compression.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Compression.h; path = ios/src/Compression.h; sourceTree = ""; }; + FD5B499388656B3A9BE25DAF1BC7016D /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; + FE1214656372443D0286EC9E1C799679 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; + FEB1BFDFB054FC6E4530C5D197A36027 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; FF36BF4F706AA77F33A0FAC553A39934 /* Pods-RocketChatRN.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RocketChatRN.debug.xcconfig"; sourceTree = ""; }; - FF69AA81BD6436CE430CBD1DA1E482E5 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; + FF8111B75B4A8803F18264B5D3583DA1 /* RCTImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTImageLoader.m; path = Libraries/Image/RCTImageLoader.m; sourceTree = ""; }; + FFD57E65764A25A633CCA4DD2EF2CE47 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + FFF42BAC23BEA73CEC8856ABF358DBA8 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + FFF827A7D0D6DDC7FEA34B121DF017A3 /* RNSScreenContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenContainer.m; path = ios/RNSScreenContainer.m; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 1D3F0450A37848E70ECC3765E1BD5174 /* Frameworks */ = { + 16AA0E636764653CD9EEB644BF7CB3C1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3EC7F9568F261B8D51FC2394C524A7AA /* Frameworks */ = { + 1B3F141421411FE02B3D41666529677B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 65C218B1C02ECF758187DA2946803711 /* Frameworks */ = { + 2DA5EEF6424722C24987958D529D353A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6AE9040C1D6691A0D9110B661DDA4596 /* Frameworks */ = { + 599A077123E4322D13DC51E44AFAA228 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 918FEF639F5284E9E4E13449B7F17F60 /* Frameworks */ = { + 638DB6A61758DD83F606A91EE1A3479E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BA05E5061429D7A34BA7DD17C16DAEF0 /* Frameworks */ = { + 66ED15C7FB0DFE11324921D0BE151D18 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BFD95BE56D06541A447B8B03DEF5C39F /* Frameworks */ = { + 67308751D52755AE5474799C90A78BBC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C345A4CBE44E4B1D1232419ED405C61E /* Frameworks */ = { + 7A0752AAA8A12F5532E3E6176CC3D1D6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C6B031BE3831DEA481D4A0F873F779E8 /* Frameworks */ = { + AF15A6B958F3D3846F1E7B654EE8F48E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E0B46B1BC0F2352C776E66EB0B112573 /* Frameworks */ = { + C3DB009D1A56CDD1050410C95EDE0549 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C9624BFC81B7E472A23042F739A41171 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -861,92 +910,80 @@ name = Resources; sourceTree = ""; }; - 0DE0AF76D26BFEAC006DA32AB148AB85 /* Surface */ = { + 0C700CBDA9ED5D411A587FC6A3917F3F /* Nodes */ = { isa = PBXGroup; children = ( - 4397519125D3EBC73DC10C399BAC5726 /* RCTSurface.h */, - A3B66D0CEB1FA10C46904324629D720E /* RCTSurface.mm */, - 8F4AF6B32F98F24F4FC7A5A6804636DE /* RCTSurfaceDelegate.h */, - 0709A71D59AE8F371641EFD11D6E8E41 /* RCTSurfaceRootShadowView.h */, - B1FAB5701F053C4D9616A0F8D43CA058 /* RCTSurfaceRootShadowView.m */, - 297753943EEE1DEE81119FBECADB7CB9 /* RCTSurfaceRootShadowViewDelegate.h */, - 60171823D67B8B62843D4BD3E227494A /* RCTSurfaceRootView.h */, - 9A7B40E2C9F45CF3F0E6D3C0C1491F8B /* RCTSurfaceRootView.mm */, - B9E215D5BA187C1E5270FD0BEE4DE417 /* RCTSurfaceStage.h */, - 8F86C4E9BB8DC0124DE2D4774943E5FD /* RCTSurfaceStage.m */, - 11F105DF8798B6056A556775A1DBED8B /* RCTSurfaceView.h */, - B4EBA67FC1D1E065D002614AC1C99E89 /* RCTSurfaceView.mm */, - 4A20EBA18C0863D5E9DA10416E985CF8 /* RCTSurfaceView+Internal.h */, - 127BC806F633AE7ECC0AAF148E5F07CE /* SurfaceHostingView */, + DC28CBE63DE198CCACF1DE3BE5E11358 /* RCTAdditionAnimatedNode.h */, + 2B4F61B7AFBC5D4A521CF3B91BE89D54 /* RCTAdditionAnimatedNode.m */, + B6F020F55947D262B3EA515491CDDC46 /* RCTAnimatedNode.h */, + 44FC764D7F7089FBBE437F345D9838C6 /* RCTAnimatedNode.m */, + BC01705238CFCF7380681B0F05809440 /* RCTDiffClampAnimatedNode.h */, + 1EE35783071590D220F121A3C2C1B74E /* RCTDiffClampAnimatedNode.m */, + 264A4CD8BD7ED996C1F4D20199624320 /* RCTDivisionAnimatedNode.h */, + 287ED15DF386D752B4D73961CA560BCA /* RCTDivisionAnimatedNode.m */, + 18D7251EE633130E90E4EE1129D89EE9 /* RCTInterpolationAnimatedNode.h */, + 66FEC191205C844BAD99E922E3405AC0 /* RCTInterpolationAnimatedNode.m */, + 75D84F6136937F7DD46A78EEC77D4FE5 /* RCTModuloAnimatedNode.h */, + F144389B7FFF3B09A5FA2D63346073DA /* RCTModuloAnimatedNode.m */, + B543EECF502E98DA81BA8C8F7A82F01F /* RCTMultiplicationAnimatedNode.h */, + 3D224F2F48AF6105ED2AAF44B5A3FF7E /* RCTMultiplicationAnimatedNode.m */, + ADB14E28568416B1AF09ED816FD35829 /* RCTPropsAnimatedNode.h */, + 89FDE24C10828E5A12AC6121ACFDFDC3 /* RCTPropsAnimatedNode.m */, + 7952664CCDC8DC6C5E28AB43D8C408B9 /* RCTStyleAnimatedNode.h */, + ED1E2F004C930381B8E3AB0265762C59 /* RCTStyleAnimatedNode.m */, + DCEC0C7571FA309C5A5ACB8D659FAFD5 /* RCTSubtractionAnimatedNode.h */, + 7DA5F4DE398E3106B44659688E03BF7E /* RCTSubtractionAnimatedNode.m */, + 5B184744E87FE3807A5C7BAD14C965E5 /* RCTTrackingAnimatedNode.h */, + 2F125717AF8A38AF8CF302C9AD863D8D /* RCTTrackingAnimatedNode.m */, + F93FB78F75493312E7E973423383A0D3 /* RCTTransformAnimatedNode.h */, + 78FFED7CA6B12B78B28086F07D20D10E /* RCTTransformAnimatedNode.m */, + EA5F51865F3B67A25265473FDD4A22BD /* RCTValueAnimatedNode.h */, + 0DF632BE62F995F2BEB1AD5B7CD76A12 /* RCTValueAnimatedNode.m */, ); - name = Surface; - path = Surface; + name = Nodes; + path = Libraries/NativeAnimation/Nodes; sourceTree = ""; }; - 0DF7B2F5B385405D759D59FFE271A414 /* Pod */ = { + 0D5054673D1C1AD62B9ADF2CB47108B1 /* RCTVibration */ = { isa = PBXGroup; children = ( - 956A21AB6B0CF1AAD8BB8CC3069FC8CE /* LICENSE */, - FB310A9210510C53E3B3CA1997310591 /* react-native-splash-screen.podspec */, - 52EE177FDCE7DF4F47320B2A2C2C8B5C /* README.md */, + 5D18DBC081F996BF64C52D818652962A /* RCTVibration.h */, + 96F827B30DDCFEABA57815C5B65454D1 /* RCTVibration.m */, + ); + name = RCTVibration; + sourceTree = ""; + }; + 0F2C849834BACC5608C88E4405D258BC /* RawText */ = { + isa = PBXGroup; + children = ( + E4D0D8915AD4797A0E7E6F49D1026DE7 /* RCTRawTextShadowView.h */, + 57167C4F92E9A2EF9AC60F1043FD913A /* RCTRawTextShadowView.m */, + 6C307E76EE75E3FBF41A05C2F83A6D3F /* RCTRawTextViewManager.h */, + 2A8F5606B00BB3EAA4E84E37290729DB /* RCTRawTextViewManager.m */, + ); + name = RawText; + path = Libraries/Text/RawText; + sourceTree = ""; + }; + 1205EECF196B554E807B944EEDE06592 /* Pod */ = { + isa = PBXGroup; + children = ( + 184850666AEFB66BF1A6E8E5400E0802 /* LICENSE */, + 3666B36FF9D733DE86523E57497C120A /* react-native-orientation-locker.podspec */, + 0A8D3C59BD7A1E2FC65BF6333B0F8CD7 /* README.md */, ); name = Pod; sourceTree = ""; }; - 127BC806F633AE7ECC0AAF148E5F07CE /* SurfaceHostingView */ = { + 12FE124C0F1D0C77A0CD72268A366C8C /* Support Files */ = { isa = PBXGroup; children = ( - BE74367AF82944722E235E75D88607D7 /* RCTSurfaceHostingProxyRootView.h */, - 9118DFE411018AAC2439B34F30778B8A /* RCTSurfaceHostingProxyRootView.mm */, - A33FC5B7552F5814C26C86B4D0C45DB6 /* RCTSurfaceHostingView.h */, - 37B60ABD0903E36916018E9968CEBF16 /* RCTSurfaceHostingView.mm */, - 05C784A300FAB4DB9E57A053E370F2C5 /* RCTSurfaceSizeMeasureMode.h */, - 71BFB7039D4CBAD01671C4E3DFBD36F5 /* RCTSurfaceSizeMeasureMode.mm */, + 081741F152BF40AB15D82EB34AE0CA0A /* RNImageCropPicker.xcconfig */, + 7C81847F2FA8B6047E96591DEC10C30B /* RNImageCropPicker-dummy.m */, + 62CAE8CA3ABA2E0E77E95D9B4D114F0E /* RNImageCropPicker-prefix.pch */, ); - name = SurfaceHostingView; - path = SurfaceHostingView; - sourceTree = ""; - }; - 138E342F844E7A05271255D61C1168A4 /* VirtualText */ = { - isa = PBXGroup; - children = ( - C16BFB5A6D3A1572BB975AD8E728567F /* RCTVirtualTextShadowView.h */, - B60E8C6820C0A94B4C8EAF59B2CB148D /* RCTVirtualTextShadowView.m */, - 3BFB2D2FCEB208184ACAFED5372EF5A3 /* RCTVirtualTextViewManager.h */, - 83C0EC665E9D1A034383DB0C8E6499D1 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - 142CB2F88E199B302DC543BC836259A9 /* TextInput */ = { - isa = PBXGroup; - children = ( - AC3C720F8FE7C7061F7C71F2A5BB9EE1 /* RCTBackedTextInputDelegate.h */, - FD8AB2891C8F6F69E875EE2777013F19 /* RCTBackedTextInputDelegateAdapter.h */, - CC01AC606AB9F3D427BCA0B135973E1C /* RCTBackedTextInputDelegateAdapter.m */, - 7F621CDAAFD4D33F097A90BE3B7CBF46 /* RCTBackedTextInputViewProtocol.h */, - D35F3C1DA14317D66C0E46EC353E7BE0 /* RCTBaseTextInputShadowView.h */, - 5FCCBDA26F090520AC7C264F5C3A64C4 /* RCTBaseTextInputShadowView.m */, - 571BB956F0696DD25BB14FF7D476E45C /* RCTBaseTextInputView.h */, - C006FBD3552C694CB2E6923E515731D0 /* RCTBaseTextInputView.m */, - D662B10043F241ED5DB4E8DFB4F8E81E /* RCTBaseTextInputViewManager.h */, - E3665B023408332A39787B4A94A390AA /* RCTBaseTextInputViewManager.m */, - 9D545FA0EC9BABACD3D7C47D741F2CCE /* RCTInputAccessoryShadowView.h */, - 036F44AC6A89B092E1ECC974E826FCC4 /* RCTInputAccessoryShadowView.m */, - 87C3F358B6D852BEE70EC241DFC81065 /* RCTInputAccessoryView.h */, - 0911D294891270DB71A5B22E3FC678D4 /* RCTInputAccessoryView.m */, - A74618E6B701C9AD87FB83A6050A5467 /* RCTInputAccessoryViewContent.h */, - 581151D5E86C51A3B94E88050623777A /* RCTInputAccessoryViewContent.m */, - 037EC11F7D90188A0C0F553E48A6A2C2 /* RCTInputAccessoryViewManager.h */, - E8A9DDC85EA80E57490DD6044476DF87 /* RCTInputAccessoryViewManager.m */, - 3B40326E311A8FF1845E092E47F48B98 /* RCTTextSelection.h */, - B7823ACC8C0A87E33D2CD4CEF0C23373 /* RCTTextSelection.m */, - F46C6D2A700613957BD3BEC18A6B3031 /* Multiline */, - 4B822BAB58DFAA0490E12D9D4B69CF06 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; sourceTree = ""; }; 14A3F514C63310BF231D1BA8075C93CE /* Support Files */ = { @@ -961,200 +998,58 @@ path = "../Target Support Files/QBImagePickerController"; sourceTree = ""; }; - 170DBB7D762C5A7869292FCC1C792413 /* RCTImage */ = { + 172F4D81422E67FFF13E20D3771231A9 /* RCTAnimation */ = { isa = PBXGroup; children = ( - 357D19F4E487432210495DBB0D1A75F3 /* RCTGIFImageDecoder.h */, - BBF06023ED87149AED7025398FFF0AFC /* RCTGIFImageDecoder.m */, - 0D6D01D7E43A2F07286276E0B5241911 /* RCTImageBlurUtils.h */, - F8492AFE2760871C40F64DDD59AC19DD /* RCTImageBlurUtils.m */, - A1D18F26DBF3C996DD1FFC4C5A65787F /* RCTImageCache.h */, - 2F0CE0ED4EDA919AD256F6C7CC61C6B0 /* RCTImageCache.m */, - 086FECD444D2D4D96E6E7C4B5F9607E6 /* RCTImageEditingManager.h */, - 10068C32BEA66C0FA04AC954F7264B5A /* RCTImageEditingManager.m */, - D0CAFA721BC8F6010A3290D681C8AB49 /* RCTImageLoader.h */, - A91C59F46DD17BCF65254D2DB4A7E2A2 /* RCTImageLoader.m */, - EA96A939FD06B99DE391DFD94F7E4C9A /* RCTImageShadowView.h */, - CB4BA7C36F89F24430912BF66FCED3B8 /* RCTImageShadowView.m */, - 25F46761DC95C1ECCFD898ACA00AA2A3 /* RCTImageStoreManager.h */, - 53724EBFA4575CAD65064AB627FAE8B9 /* RCTImageStoreManager.m */, - 922C416B12FCFCAE2C5F23946EEAD847 /* RCTImageUtils.h */, - EB6270FFC5AB407CB9BFE1AA7256CC47 /* RCTImageUtils.m */, - EC82E72F96C8D52E9C3C71EC9221F11B /* RCTImageView.h */, - 9B858B41CB0EAAA37C6E7CFAB771FE0F /* RCTImageView.m */, - 1A5CF5FA988B17229356077A2A996E4C /* RCTImageViewManager.h */, - 93CE6C722326B2C1FF33107568561C86 /* RCTImageViewManager.m */, - 0AF14569C855D974A9478DC5FF30DA2A /* RCTLocalAssetImageLoader.h */, - 826E421BEF3EC9E0431C09AFA28E1DAD /* RCTLocalAssetImageLoader.m */, - 1E463D2EEDE2F62C3AE5AD41ECD54ECB /* RCTResizeMode.h */, - 329E7DF0659DC938075AD8A80187DFDA /* RCTResizeMode.m */, + 6B8423AD9CC4AD4C2B206CC827FB05D5 /* RCTAnimationUtils.h */, + 2CBCD76A780672DE949EFD8BE6514F6B /* RCTAnimationUtils.m */, + D4DBE73FB2F08FFA9D4ECA31315B768D /* RCTNativeAnimatedModule.h */, + 1365E98D725EBCF0C6A651D5F02FA875 /* RCTNativeAnimatedModule.m */, + 2BB6EEF25F9512D81D28413A025AACF9 /* RCTNativeAnimatedNodesManager.h */, + 11AAA52EF7AA8A2A9D9C5EBFA290DC11 /* RCTNativeAnimatedNodesManager.m */, + 4FBA05CC3DBA8F47A0F9AEBAFF336D1E /* Drivers */, + 0C700CBDA9ED5D411A587FC6A3917F3F /* Nodes */, ); - name = RCTImage; + name = RCTAnimation; sourceTree = ""; }; - 1948F902DF73EBF164DAF885BA889497 /* Modules */ = { + 1A555DEF3939F86ACA037BEDB8343CF5 /* Multiline */ = { isa = PBXGroup; children = ( - 767D8613D16D904151FB5389E109D079 /* RCTAccessibilityManager.h */, - 0A3BC17190AE4E89DE348C1E93BBFA11 /* RCTAccessibilityManager.m */, - A8C46E70CCEA1F9540272BA793E9307C /* RCTAlertManager.h */, - 5F0EF1F75094431978FCDE24FC45AFDA /* RCTAlertManager.m */, - 72816CCF5948D04DF784BFD60399DBEC /* RCTAppState.h */, - 95A1E6FA137593B61116E00C4A895FD7 /* RCTAppState.m */, - B2B9EF3FBFB01D2FD1525DE8A4EB8C5C /* RCTAsyncLocalStorage.h */, - 06CE108430E1A0BCDE0154F90D03DE56 /* RCTAsyncLocalStorage.m */, - D81D4738D4DEAFE8D0440D17925951B1 /* RCTClipboard.h */, - FC46BFE40D12E7216DDFE182392D18CA /* RCTClipboard.m */, - CA47993C4D12E636F3377D02DF673319 /* RCTDeviceInfo.h */, - 5AF578D55C54F5A8C4F54A00AA84BDE5 /* RCTDeviceInfo.m */, - 88917A04E636745CEE774501525AA295 /* RCTDevSettings.h */, - 062AB2674601D74D1D5C262D9A679BFE /* RCTDevSettings.mm */, - CDCA26F32B695C0B132DD03CA73D687A /* RCTEventEmitter.h */, - 83827AE9D9BB8DE99A576B160AFE7981 /* RCTEventEmitter.m */, - 1365C7F9B96D0E545454834D51E350F5 /* RCTExceptionsManager.h */, - 351A8BCFE4A7213DCA63D7B0D0EF7453 /* RCTExceptionsManager.m */, - 9F998DF383F24B71CD95386D9D85F817 /* RCTI18nManager.h */, - D6843CACF833347A22F3D0154032CCD3 /* RCTI18nManager.m */, - 07AED23F29777846BE24AF43410770E4 /* RCTI18nUtil.h */, - D9C40E022305E79A22E0929DBE1BA1B9 /* RCTI18nUtil.m */, - 69993B54631F2A0D8FBD7B1D2A6BDAE3 /* RCTKeyboardObserver.h */, - 76130C7656896D95E8FCD32465BFB845 /* RCTKeyboardObserver.m */, - 45219F97D15BAEC20024AB09A3D17062 /* RCTLayoutAnimation.h */, - 48AFBCB5EC836DA24A806E76DA3F0E61 /* RCTLayoutAnimation.m */, - 60EE79D660FE3850F9D81E129B799A07 /* RCTLayoutAnimationGroup.h */, - 90769A2F883A02AEA0F512D5B138ABB1 /* RCTLayoutAnimationGroup.m */, - 6C206EB72E68002F23BE06399A7479B8 /* RCTRedBox.h */, - 0E9A51FEA2F9A0573B01D47E067AE418 /* RCTRedBox.m */, - 36B66299CF31D00E22EF1EC76335ECF5 /* RCTRedBoxExtraDataViewController.h */, - 3E2891A18293B2115C93A966CBB5E43C /* RCTRedBoxExtraDataViewController.m */, - 37D37EB0A9B70591ED201D8811AAE3A0 /* RCTSourceCode.h */, - 163F500A2FBA1AFFEE99AB93EF85455D /* RCTSourceCode.m */, - 6B8FF757A593860E619F168BBEC5A7CE /* RCTStatusBarManager.h */, - ACD2D6915A2653132B2F66E01727D4D8 /* RCTStatusBarManager.m */, - 1061D925EF6FBCCDA8D6C9357D51AF4A /* RCTTiming.h */, - 9968319623A16FA5FAEA1D88EB6AD654 /* RCTTiming.m */, - 1FCDBF5CC835B3FF3878371FEF73CBED /* RCTUIManager.h */, - 268E9C4072112085C179D9B26BC19537 /* RCTUIManager.m */, - 342855703A60646C6D2D88EF986DB2B2 /* RCTUIManagerObserverCoordinator.h */, - 98D7287CA6BBC301A5266EE735C828DE /* RCTUIManagerObserverCoordinator.mm */, - 8E3688E0ACC56D3C502E9E027BA483E6 /* RCTUIManagerUtils.h */, - BE16BE7A6B0DCA9CD1B96485A5E9586A /* RCTUIManagerUtils.m */, + A2EF99E696E558498A966CC434D2B479 /* RCTMultilineTextInputView.h */, + C0C7940692ABD89BB39128A27F72A05B /* RCTMultilineTextInputView.m */, + 031D80E61D89AC735FB167128831AA26 /* RCTMultilineTextInputViewManager.h */, + 6C99AA16ADB18A2244D0DF813021EE97 /* RCTMultilineTextInputViewManager.m */, + DB57696EEB1389B1728667670DD024C1 /* RCTUITextView.h */, + E2E658A6F60E2A24D273B97BD67AA3D0 /* RCTUITextView.m */, ); - name = Modules; - path = React/Modules; + name = Multiline; + path = Multiline; sourceTree = ""; }; - 1D0F80E98D16E8EC96DBB0FE452DAF1B /* Base */ = { + 1F7A7411F4602A596A26F815B338DA54 /* Support Files */ = { isa = PBXGroup; children = ( - 7A373FCD7A4A74E199129BA1D8259305 /* RCTAssert.h */, - CDB7907065F35FE6E50DB29B145EE63C /* RCTAssert.m */, - 3C35E8291B46F1C8B58BB31370CEF565 /* RCTBridge.h */, - 10F246E2E16197F4BD43A1C60E594D67 /* RCTBridge.m */, - A83156266BFD8B6C1005EFFDFC0839E3 /* RCTBridge+Private.h */, - AE55FF52E7F0EC0F0D392DF28EE6901C /* RCTBridgeDelegate.h */, - 619D398605F274F512A37005F89C47A0 /* RCTBridgeMethod.h */, - 15463456B266A0762C311D9CF52DB0B7 /* RCTBridgeModule.h */, - EAC0E568103D10BEDCC837BFE7AFF027 /* RCTBundleURLProvider.h */, - A3127B3031C0F3974045CE95A5A0B357 /* RCTBundleURLProvider.m */, - 70498A1A5364404426AC5F72010C366C /* RCTConvert.h */, - F246C85E16D641384A6BEEA703F2D783 /* RCTConvert.m */, - 96E21C135BC6C9AFAC403003CAE169B6 /* RCTCxxConvert.h */, - AB450DC3931569E165BA512CCE6CF561 /* RCTCxxConvert.m */, - 655ECDA00C0A57ADEA5A6ABC350DAE9E /* RCTDefines.h */, - 29CBAEB90E6FCC78BA53B4388D894C1E /* RCTDisplayLink.h */, - 09A151C0E65F36CFB7132E9547900541 /* RCTDisplayLink.m */, - 39ACF32A37A629C7AFFC27C25CE034F8 /* RCTErrorCustomizer.h */, - 050A747A47DF7C77909DB32ACC2B1232 /* RCTErrorInfo.h */, - 89A41F25F8E650ECF4D5708A6AC1FAE5 /* RCTErrorInfo.m */, - 5051920349DED3C4DFA19C777BE759D4 /* RCTEventDispatcher.h */, - 446FC8184A33BE13CA27EA7E3AEA1D8D /* RCTEventDispatcher.m */, - 3027A87FD2726D2E1B58AAEAEB3E47B2 /* RCTFrameUpdate.h */, - 94C30DB1E5496CD92D0C8ADD86F8C27B /* RCTFrameUpdate.m */, - 63038348EA4375E117E70C915F387709 /* RCTImageSource.h */, - 427DCBCBBC17065E30298E9F27FF2B3E /* RCTImageSource.m */, - 262A9A88E9A69A6211E4C466B3787E0C /* RCTInvalidating.h */, - 0DE6F762B156FC0897B3B0888F30E863 /* RCTJavaScriptExecutor.h */, - 3262E064BB3F73889EB6EA975EBDF45C /* RCTJavaScriptLoader.h */, - 6CFF3186442B41E5439E05F33672FA03 /* RCTJavaScriptLoader.mm */, - 0098B8887C0388FCCAD9F8E6D735DF87 /* RCTJSStackFrame.h */, - 746E44DBB76CF4DB005BCE92DC8C8666 /* RCTJSStackFrame.m */, - 0DDF7A1F03C877E8D2A79EC45A3904CF /* RCTKeyCommands.h */, - 452CC0B743954130C31AE9C0FA3447AD /* RCTKeyCommands.m */, - CB7473CD253A910E0D3BC2CB7FD3ACE6 /* RCTLog.h */, - 2C5F4707B1ABCA2DC86B9A8EA10A7C26 /* RCTLog.mm */, - C50B7769696A0A1A95A3E90A4B6CB4D4 /* RCTManagedPointer.h */, - 271D47AFE34420745B765D97B5BD2C76 /* RCTManagedPointer.mm */, - 9240939567173E6C7F29842682CF45CE /* RCTModuleData.h */, - 6C95C2A4CCC95CA79EE80D0C3D42DEA9 /* RCTModuleData.mm */, - A5045935E8692E253A2F45EBA27B55F2 /* RCTModuleMethod.h */, - 4AFC782E4F2F995690A2B0F592254941 /* RCTModuleMethod.mm */, - FE5FBB652F2FD39AAB0D1318AD3D010A /* RCTMultipartDataTask.h */, - 3704EE64D78CCCB1714BB674D7012CA1 /* RCTMultipartDataTask.m */, - 5332D8878BCA59054858050834FEBB6D /* RCTMultipartStreamReader.h */, - 27ABFE44F568DC1AFC138FEA20E74234 /* RCTMultipartStreamReader.m */, - 3E7C84D7EBB6A9BEF8B5E9AB111B8B0A /* RCTNullability.h */, - 1514BCFF806723F3369E864A1D960AD3 /* RCTParserUtils.h */, - 31739A837A079B730EDCA1E0B3C0C5C0 /* RCTParserUtils.m */, - 2D69D55D37FC7F640BB6B79D69A1A445 /* RCTPerformanceLogger.h */, - 59D3AD5771B8AEDC9A266AC5D11FEA10 /* RCTPerformanceLogger.m */, - 91595E33BB3C3CC431C52475568C6F18 /* RCTPlatform.h */, - 061729FEA5ECFD29FAE52F6326B31F6A /* RCTPlatform.m */, - 6BE2CD0861F9C164C7F5D72ECF27B5D4 /* RCTReloadCommand.h */, - 9BAF820A2D0F85E58504C68F6BE00146 /* RCTReloadCommand.m */, - 3E1F1BFFEED3855AE9F27CDDADAF0DC6 /* RCTRootContentView.h */, - 2CF204A33EAE0CA74D22C0E87BB277A3 /* RCTRootContentView.m */, - 9051F78EC9F56B04741E5BF0277F3897 /* RCTRootView.h */, - B36F74975B1A86193358D4AB62FA86F8 /* RCTRootView.m */, - 17EA99B983C926363B1EC204E3445359 /* RCTRootViewDelegate.h */, - 0640EF9524D88E2CFB2B44E11BE3D6FB /* RCTRootViewInternal.h */, - CDE191B4B16553C60A4892F804BCDEAE /* RCTTouchEvent.h */, - 4F1304BB299C55DD50585663EE0AFC36 /* RCTTouchEvent.m */, - CD98AECFC927491B54D2012A3A8F7237 /* RCTTouchHandler.h */, - 51D3B51714228964341961100DBDF0CA /* RCTTouchHandler.m */, - 93DBC46C7D10469D70F4B166A6A278E3 /* RCTURLRequestDelegate.h */, - 13C44300C6CDA1060DF9DE2841C4A452 /* RCTURLRequestHandler.h */, - FDB8C13E5EB0226E6C9CAD84F7D0BCF1 /* RCTUtils.h */, - 064699AB1BE4DA00203D3A4FD6014C24 /* RCTUtils.m */, - 1607DD12BD8A06270F983B548B406FBE /* RCTVersion.h */, - 1AE77C29439F76070DC40A05D35477B2 /* RCTVersion.m */, - 0DE0AF76D26BFEAC006DA32AB148AB85 /* Surface */, + 562989699027A5C027EFC0E8466C69E7 /* react-native-orientation-locker.xcconfig */, + 2B9DAF1089D5304595022A329893DEB0 /* react-native-orientation-locker-dummy.m */, + CB53013C3D85FACAF84C8E6018CF1351 /* react-native-orientation-locker-prefix.pch */, ); - name = Base; - path = React/Base; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; sourceTree = ""; }; - 1D8DD5D53CDDBD1DEC4619FB60F128EE /* Products */ = { + 27614B4DF1FD0E9E99353635A83BAD17 /* SurfaceHostingView */ = { isa = PBXGroup; children = ( - 361240A388C3A4891CCF12614ABE5435 /* libPods-RocketChatRN.a */, - 1A3090463116C88A6C9966E24E7CE73A /* libQBImagePickerController.a */, - C92312EB56D739328CBAC63D50763B7A /* libReact.a */, - 98FC94670CE714EC8334757895FE042B /* libreact-native-orientation-locker.a */, - CF3DD77A8E7F9255EA71D5CA582E77B6 /* libreact-native-splash-screen.a */, - 89958DF6A2D9D026B85FE231F20AE866 /* libRNDeviceInfo.a */, - 8EAEC203E3943497A80D2F2E7D5A9721 /* libRNImageCropPicker.a */, - BE3DAEF86DC69F4DF4184549E6F596C8 /* libRNScreens.a */, - DB777882BF18C387FFF2CBF0CBE5E654 /* libRSKImageCropper.a */, - B25D7FF21E435E7DC275BC04CB0828A3 /* libyoga.a */, - AC9EC3A02B3A86E796C95DABC5A7381C /* QBImagePicker.bundle */, + 0FACF3ABB37493E481055A220301AA9D /* RCTSurfaceHostingProxyRootView.h */, + 5E4D74B2283D9ABC10D5E0978D903EB4 /* RCTSurfaceHostingProxyRootView.mm */, + DA3F359034C16522E4CAF14AA5DE7F7C /* RCTSurfaceHostingView.h */, + 609D21210FACE41351840506BAF21F7A /* RCTSurfaceHostingView.mm */, + 6C15295B083EB416486038D135B7C0E7 /* RCTSurfaceSizeMeasureMode.h */, + D92283A6F5EE4D31805DCFC83EEF951B /* RCTSurfaceSizeMeasureMode.mm */, ); - name = Products; - sourceTree = ""; - }; - 270432902CDF3B5571531A84CA7AE255 /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - BB0A33EB1BE871263012A9963A882C8D /* RCTReconnectingWebSocket.h */, - 3F0458AFF4435F5531C58B040C7A0416 /* RCTReconnectingWebSocket.m */, - 62C57694057F1333B1F028EEBB512FD0 /* RCTSRWebSocket.h */, - E0D20E0D349823CDAB2788249CA41E6F /* RCTSRWebSocket.m */, - A480986A266BCFB9782B8C2361A67ED0 /* RCTWebSocketExecutor.h */, - 6E51E8D7B3CDE4984FC843758832ECA1 /* RCTWebSocketExecutor.m */, - B8BADA624381F97D9609FC92E1A428EB /* RCTWebSocketModule.h */, - 1D11931E01D5F80D53BAA15ED782DD6E /* RCTWebSocketModule.m */, - ); - name = RCTWebSocket; + name = SurfaceHostingView; + path = SurfaceHostingView; sourceTree = ""; }; 292CD33E393E532C96DE2A2C062CAE1A /* Resources */ = { @@ -1170,31 +1065,107 @@ name = Resources; sourceTree = ""; }; - 2BA6F76EB5BC59E8868BF3BBAF78C612 /* RCTText */ = { + 3505728E8FC0B4C3D471EA38DBCD0442 /* Views */ = { isa = PBXGroup; children = ( - 1660931896F4E08BE1371259F79FBEC7 /* RCTConvert+Text.h */, - 6A94F5427F896A6D48200D66AA99CD3B /* RCTConvert+Text.m */, - FF69AA81BD6436CE430CBD1DA1E482E5 /* RCTTextAttributes.h */, - F111B161C7A93FDAC808A2C8339651B4 /* RCTTextAttributes.m */, - 7FD23D6114588453E86E440A1AB696B7 /* RCTTextTransform.h */, - 7038921AF551A3774CB6E2E5563C6F85 /* BaseText */, - C9A6A76206EFBCE87EF87C0C31374050 /* RawText */, - FDD4309484766696BD4BEAD53D758EAC /* Text */, - 142CB2F88E199B302DC543BC836259A9 /* TextInput */, - 138E342F844E7A05271255D61C1168A4 /* VirtualText */, + 007106F680F48884D7773E7664B81410 /* RCTActivityIndicatorView.h */, + 81DD551BA750A80BE5838AE345E34F65 /* RCTActivityIndicatorView.m */, + F8750E0492B50455F7F104FF36A1E41D /* RCTActivityIndicatorViewManager.h */, + 876038ABD6AAF6D54C5C9CCF6277CD29 /* RCTActivityIndicatorViewManager.m */, + C878D9FA6B1739AD785A89C977C490EB /* RCTAnimationType.h */, + B32FBB4F06C2FDB6D4BE0656D6FF3710 /* RCTAutoInsetsProtocol.h */, + D367AFB0BB19FCD54E8E1E2D0681229B /* RCTBorderDrawing.h */, + 993812F021DDC6477A2EFD5D32FFEB59 /* RCTBorderDrawing.m */, + 29E060E959DFF0908DD3130130896677 /* RCTBorderStyle.h */, + 399625AA5D67CCE07016A4427D9012DA /* RCTComponent.h */, + 96B9EDFED51F094D43F70B2EED8D5C45 /* RCTComponentData.h */, + 1899D20E50ABFD84C0AFAEB4D9DCA26B /* RCTComponentData.m */, + D8BE7210CE931A34038844E55D1068E8 /* RCTConvert+CoreLocation.h */, + F9B35CE3BFEC2A43E063722B57599A2A /* RCTConvert+CoreLocation.m */, + 4664EB61201313DEE8E58631060107DE /* RCTConvert+Transform.h */, + 5989C6F67606EFB9A2E7F5A06198E2A0 /* RCTConvert+Transform.m */, + 92C76A94FA7D688503CA94B303A4D833 /* RCTDatePicker.h */, + 19D56C0E839D7D69363FE22C32FD7CAC /* RCTDatePicker.m */, + E427295135C0E9D46AEA0C4B64F41127 /* RCTDatePickerManager.h */, + 53579CBAC70F2647A1371BC68F1B4C61 /* RCTDatePickerManager.m */, + D797009DA045D8676FC128DBC4E3E4C0 /* RCTFont.h */, + 5BDD76CC80F4AE34C80599246BF22DED /* RCTFont.mm */, + D5C5DE18C41C30B7F350D3681477A40C /* RCTLayout.h */, + BF984B32F485CB58BC4A671D77475310 /* RCTLayout.m */, + 621B6D4D55995888D2D3B7EAE31D4C61 /* RCTMaskedView.h */, + E5FC14883D5AF19F7C1070C9D6A6F780 /* RCTMaskedView.m */, + 325080D4F095CAB6488E5B3349816FF6 /* RCTMaskedViewManager.h */, + 18B19C1CB22C4BFA90F8B1D72D60ABAB /* RCTMaskedViewManager.m */, + DE7875CD5CF1B647F652B1428B89A287 /* RCTModalHostView.h */, + 9229D302BABA35C7D1A490345DEE9FEC /* RCTModalHostView.m */, + ED33B03C3A9A9F3EC111C9A015196B19 /* RCTModalHostViewController.h */, + 71ADCE416A1661217BD257AD08498A2C /* RCTModalHostViewController.m */, + 85D18C1C2C119E0145F6820BB5FC28DC /* RCTModalHostViewManager.h */, + 8739EA5419C46224192B213BF0BF665B /* RCTModalHostViewManager.m */, + C72577C9106A42C93AC330A120556AFC /* RCTModalManager.h */, + BDFD86B304152ACF9BC50AC0153F821F /* RCTModalManager.m */, + 7209A78C09803F0F9DC64FB21037D900 /* RCTPicker.h */, + B9CE0E05B2C25E87D5B494DB07E598FF /* RCTPicker.m */, + 46D22BA65A87A2EEF2D5C14D1AE92252 /* RCTPickerManager.h */, + 1F74F9E163381C593AF2808E62BA0B72 /* RCTPickerManager.m */, + ACCC804F7543187FE4F1D3D4B5D99500 /* RCTPointerEvents.h */, + 5148EC0E940DF626F16D0C2534A9C720 /* RCTProgressViewManager.h */, + AA5F96C1B14073CFE0B42873BF563516 /* RCTProgressViewManager.m */, + B7850B6FE476FCA82EAA00336C021543 /* RCTRefreshControl.h */, + CE1F36B82A0BC45FE9377D6AD8D014FB /* RCTRefreshControl.m */, + 6C60755C6A7B5584333368E68FFE859E /* RCTRefreshControlManager.h */, + 26EC2CA6352CCFE4506871E1522479E5 /* RCTRefreshControlManager.m */, + 6FEC387D393A023670FBE6226536A383 /* RCTRootShadowView.h */, + 6CC77D9F5275D0118DBDEB034A57F8E2 /* RCTRootShadowView.m */, + E4CEDCB2ABBBBBD4E68585CEB122052C /* RCTSegmentedControl.h */, + F712AB418536C6F0A45E32261ACDA068 /* RCTSegmentedControl.m */, + 9ED791D95FE23C8E624E596ABDEBED7E /* RCTSegmentedControlManager.h */, + 03AA771803490822C291C8574322B501 /* RCTSegmentedControlManager.m */, + 9159A416470FF35CBB7057771C89FA52 /* RCTShadowView.h */, + 5BD4C1700958C983EE57E62AB3A8FCA9 /* RCTShadowView.m */, + 6186E89C0F729828103AD75E44BB5746 /* RCTShadowView+Internal.h */, + EBE6DF08467CDF7BE8B09172CF4EC433 /* RCTShadowView+Internal.m */, + C68CF94304AD589E14EFD1F113F994BB /* RCTShadowView+Layout.h */, + CBE961F6D798C387C84B71689FE8603B /* RCTShadowView+Layout.m */, + E0598B0F8A05F82F6334CD516B7C8F6C /* RCTSlider.h */, + B17455DDEBCDAB6DBFA64AF84EFE1EFD /* RCTSlider.m */, + 2322BF5E64B53570A24EC0025658B530 /* RCTSliderManager.h */, + 6DAED799040628A460307CE3F2790208 /* RCTSliderManager.m */, + B73E2576889B496EB3D1DCC329AC82A3 /* RCTSwitch.h */, + 4FD38A3C22827D49FE94F00E69673BB7 /* RCTSwitch.m */, + 13CEED1EEC2F873D43A91BD4E0A460BF /* RCTSwitchManager.h */, + C03D76DB1C20A033ECEE3F81A6BB3E0A /* RCTSwitchManager.m */, + C49AFF863EC5E005223F1E79D997F9F9 /* RCTTabBar.h */, + 826B33AB223AC07DD12D4AF36F5013ED /* RCTTabBar.m */, + 1B5328C966CC589AA097398B49B20578 /* RCTTabBarItem.h */, + 1A804032C142EE31372065CAC1A2AA40 /* RCTTabBarItem.m */, + EC9A2F7D6D852520F5227FFF5533C8E5 /* RCTTabBarItemManager.h */, + 109245FAA14A04EBC7E22043B342DF68 /* RCTTabBarItemManager.m */, + 242B4E3593FE134F318A4232019326F1 /* RCTTabBarManager.h */, + 44B46886B9419C5C10F650467E9D5271 /* RCTTabBarManager.m */, + EC6D9A7CC0CE4F8256CFDE1DC5D1C798 /* RCTTextDecorationLineType.h */, + F69B833377807B7490AA835EB28A7E2F /* RCTView.h */, + B54CE654674EE52CD7AE78D1BD90C6C2 /* RCTView.m */, + 2ABBF629D1A5E3DB6C5B3582339FC46E /* RCTViewManager.h */, + 7CFE4D66324A45CF936AF40EB5BCA91F /* RCTViewManager.m */, + 608D2887DD5BDA8FFEF659C55F4E5927 /* RCTWebView.h */, + C7289B6BE376F166AC6B6712EAC562F2 /* RCTWebView.m */, + 622A7FB6F322EEBF09E8C0339D00A65A /* RCTWebViewManager.h */, + 6A9E016B1C0FB81691C394B3E728C123 /* RCTWebViewManager.m */, + B84A027C1582D223B99C25FB1BE81A30 /* RCTWKWebView.h */, + 68E3E5C4BF9D4195C23733C897C2380D /* RCTWKWebView.m */, + 8E25EF1B954CD88E25A9395EB704CE58 /* RCTWKWebViewManager.h */, + 30EADC9429885BF3DADA2942CE46CCA3 /* RCTWKWebViewManager.m */, + 5445BCE93C132FA120CAC0C0AC93A49F /* RCTWrapperViewController.h */, + 419F0F8AF4426DEA137186B0CB9D7E68 /* RCTWrapperViewController.m */, + 2DDBBBA414BFAC6A91D4370940B807E3 /* UIView+Private.h */, + 3911C81A55838BB50F74077C14C5EC8D /* UIView+React.h */, + E1982DAFAE670A202469DB8C1C9AA92C /* UIView+React.m */, + A588A545C826C65E21B1D78CA67C6947 /* SafeAreaView */, + 93696894B219E8BD15C5F958E776E7EC /* ScrollView */, ); - name = RCTText; - sourceTree = ""; - }; - 386AF3C62DE1D0D67FB3981C332B868C /* Pod */ = { - isa = PBXGroup; - children = ( - 67EBA004DA6EEBA8F5551DF84B0C7D8A /* LICENSE */, - CBE3851D96D8E8F8D371C469610FD5FA /* README.md */, - 88A8515B48974FC969F1E89169D5C201 /* RNDeviceInfo.podspec */, - ); - name = Pod; + name = Views; + path = React/Views; sourceTree = ""; }; 41F4610F7410C95FC04F675D5F671EBE /* Support Files */ = { @@ -1208,29 +1179,125 @@ path = "../Target Support Files/RSKImageCropper"; sourceTree = ""; }; - 42DF240DF39030CEE822DE4B1EED9B50 /* Support Files */ = { + 47437796BA29DF1E6D395D5595C434F5 /* Products */ = { isa = PBXGroup; children = ( - 189617C12FAE564BEE73932E6D52355F /* React.xcconfig */, - D93F3AE9D1D78F5DC67A097857960EC2 /* React-dummy.m */, - CD31594B340A8531EAD91587DBD0B63A /* React-prefix.pch */, + C8B465ADA6F79E7498D51C556753E3B7 /* libPods-RocketChatRN.a */, + FB40EC1F138B803DF8D6F38AFB31424E /* libQBImagePickerController.a */, + 7D896E990158C05F46D5A54BB5B5D02A /* libReact.a */, + B12A5B6128E4589BE739593CD0326305 /* libreact-native-orientation-locker.a */, + CFB6DD39BEC27A2FAF13C106369D4154 /* libreact-native-splash-screen.a */, + 197D3585B75F30FD369E2A82B408FE6F /* libreact-native-webview.a */, + 8B24A41749DE1FC6735C71F943E8C0F0 /* libRNDeviceInfo.a */, + BA2CD96327DDF85F57BE8EE813DD53B5 /* libRNImageCropPicker.a */, + CDF2D621E8F7FF59C22909D0D2FB312C /* libRNScreens.a */, + 29C18A6D3D94F2F989443D5C462C1DEE /* libRSKImageCropper.a */, + 888498C5027A162639AC6A4188A19455 /* libyoga.a */, + 40E048CE60DD0273CEBD902E431B30FE /* QBImagePicker.bundle */, + ); + name = Products; + sourceTree = ""; + }; + 47D979AFC995E62907A7E2917BF7D207 /* RCTText */ = { + isa = PBXGroup; + children = ( + C469F5EDC3BC8E115CE5253D3E8378A4 /* RCTConvert+Text.h */, + 5697E59A3AD911F125262381459DBD39 /* RCTConvert+Text.m */, + 61378045AB18ABD55D340B7553A87F88 /* RCTTextAttributes.h */, + 96328B7DC9B1666E2D54084E5077B77C /* RCTTextAttributes.m */, + 3BE709CBBDD416B06CFEBD7BD2307627 /* RCTTextTransform.h */, + 71663B88D1907E37758E80F423D67152 /* BaseText */, + 0F2C849834BACC5608C88E4405D258BC /* RawText */, + 731A589DB0CFF0D82F95BCC83B2D9E2E /* Text */, + A8DE1952314C068FC73830C33780DC98 /* TextInput */, + CCB4FFD3E1A3FD898983F84F228DD3B2 /* VirtualText */, + ); + name = RCTText; + sourceTree = ""; + }; + 493DEFAB9286602CB225A402D5CAD862 /* RCTWebSocket */ = { + isa = PBXGroup; + children = ( + F3CFB68C8CDB753F565D6AE3758477BE /* RCTReconnectingWebSocket.h */, + 92D8C13EE9F23194962AC5EE2A71D315 /* RCTReconnectingWebSocket.m */, + 55CEA31F466A7D8D04F0B54EEF4F79A3 /* RCTSRWebSocket.h */, + 2F9ADE592072E0FDFA7143E8774A26C0 /* RCTSRWebSocket.m */, + 1E8682F8C7B00E226687BB57A7244A9C /* RCTWebSocketExecutor.h */, + F1F67288EB3C4ED90D685B1B3560195B /* RCTWebSocketExecutor.m */, + 5C65A6042AEB0006A029A9A051BAE0BE /* RCTWebSocketModule.h */, + B01169859C74BFCB4140B60A24670337 /* RCTWebSocketModule.m */, + ); + name = RCTWebSocket; + sourceTree = ""; + }; + 494B126992A3614A49F489594D548A54 /* React */ = { + isa = PBXGroup; + children = ( + 7F8E61DA7BC0D8E96039E059AF3FFB46 /* Core */, + 91637BA49B26B160F9A83933CC8760E2 /* fishhook */, + 681FE26A8BE42F2CCC5E6BB4751C785A /* Pod */, + CA0A8A9FC7A7E179E913DAEBDCF4097B /* RCTActionSheet */, + 172F4D81422E67FFF13E20D3771231A9 /* RCTAnimation */, + 9D4E69C578049D180031E2C649DA4DE2 /* RCTBlob */, + 8542FBAE80BD53EA2360611053D9EC68 /* RCTImage */, + 78E481F9F602B6B30D3BCA41C3E8FD21 /* RCTLinkingIOS */, + C6AAF9F14374C45224991393D1FDB90A /* RCTNetwork */, + D4D8080C6ED7E88D7246046A1A078364 /* RCTSettings */, + 47D979AFC995E62907A7E2917BF7D207 /* RCTText */, + 0D5054673D1C1AD62B9ADF2CB47108B1 /* RCTVibration */, + 493DEFAB9286602CB225A402D5CAD862 /* RCTWebSocket */, + 4FE331242A5507D0CE9FFD5025D2EBEE /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 497B9BC380D109EBF12CB1B188A8AE22 /* Pod */ = { + isa = PBXGroup; + children = ( + B08EA4BC07218EEB63F08330615F40E3 /* LICENSE */, + 16B90CEBBFCAC08F9AC85CB67FCA878D /* README.md */, + 4D7FDB55F8E91B7145D0892BC6D30054 /* RNImageCropPicker.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 4FBA05CC3DBA8F47A0F9AEBAFF336D1E /* Drivers */ = { + isa = PBXGroup; + children = ( + E39639E19550764150D20775CBD5ED6B /* RCTAnimationDriver.h */, + D366ACF43470CE19F1E49FA248B5F7B4 /* RCTDecayAnimation.h */, + 0CBC109DF9AF6A01596FC90E72E03ED2 /* RCTDecayAnimation.m */, + 9C3BF3D01BB0AB4A96BB62704D4ABEAA /* RCTEventAnimation.h */, + 47F773669931163B565334C7BE66D82D /* RCTEventAnimation.m */, + 99AA38EF12DC98EEA5173B204E42D617 /* RCTFrameAnimation.h */, + 17B40BA7BB44FC7D619B36DCAD886F4F /* RCTFrameAnimation.m */, + 81FB7B0431ABC4CB61023CE0B9D1FF0A /* RCTSpringAnimation.h */, + 3D8AADCA51D23EFC48DF74E1028FC4DA /* RCTSpringAnimation.m */, + ); + name = Drivers; + path = Libraries/NativeAnimation/Drivers; + sourceTree = ""; + }; + 4FE331242A5507D0CE9FFD5025D2EBEE /* Support Files */ = { + isa = PBXGroup; + children = ( + FC68B38D4F5205C550B768BCEBD707F1 /* React.xcconfig */, + 9DECEDB095E3285F20F60C497BD31D3C /* React-dummy.m */, + A5B60669198820C2BFAEF5A476DA95B7 /* React-prefix.pch */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/React"; sourceTree = ""; }; - 4B822BAB58DFAA0490E12D9D4B69CF06 /* Singleline */ = { + 548E73D851C5FACC19B428ACBD5384E3 /* Pod */ = { isa = PBXGroup; children = ( - 13EAF7B0559738753836EF4E7FD8607B /* RCTSinglelineTextInputView.h */, - E050284EA349A78C0AB314A61EAE1B81 /* RCTSinglelineTextInputView.m */, - 51C5629C67E5348D16F22F38BA4F03F8 /* RCTSinglelineTextInputViewManager.h */, - 6B444FBDAB366333F147188CA792893A /* RCTSinglelineTextInputViewManager.m */, - E531EAA17DE0F69BFFFD218316444639 /* RCTUITextField.h */, - 001D3F35AA430C96CAF2B161C249C66E /* RCTUITextField.m */, + BCED19CD304E1E10542A82B64547EBDE /* LICENSE */, + D4B353DD08C8AFA2C72CC2CD13EB21DC /* README.md */, + 482D14CEFB0BA27B1F387B871E6C69D2 /* RNScreens.podspec */, ); - name = Singleline; - path = Singleline; + name = Pod; sourceTree = ""; }; 55227B8BBB025048E01A9CF60DA4CC97 /* RSKImageCropper */ = { @@ -1259,44 +1326,14 @@ path = RSKImageCropper; sourceTree = ""; }; - 554E8DEE12A536CC9E94900EBFB1D3B2 /* Development Pods */ = { + 557C710B43EA1D95F75A43FBA7A563A6 /* Pod */ = { isa = PBXGroup; children = ( - 891A8680C6817AEB3BD6F0BBD2649FF7 /* React */, - 5ABF6B36C7870C9718AEA3DCC7354E97 /* react-native-orientation-locker */, - B7C2B707C778D35766A01758E0CFFBD4 /* react-native-splash-screen */, - CEB6F676BBC8E2FCB81E030DCCA9D0E0 /* RNDeviceInfo */, - 76987EBA4C30C6347A165291564EC8F1 /* RNImageCropPicker */, - 5F37191091E9F61E3625821DD64B0F1E /* RNScreens */, - 68E6DAC50A77AAB47B57C778E36E2B76 /* yoga */, + 2F60BB9FBFF30D28896C62BD316F2712 /* LICENSE */, + 3B67876F341128FC31B67D3AE531B2D4 /* react-native-webview.podspec */, + C16B164C02414F95AAB3F8F69B33D867 /* README.md */, ); - name = "Development Pods"; - sourceTree = ""; - }; - 5ABF6B36C7870C9718AEA3DCC7354E97 /* react-native-orientation-locker */ = { - isa = PBXGroup; - children = ( - D965292EFF62ABB4EE03B4F76B5D7B3C /* Orientation.h */, - 315C8987D27ECB700CD6C946149CE2C8 /* Orientation.m */, - 7FECF8FF1CA73664D070D5877FB7CE56 /* Pod */, - E6A0E5488FF350CD8E934749C344B599 /* Support Files */, - ); - name = "react-native-orientation-locker"; - path = "../../node_modules/react-native-orientation-locker"; - sourceTree = ""; - }; - 5F37191091E9F61E3625821DD64B0F1E /* RNScreens */ = { - isa = PBXGroup; - children = ( - 544C820A52F0195DDB9B912325E734B9 /* RNSScreen.h */, - 70FB9D8E3A21FF6342AFABFD6FC9303D /* RNSScreen.m */, - 3B8255BA12F3A3B66C97E4A6422D75E2 /* RNSScreenContainer.h */, - 29B0E63E2BA66FDCF5267724E5831901 /* RNSScreenContainer.m */, - 8689B249F0B16576ABC4C54D4315AC57 /* Pod */, - B2F919BCFD3BFD575A1442DC85C8CD80 /* Support Files */, - ); - name = RNScreens; - path = "../../node_modules/react-native-screens"; + name = Pod; sourceTree = ""; }; 62FCEB1FC9765E3A0C88C7785067A5F9 /* QBImagePickerController */ = { @@ -1335,182 +1372,131 @@ name = "Targets Support Files"; sourceTree = ""; }; - 67FB5E5CC02A00E797D52D90ED757D8F /* RCTLinkingIOS */ = { + 681FE26A8BE42F2CCC5E6BB4751C785A /* Pod */ = { isa = PBXGroup; children = ( - D2D2277D6213BC53ED346884F70F684C /* RCTLinkingManager.h */, - 7B3AF6B20F433859B45CED4829D51204 /* RCTLinkingManager.m */, + F301A9430E07574B1D59789731FC58E5 /* LICENSE */, + 4A86730141980B58ECD4BE368350E9E6 /* React.podspec */, + 79D1777133980A9A0D733072C0C4133A /* README.md */, ); - name = RCTLinkingIOS; + name = Pod; sourceTree = ""; }; - 68E6DAC50A77AAB47B57C778E36E2B76 /* yoga */ = { + 6B0F5F8439CA9261B19698174A2E08AC /* Singleline */ = { isa = PBXGroup; children = ( - 4463195CA502FA3BA21FF769C1C5F6CC /* Utils.cpp */, - 3BE1E20E2CDDF820C8410440A247B99A /* Utils.h */, - 8D2836E4F4E855395C40A83EF200717F /* YGConfig.cpp */, - 6F5D70922D132E811892B44688AE7500 /* YGConfig.h */, - C0A397D7C71A0FDA9A913234D1D13681 /* YGEnums.cpp */, - C22C846D7C4C757A7DF814C629E5A332 /* YGEnums.h */, - 8240EF6EAD398B639C64D85869287194 /* YGFloatOptional.cpp */, - 5A258B0B68B31283F7B6EBADE886191F /* YGFloatOptional.h */, - 539DB4B4788C63E6A0610E6AAD7F990E /* YGLayout.cpp */, - 91DE9089174704B0641C37DBD70C4421 /* YGLayout.h */, - 96AB82FD98DDDB55A6212950B4641009 /* YGMacros.h */, - 2C5E24D36FD56EEF31167538793FF2CF /* YGNode.cpp */, - 0424CDDC45A89CA3CC3A671E2AF01117 /* YGNode.h */, - C27E34634B993D92BEE38C5699F00473 /* YGNodePrint.cpp */, - DB0BC583CB135236EA364C2C5B64CA3F /* YGNodePrint.h */, - F146060A12B47C0969AF604FB6DC32E1 /* YGStyle.cpp */, - 53FCD763F52F8DC11781F46E9AD336AE /* YGStyle.h */, - 7B6DBB63530C4C299A6660A08A74B1F5 /* Yoga.cpp */, - 45FF04CD9C020D15A4E172B09E9B1B6C /* Yoga.h */, - 17DCBD0E6D977B54929642A7AEF3C72C /* Yoga-internal.h */, - AAF0A79C69200B3804E3951A3410482F /* Pod */, - 9940230F2E845ECDAE0D3A64F59A55AD /* Support Files */, + 30164588906AD6BAC24E49E7375EB66F /* RCTSinglelineTextInputView.h */, + 9CF186AAB3C603B25610EBAC7A86F220 /* RCTSinglelineTextInputView.m */, + 6624A16665F2DA40F84F0980A09C0868 /* RCTSinglelineTextInputViewManager.h */, + FD5B499388656B3A9BE25DAF1BC7016D /* RCTSinglelineTextInputViewManager.m */, + 72F9A98E99DCAC23D9D1C6CF912FAECD /* RCTUITextField.h */, + E19857AE13EF29A5EDB1664E5A112A24 /* RCTUITextField.m */, ); - name = yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; + name = Singleline; + path = Singleline; sourceTree = ""; }; - 7038921AF551A3774CB6E2E5563C6F85 /* BaseText */ = { + 71663B88D1907E37758E80F423D67152 /* BaseText */ = { isa = PBXGroup; children = ( - 9818F66342D8DA23D3C14BDFF9A71075 /* RCTBaseTextShadowView.h */, - 5C1DED7D50345575AAC6E62A39D8054F /* RCTBaseTextShadowView.m */, - CE21E0024EEB3B2BA0DDFEC2E89C4915 /* RCTBaseTextViewManager.h */, - B52CB1ACB7A84D9FC0D03DC364F8E60F /* RCTBaseTextViewManager.m */, + 34195E9BC139FCFC89A26A5247F9CD5D /* RCTBaseTextShadowView.h */, + 277AC889C0E5DD1572E3A3335A4D8EC6 /* RCTBaseTextShadowView.m */, + C696230B5CCAD74B2597D307D859B5C3 /* RCTBaseTextViewManager.h */, + AC9AFD5FD5F68D0EE8EC148F0108C8E3 /* RCTBaseTextViewManager.m */, ); name = BaseText; path = Libraries/Text/BaseText; sourceTree = ""; }; - 70AC4CCAAC3C9AE74455E834451A25EB /* RCTBlob */ = { + 731A589DB0CFF0D82F95BCC83B2D9E2E /* Text */ = { isa = PBXGroup; children = ( - C20106F7FA1FD2E499EDF3D7E68E28EA /* RCTBlobManager.h */, - 563998BE08F0A4179BFFDFF2CE1079BA /* RCTBlobManager.mm */, - A9254C873AC173E76B1DAE455F06B7C4 /* RCTFileReaderModule.h */, - AE8125E058BDF23E9CE0487A22496FD2 /* RCTFileReaderModule.m */, + 23080344C88F73955696F430C620948A /* NSTextStorage+FontScaling.h */, + E9DF20B10C54A9A3EB51486DF606A2E8 /* NSTextStorage+FontScaling.m */, + 51AE04DDD566AE55528339F5BC500439 /* RCTTextShadowView.h */, + FE1214656372443D0286EC9E1C799679 /* RCTTextShadowView.m */, + 7C5084EC930C8FFA526FA69EE17C0A83 /* RCTTextView.h */, + 80C5CD225D53424B349057E6B6CF29FB /* RCTTextView.m */, + 636379DA2165EAF1354686875952B932 /* RCTTextViewManager.h */, + 442DBCA6E7C4FF9522CF1BF62B7EF3BC /* RCTTextViewManager.m */, ); - name = RCTBlob; + name = Text; + path = Libraries/Text/Text; sourceTree = ""; }; - 76987EBA4C30C6347A165291564EC8F1 /* RNImageCropPicker */ = { + 78E481F9F602B6B30D3BCA41C3E8FD21 /* RCTLinkingIOS */ = { isa = PBXGroup; children = ( - B026137DEBC8CD6B5287B1513DA67637 /* Compression.h */, - 0ED00858C057A370F5E09C8DC30CF24F /* Compression.m */, - A9FB701B166EC19983573211D713A782 /* ImageCropPicker.h */, - 3AC0FC295B279E71F32C9D9A16B8CAB9 /* ImageCropPicker.m */, - 3FE7C728DAABA5CB9183137453B05C98 /* UIImage+Resize.h */, - AAD89152C28A2161656B81B0777B24C2 /* UIImage+Resize.m */, - EA183874C904A33E9B89C86B8F35273D /* Pod */, - B9DF3107374F924D906A19D79300D792 /* Support Files */, + 9F910A57BD5FDB211E1A0F1AF4E0A7AE /* RCTLinkingManager.h */, + F41C99C4D94C7F6BC004542EE00A37FB /* RCTLinkingManager.m */, ); - name = RNImageCropPicker; - path = "../../node_modules/react-native-image-crop-picker"; + name = RCTLinkingIOS; sourceTree = ""; }; - 7904AEB8C06AD57000338720739970EB /* Support Files */ = { + 7EAA2C15B19C21DEA14FD5B91F130577 /* react-native-splash-screen */ = { isa = PBXGroup; children = ( - 7059A0EA7E394745C48FE5A62D7162BD /* react-native-splash-screen.xcconfig */, - EDFB3FBB81DD62BB8EAF443CBF1543A8 /* react-native-splash-screen-dummy.m */, - 25D726B05BBFBBA169946F59636D037D /* react-native-splash-screen-prefix.pch */, + E2FC1854499228193D6DA848079460D8 /* RNSplashScreen.h */, + 1774894313C68CFAFEF31709D575380B /* RNSplashScreen.m */, + 91BABF307392A72EE3E0C7F58CDEF987 /* Pod */, + B4A2E661F74CDA66A77A7AC0C2231EA4 /* Support Files */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; + name = "react-native-splash-screen"; + path = "../../node_modules/react-native-splash-screen"; sourceTree = ""; }; - 7FD5DB4B88613D183075DECBA9934678 /* SafeAreaView */ = { + 7F8E61DA7BC0D8E96039E059AF3FFB46 /* Core */ = { isa = PBXGroup; children = ( - 0E0E846C110B7BFC9C55D5FC0328E84D /* RCTSafeAreaShadowView.h */, - 7E17A7CFB24D7A38190D08E61C26F485 /* RCTSafeAreaShadowView.m */, - 595BBBF07E4EF2CBF65B3E9EC70F9810 /* RCTSafeAreaView.h */, - 650EBDC77ECF37144D0728C6534F6173 /* RCTSafeAreaView.m */, - 0BD24BADD4C894A430BED60D1D2CE187 /* RCTSafeAreaViewLocalData.h */, - 61AB2C57569542CD6BF181791BE67D18 /* RCTSafeAreaViewLocalData.m */, - 69F489DDFF00380C81B1A59346478644 /* RCTSafeAreaViewManager.h */, - F72FBA9500CA6A95B57377539D4EDB47 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 7FECF8FF1CA73664D070D5877FB7CE56 /* Pod */ = { - isa = PBXGroup; - children = ( - 1F64B052A70EC6E90D7C37ACB7C2B806 /* LICENSE */, - DA2EFA9AE89E1114DD9EBB8925871E7B /* react-native-orientation-locker.podspec */, - AEB00451BAAC7D81526787EF1B8C5E59 /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 834280FDAD7ADECA48A04781D94A694E /* Core */ = { - isa = PBXGroup; - children = ( - 1D0F80E98D16E8EC96DBB0FE452DAF1B /* Base */, - 1948F902DF73EBF164DAF885BA889497 /* Modules */, - DC57E5C91D37BD9115D44B9CAFE7ED0A /* Profiler */, - CB1ACFAA5A4C55436BA63C8F09DA90DF /* UIUtils */, - A123FB673BBEF5F98CDDA1341BE59AA7 /* Views */, + DDBF4C27D302DA228768F9AA4CC3B5DA /* Base */, + B86C7565D95A5CDEC572C10CFB221763 /* Modules */, + E9D8A67CE06C2800474DFA1EC19A844F /* Profiler */, + CE056CE45DBFD450C7B3715DFCA7F44B /* UIUtils */, + 3505728E8FC0B4C3D471EA38DBCD0442 /* Views */, ); name = Core; sourceTree = ""; }; - 8689B249F0B16576ABC4C54D4315AC57 /* Pod */ = { + 806CEC2D36D825B91131D48259948500 /* Support Files */ = { isa = PBXGroup; children = ( - 36DDA5AF7C5E9130F7887D8A8DDDE9EA /* LICENSE */, - E42C952C62624B6E9214A9FE7D19D27F /* README.md */, - 9AA939205D04DA4ED4C4A20C8CE3849F /* RNScreens.podspec */, + C5E35835715A8A3C60E24C0BE203CBCB /* yoga.xcconfig */, + C1AFF362C1C24A3E0C0D9CE5AAC59EFF /* yoga-dummy.m */, + D5392B2572B80606458B3795CDE4C2BD /* yoga-prefix.pch */, ); - name = Pod; + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/yoga"; sourceTree = ""; }; - 891A8680C6817AEB3BD6F0BBD2649FF7 /* React */ = { + 8542FBAE80BD53EA2360611053D9EC68 /* RCTImage */ = { isa = PBXGroup; children = ( - 834280FDAD7ADECA48A04781D94A694E /* Core */, - EAF76C5680E066F5D70F2ECC5AEA7558 /* fishhook */, - FDD5A8DEA56D2335B0267C453B1B8028 /* Pod */, - DAD8C9383A42655F2C6374B2CA0B08EF /* RCTActionSheet */, - B4BD5C1043480464120C4D78AAEE402F /* RCTAnimation */, - 70AC4CCAAC3C9AE74455E834451A25EB /* RCTBlob */, - 170DBB7D762C5A7869292FCC1C792413 /* RCTImage */, - 67FB5E5CC02A00E797D52D90ED757D8F /* RCTLinkingIOS */, - 8BFA2909408334F3ABD0E06E70284705 /* RCTNetwork */, - CDD4CB190D6A3CC3FCFE5A1AE1532D45 /* RCTSettings */, - 2BA6F76EB5BC59E8868BF3BBAF78C612 /* RCTText */, - D616AA05C6276D57B8682B6950E95ED7 /* RCTVibration */, - 270432902CDF3B5571531A84CA7AE255 /* RCTWebSocket */, - 42DF240DF39030CEE822DE4B1EED9B50 /* Support Files */, + B92A7F07EA5460EA52AD8D6BE803DDCE /* RCTGIFImageDecoder.h */, + 686CB85643DC17E5B35FF62D3087D93F /* RCTGIFImageDecoder.m */, + 25E1248CF61D4082EB9E43930E39EEA4 /* RCTImageBlurUtils.h */, + 6D0F1E6BB2FE39A8C71B500AEEBCFA52 /* RCTImageBlurUtils.m */, + E7E464FFA399AA65092254914BB29CE4 /* RCTImageCache.h */, + E7EE291BCD5C81901E897364D7B341E9 /* RCTImageCache.m */, + 3BF54326DA25F4D7200AB01841993D1A /* RCTImageEditingManager.h */, + 2B89A3B0ABEE8873B86A09E810EA0960 /* RCTImageEditingManager.m */, + 8DE05D068610C1B865FE02215676279B /* RCTImageLoader.h */, + FF8111B75B4A8803F18264B5D3583DA1 /* RCTImageLoader.m */, + 6D20DB62D0F1F61AC148785320E11622 /* RCTImageShadowView.h */, + 19228B7BF7432D03962F5B186F3952C3 /* RCTImageShadowView.m */, + 95E18AB24FB8712691231B5872FBC6CB /* RCTImageStoreManager.h */, + D98670251CE56461121F8B24E4AD1434 /* RCTImageStoreManager.m */, + 0DCF37D985F06FDFDE7A4FAE506F32C7 /* RCTImageUtils.h */, + 1FC21E5C25656A7E369C98BF4FDDFDEA /* RCTImageUtils.m */, + 71AA2A5781BA84D90E165A9D9B90D8E6 /* RCTImageView.h */, + B5E1CA190DB9995740BB707583E14E5B /* RCTImageView.m */, + EDB994FE44EC0BA0226F4B57A786FE22 /* RCTImageViewManager.h */, + D726D71B3433F1DA767E4C1F1D99CF1A /* RCTImageViewManager.m */, + 30843AC296AB1AC7A4C631B4B514AE6D /* RCTLocalAssetImageLoader.h */, + 2EC77E38AAB66BAFEBAEE673161E67F7 /* RCTLocalAssetImageLoader.m */, + 53F337AEA64609394BCBE64E95EC535F /* RCTResizeMode.h */, + 9871657A28E4157DCCB1920A8DEF0637 /* RCTResizeMode.m */, ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 8BFA2909408334F3ABD0E06E70284705 /* RCTNetwork */ = { - isa = PBXGroup; - children = ( - 936F14168D95A9419E8B779532617DC5 /* RCTDataRequestHandler.h */, - 4EC67A7C3A0E43F29D0B6C81BD30FD0C /* RCTDataRequestHandler.m */, - 82A64A66E74500740B4A668AD3ACE0BE /* RCTFileRequestHandler.h */, - 0CDC1A093282C711672BE7709142B4B8 /* RCTFileRequestHandler.m */, - 3AA0868E7AEA6B309952FEF68C022874 /* RCTHTTPRequestHandler.h */, - 75CDD7F27A01B6F41948CD70220D0474 /* RCTHTTPRequestHandler.mm */, - 26867A52356E0E63067AA95C229AA7A6 /* RCTNetInfo.h */, - 26FA148EB752C1AA469A0614DD03B23A /* RCTNetInfo.m */, - 2CEFD360C50C98161055F940F696285E /* RCTNetworking.h */, - CCAE0090B5A2FA4AEB464C1EC4B5E2D6 /* RCTNetworking.mm */, - 8CC37963EED2F382EF45842E80782EC8 /* RCTNetworkTask.h */, - 98D963A101F8936507EFE71622A3A993 /* RCTNetworkTask.m */, - ); - name = RCTNetwork; + name = RCTImage; sourceTree = ""; }; 90DEBCC479295D1B722510884A5B1C59 /* Pods */ = { @@ -1522,300 +1508,307 @@ name = Pods; sourceTree = ""; }; - 9940230F2E845ECDAE0D3A64F59A55AD /* Support Files */ = { + 91637BA49B26B160F9A83933CC8760E2 /* fishhook */ = { isa = PBXGroup; children = ( - 1CBEF7C66A9A51F36011C0EAB6241095 /* yoga.xcconfig */, - B47E935B4EB0BE7E7DE38DCAB725340F /* yoga-dummy.m */, - 03FD7BFC1F2F6B5FAD1AC23548FF29BC /* yoga-prefix.pch */, + 9B2EEE3DB2F32EB1E3500DB7BD023A69 /* fishhook.c */, + E9DC26E11673AE9E5204666AEEDDCA9E /* fishhook.h */, ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/yoga"; + name = fishhook; sourceTree = ""; }; - A123FB673BBEF5F98CDDA1341BE59AA7 /* Views */ = { + 91BABF307392A72EE3E0C7F58CDEF987 /* Pod */ = { isa = PBXGroup; children = ( - F268146C1C7C9786D95E98F8E625DB0F /* RCTActivityIndicatorView.h */, - A9961A6D55D02DB57912ED7AADA62827 /* RCTActivityIndicatorView.m */, - 3C30AE8206C396D40BBCFCA2260672AC /* RCTActivityIndicatorViewManager.h */, - B7BECC67C175AFECCE05451B0E78C9DA /* RCTActivityIndicatorViewManager.m */, - 86D0E2114A2970137C854C7ADC47C651 /* RCTAnimationType.h */, - 5D8F79AD8E49996EA3B368852E1B1ACC /* RCTAutoInsetsProtocol.h */, - 2742959020C0FEF901E710C95E8CD50D /* RCTBorderDrawing.h */, - 0A1D39A41BE67E3EBD07F183B827804C /* RCTBorderDrawing.m */, - 7BDA32F18AAA1E9DED3AB89CFEDED5C1 /* RCTBorderStyle.h */, - 8D7AB0E77E5F0B7023775103CCA2AC23 /* RCTComponent.h */, - 08C1F2C36BE3F2F2714B16D359E3BC0C /* RCTComponentData.h */, - 0BC6E0644CCBA488889A471E65B6F0A5 /* RCTComponentData.m */, - B318FFB4B464F78B39D6D0B54FDE97D4 /* RCTConvert+CoreLocation.h */, - A7EC0B2D5A21D30FEE6FE3E4AC78CEBC /* RCTConvert+CoreLocation.m */, - C3F916E41B4827F6980C1DC4D4A60FAA /* RCTConvert+Transform.h */, - 4F71F1BFA642FCB6BBB414644522E96A /* RCTConvert+Transform.m */, - CB6A6146E8A115DD82E6FBAC774D5A2C /* RCTDatePicker.h */, - B1832FEE2B568DE53623A7008609D278 /* RCTDatePicker.m */, - 0CBC9B8DCD174D77C57F426710FB1632 /* RCTDatePickerManager.h */, - 43D77BFF15C71BBC0B692247F947543C /* RCTDatePickerManager.m */, - 68DC443D538B177D6E528650FFC6569E /* RCTFont.h */, - 62ED903F01938E7B3D3A63EB4BC4AFE1 /* RCTFont.mm */, - DE8FE4A41F05BE8D83590DD6382A7FDC /* RCTLayout.h */, - C0A2653B6B836DBFE838F5D4398507A1 /* RCTLayout.m */, - FEE6B06681B746489883625FCED01A3B /* RCTMaskedView.h */, - 417B11918AE3693041FB5B101C4F6D7D /* RCTMaskedView.m */, - 49F008DBFDD3DE07F91E97780EAFD91F /* RCTMaskedViewManager.h */, - 3EC25D80B47D0F4C718BB04994D157F0 /* RCTMaskedViewManager.m */, - 00514A2A1FDC4CF6DF9CC90C4C8CA70E /* RCTModalHostView.h */, - 243E63D4F92E31506460FA18659B3928 /* RCTModalHostView.m */, - 5376860F2D5B2CECA759406A2E352821 /* RCTModalHostViewController.h */, - EFA54538ECFB82A89BB6F9EB0CD8051B /* RCTModalHostViewController.m */, - 46FFE90051DC023E3D60F19B4C21261C /* RCTModalHostViewManager.h */, - A66649A75AC5EE27F88DDC6D7670A608 /* RCTModalHostViewManager.m */, - 137B3802135416BE218BAF67690F10A7 /* RCTModalManager.h */, - B4BD5FB79973BC44F32633D02309002D /* RCTModalManager.m */, - E77478272C0E636EC4B9B73FA81334AE /* RCTPicker.h */, - FA6C8BED4536145B3A3F6C5A32EC10C6 /* RCTPicker.m */, - 23CA610514E110DFAEF8805100B31687 /* RCTPickerManager.h */, - CBCE8244E0EEF1BAE24CE44A090A9928 /* RCTPickerManager.m */, - 6855ECC7BA797EBE0C57D6904E81611F /* RCTPointerEvents.h */, - B377A2EAB53ECE9B0864A99515A74C7B /* RCTProgressViewManager.h */, - D9088966D0A5BD33952D523C2E522849 /* RCTProgressViewManager.m */, - 266D28A1E6266B9FBC6035DD0840235A /* RCTRefreshControl.h */, - A146562F703870471C4135893C4FEEA6 /* RCTRefreshControl.m */, - 65BFE3F4591E5D73F2C2579CC848FE47 /* RCTRefreshControlManager.h */, - E3AABE31BC3425049FD4616034256F30 /* RCTRefreshControlManager.m */, - DB5FC833E29AF196E7720E488CDA3395 /* RCTRootShadowView.h */, - F8C66FE78B0700BF69630740142E7062 /* RCTRootShadowView.m */, - 8B11ED4D8446258104D1377F660BC16F /* RCTSegmentedControl.h */, - 7ECFD4785B8B4C3D6B9E066292066004 /* RCTSegmentedControl.m */, - 0C68ADAC6563981992ED70CAB73FDF9F /* RCTSegmentedControlManager.h */, - 00D56C9AB060D3393DAF838F0BC7222B /* RCTSegmentedControlManager.m */, - 9723584C13DB4AAC329AF516B8FA9986 /* RCTShadowView.h */, - 977B4AE4FF0B805DF9FB61FE0307F26A /* RCTShadowView.m */, - 188C43C9ED519A9F78C13CB971DB6215 /* RCTShadowView+Internal.h */, - AF659680BCFE5758A02D774C4A72A47F /* RCTShadowView+Internal.m */, - 740A644B2A6DBC6C47B77944E4298DAC /* RCTShadowView+Layout.h */, - CF6BA97244BB424AF032C6913D41D451 /* RCTShadowView+Layout.m */, - 8130538E8607C685C10F194D6B26D171 /* RCTSlider.h */, - C689E64159AEEA40211F23D668343F88 /* RCTSlider.m */, - 1BE7D33B8478DFC033C77554F627EFD0 /* RCTSliderManager.h */, - 10C7E968D8636468177F7A44328C0F49 /* RCTSliderManager.m */, - 8DDBB4580DAA6CF7E5DC989C33611559 /* RCTSwitch.h */, - 32D4CEB33682DC80303DD7F911B23031 /* RCTSwitch.m */, - 0802CCEE40B0CBE19DB8640AE8BFDF1C /* RCTSwitchManager.h */, - F74927D59C3926FDC30F224101226302 /* RCTSwitchManager.m */, - 8C66EC017AA7FD72EEAAB27BEA5AC8CC /* RCTTabBar.h */, - 3B32157A75D0C049113F71E8CBF7B57C /* RCTTabBar.m */, - 4D13063D3ED866C31991966AC6249F68 /* RCTTabBarItem.h */, - EBBDA5D2BB268936466B92CC19310FBC /* RCTTabBarItem.m */, - 8D9FB422BB001864E8C32179A1D9D092 /* RCTTabBarItemManager.h */, - D954952372395B97ACC6EDEE83062EA2 /* RCTTabBarItemManager.m */, - 0393DA4BAE0F33D6F787162E877663F7 /* RCTTabBarManager.h */, - 15B1DDDF3B4B74556B4468F3BA616F71 /* RCTTabBarManager.m */, - 0CF81288F143A742B76A5BC43D16F994 /* RCTTextDecorationLineType.h */, - A04967F27C92811B015FAEF929AC7822 /* RCTView.h */, - A8E4EAC3A5076DF0F5018B58AF0762AD /* RCTView.m */, - B5AD1E403664B2FBC2E31957CA59ED57 /* RCTViewManager.h */, - 03D594315A2D63DF4075437775B1C059 /* RCTViewManager.m */, - E41D573E3B53EF4D2BAA047A96FF6510 /* RCTWebView.h */, - 87D94C3A893DFB1F134745713BA6F814 /* RCTWebView.m */, - A856F4778BC833B74EE6FAB7688F73AE /* RCTWebViewManager.h */, - E574F27D079F4550B79C0AA9B471FF25 /* RCTWebViewManager.m */, - ACCBF0D0C4E018CECF67AD077C544ED4 /* RCTWKWebView.h */, - 43E21722FD1595CEEC0C501900A8BE60 /* RCTWKWebView.m */, - 8FB5BF8CCF5218DCABBE79DA9180C97A /* RCTWKWebViewManager.h */, - 1D2FD843A4F0D88D80E17A87CFD2F029 /* RCTWKWebViewManager.m */, - 62E95488A15EC81935F4FFFE5C51E537 /* RCTWrapperViewController.h */, - 8918C2BFBAFF24B55113088854A9AEE6 /* RCTWrapperViewController.m */, - C55291E9E75296D5EFFDC672D78489EF /* UIView+Private.h */, - 06E2D9E7CB9588499734C6C10CEB1328 /* UIView+React.h */, - 5D32426FAF18CCF78BDE677F15FBD486 /* UIView+React.m */, - 7FD5DB4B88613D183075DECBA9934678 /* SafeAreaView */, - AB0CC92F3F1A134E607F2090AB06019D /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - A8BA79C790D2B24E3D7ADDD92090F412 /* Drivers */ = { - isa = PBXGroup; - children = ( - 9B247E00598331D6C8E57431535A9AF0 /* RCTAnimationDriver.h */, - CA65D7FA7BEC50EFEB9C34C47B0E70B6 /* RCTDecayAnimation.h */, - FC755C85A89B676B6C121B03FCDDB5A4 /* RCTDecayAnimation.m */, - B230ADE88ACD462410387DAAF318B625 /* RCTEventAnimation.h */, - 3A93865D02C7E096A714023D9EE59743 /* RCTEventAnimation.m */, - F0D5A41E5836CBD801A7E83428AC8B9A /* RCTFrameAnimation.h */, - DFB8E920A2DA14D79972FCE537306B3B /* RCTFrameAnimation.m */, - 874ED67387D772372100E6FF780E55A0 /* RCTSpringAnimation.h */, - 3E2D93FD43DA0DB543333C665D72F005 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - AAF0A79C69200B3804E3951A3410482F /* Pod */ = { - isa = PBXGroup; - children = ( - 21F81D66B6EA927E43A4D37DBAF19A28 /* yoga.podspec */, + B95A973B5E20BB8E3A18BCA91D409A34 /* LICENSE */, + F28A360DD08BF71F075F387CA4CB795E /* react-native-splash-screen.podspec */, + F95E30AB79072AA1B8A982FFB8E8DE5C /* README.md */, ); name = Pod; sourceTree = ""; }; - AB0CC92F3F1A134E607F2090AB06019D /* ScrollView */ = { + 93696894B219E8BD15C5F958E776E7EC /* ScrollView */ = { isa = PBXGroup; children = ( - 029E32F20DC05FBB5F9A8726E92A59F9 /* RCTScrollableProtocol.h */, - 7F57D59936846D9831CBDB383093E9BF /* RCTScrollContentShadowView.h */, - BAB07EA45C7EE54561929B4706389D44 /* RCTScrollContentShadowView.m */, - 081CD5D3366AA96DFCD32A5F9386EF07 /* RCTScrollContentView.h */, - 9A906B69A37E40A4ED5FF63BE6A91C4C /* RCTScrollContentView.m */, - A18579D1109D274B3733B89EA271454A /* RCTScrollContentViewManager.h */, - C5645377732150F0C2AC31992A0F1D68 /* RCTScrollContentViewManager.m */, - 8682BD7390FE9F1E5F727B9F50FDA9E7 /* RCTScrollView.h */, - 448FD17844FFC72B15E97C0AC910C5D5 /* RCTScrollView.m */, - 6619DF02B5F385F8DD192A93359BB4F3 /* RCTScrollViewManager.h */, - 1BCE42A6904C1B35538ED3C6E997E1D5 /* RCTScrollViewManager.m */, + D4C09830BA97883A3E92315BB70D96D5 /* RCTScrollableProtocol.h */, + 2C1D0AEBC9283524EDDD7526D86CF9A2 /* RCTScrollContentShadowView.h */, + 8D994BB4263BBEB87ACEBD7DCEB944DD /* RCTScrollContentShadowView.m */, + 58C917DED6CCFD5EFA71E1AC80696688 /* RCTScrollContentView.h */, + 291BBF50C34DC84A556905870AE6D230 /* RCTScrollContentView.m */, + 4C1BFDBAB7FF79D89BAE098C2C7E5A96 /* RCTScrollContentViewManager.h */, + C7A5152B9D194B1E20A2DB3323144BC4 /* RCTScrollContentViewManager.m */, + C4F9B576690A3F2FB4461943D081DF11 /* RCTScrollView.h */, + B8952A71481F9D8BADB399E8BCC7816D /* RCTScrollView.m */, + 3EABFAE56D8151F22D493ABBAB766EB2 /* RCTScrollViewManager.h */, + 20B1B5ABF4238DFB01C104FB138059EB /* RCTScrollViewManager.m */, ); name = ScrollView; path = ScrollView; sourceTree = ""; }; - B2F919BCFD3BFD575A1442DC85C8CD80 /* Support Files */ = { + 99C1E19F6D1B9DE9367528FB583AF2E7 /* RNImageCropPicker */ = { isa = PBXGroup; children = ( - 83091F8332BEB1A0570BD29ED6AEBF38 /* RNScreens.xcconfig */, - E42C5611C2E78039F2DBC5B7E4EF8842 /* RNScreens-dummy.m */, - AC6E6CEAB04FA1B9D28B8E92B0BCAE44 /* RNScreens-prefix.pch */, + FC7D7FA94CB9215948D678D7F67543A6 /* Compression.h */, + C75DA7C2FA53ADD1AB6EE5C338D65C71 /* Compression.m */, + 797CA4FB5D0378B336872FCA78D43A0E /* ImageCropPicker.h */, + 944748437BA20739B0DA6D60197C7A45 /* ImageCropPicker.m */, + 2250147A437E5B9CF73DF5B62571FF88 /* UIImage+Resize.h */, + 18CA3F1E9C3217AA0AC954A18DF7C04A /* UIImage+Resize.m */, + 497B9BC380D109EBF12CB1B188A8AE22 /* Pod */, + 12FE124C0F1D0C77A0CD72268A366C8C /* Support Files */, + ); + name = RNImageCropPicker; + path = "../../node_modules/react-native-image-crop-picker"; + sourceTree = ""; + }; + 9B02FA063A180AAB28D2EEF42D88B866 /* Surface */ = { + isa = PBXGroup; + children = ( + 58B63F9ED7B4A782DCB58860BD3A52F2 /* RCTSurface.h */, + 51747483AAC76DF379B6EB76D3110220 /* RCTSurface.mm */, + D1510692E93A84B4BD0DC1EB067E74AF /* RCTSurfaceDelegate.h */, + B3A6ECB803C57E458B3C26594CC6CB57 /* RCTSurfaceRootShadowView.h */, + E7FF6267A04029A18D6884080A2A8B02 /* RCTSurfaceRootShadowView.m */, + 81482E5A07A75A00AD0F863B8BF3053D /* RCTSurfaceRootShadowViewDelegate.h */, + 682698C1DA04FDC8F37003782FFD26AB /* RCTSurfaceRootView.h */, + 282222649BEFDC72AD39AC87FF1AB9FB /* RCTSurfaceRootView.mm */, + D7A72C74AC0EE624922DEBD55175E27A /* RCTSurfaceStage.h */, + 51F1A44A424A174C817A737C9F396672 /* RCTSurfaceStage.m */, + B95347AA3066F698145FC492887DAA32 /* RCTSurfaceView.h */, + 151D0B35EC9C8D9B597F1F651DB3A671 /* RCTSurfaceView.mm */, + 6E3A8CDFAF4E268DBD988791568FA420 /* RCTSurfaceView+Internal.h */, + 27614B4DF1FD0E9E99353635A83BAD17 /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + 9D4E69C578049D180031E2C649DA4DE2 /* RCTBlob */ = { + isa = PBXGroup; + children = ( + 51DADA9D79F0298E290A5E7115C13C0F /* RCTBlobManager.h */, + 7DD57D7A5BEAE0E2BC42B76A8BD7786E /* RCTBlobManager.mm */, + F5DE58B21EFB233D34A6D0EDD41D6C41 /* RCTFileReaderModule.h */, + 5220C1AED11A44378DB20EDC255C6E98 /* RCTFileReaderModule.m */, + ); + name = RCTBlob; + sourceTree = ""; + }; + A265C5311AF75F28BCFEC62983997283 /* Support Files */ = { + isa = PBXGroup; + children = ( + 91ED0271979CB14C165D67E731E96951 /* react-native-webview.xcconfig */, + 3A796E3FA7F8956F287FE8056D20B196 /* react-native-webview-dummy.m */, + BF9E16CA6405AA488986CA2AE874D1AD /* react-native-webview-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-webview"; + sourceTree = ""; + }; + A588A545C826C65E21B1D78CA67C6947 /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 3A863FD623E1E24B30698E8F7E04F86E /* RCTSafeAreaShadowView.h */, + 2AE27B19473F6E9D6C808E1CDD0F810C /* RCTSafeAreaShadowView.m */, + E5C445C89347660CB981512D3B7614FB /* RCTSafeAreaView.h */, + 8465C6F9FDC53E0759FFDB6D5E2146B6 /* RCTSafeAreaView.m */, + 3993C647D4DB51C11E3E155729FAE582 /* RCTSafeAreaViewLocalData.h */, + 7BDE7552FB0946A41A6DE62FD4130829 /* RCTSafeAreaViewLocalData.m */, + 153DC4806249EB398C6F0231DB2A60CF /* RCTSafeAreaViewManager.h */, + 84815AB0B8BF07B5B39807A8CB2FB5B7 /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + A8DE1952314C068FC73830C33780DC98 /* TextInput */ = { + isa = PBXGroup; + children = ( + 6D0DBB575674A50524916E24866E1579 /* RCTBackedTextInputDelegate.h */, + 830ABA858252EB68CB233B63E915C03C /* RCTBackedTextInputDelegateAdapter.h */, + 8398F9B37B46C377312E98B1657DBFB6 /* RCTBackedTextInputDelegateAdapter.m */, + 7EB18F522F26150DA2122BC6ACFB575F /* RCTBackedTextInputViewProtocol.h */, + 293EA912FE28D7E135D509C0EE052703 /* RCTBaseTextInputShadowView.h */, + A3F3042202CC2ABD65302660F7ED79AD /* RCTBaseTextInputShadowView.m */, + 105B36E9E39292A75D9B6557BD3C87E3 /* RCTBaseTextInputView.h */, + A353A3A72F967BA50182167855225BB5 /* RCTBaseTextInputView.m */, + C6B762251B1EDCE8F1C94511FBB2AFBB /* RCTBaseTextInputViewManager.h */, + 8E76A763ACC79C2A0C087DF9980B82E5 /* RCTBaseTextInputViewManager.m */, + 64F9F0152CF9910465BEF868330C08EC /* RCTInputAccessoryShadowView.h */, + F8690C9A69628759EB79791D0904F5FB /* RCTInputAccessoryShadowView.m */, + 35CF8F44C47AEBB21AF361D8F3E87C12 /* RCTInputAccessoryView.h */, + 58273BF605B14C9BCA9CB752A378B1BC /* RCTInputAccessoryView.m */, + 553EE800D5141FD8835628473E04050E /* RCTInputAccessoryViewContent.h */, + D7A47AE3BD6509C48AE4AA95663A9454 /* RCTInputAccessoryViewContent.m */, + 367CBFC3744CDF150D460E14B0B07CE8 /* RCTInputAccessoryViewManager.h */, + AC8E9DB8783388C82A695D9FBE7F1795 /* RCTInputAccessoryViewManager.m */, + 599D17A91B39465F126186EFB752947D /* RCTTextSelection.h */, + 60D44DDE64087BB5BBF18A68B5A6597B /* RCTTextSelection.m */, + 1A555DEF3939F86ACA037BEDB8343CF5 /* Multiline */, + 6B0F5F8439CA9261B19698174A2E08AC /* Singleline */, + ); + name = TextInput; + path = Libraries/Text/TextInput; + sourceTree = ""; + }; + AE53A221EA4CE5CC76DD7B76A5C030CC /* Support Files */ = { + isa = PBXGroup; + children = ( + 531B5BA23F414157657B78B33D1CEB42 /* RNScreens.xcconfig */, + D5108B70B861F199A48876813618D9E9 /* RNScreens-dummy.m */, + E1E85D53C6FDB812D8AB1E03BE43841B /* RNScreens-prefix.pch */, ); name = "Support Files"; path = "../../ios/Pods/Target Support Files/RNScreens"; sourceTree = ""; }; - B4BD5C1043480464120C4D78AAEE402F /* RCTAnimation */ = { + B39E246B1751AD9C8FF62A8BAB89CCF5 /* Support Files */ = { isa = PBXGroup; children = ( - C23FD66B46526F94BA6CA5B587D4E5B8 /* RCTAnimationUtils.h */, - 4C9E983A4ABA106075B6401F65435FD4 /* RCTAnimationUtils.m */, - 4340CE76453F3D58DBC213F2A57B4C21 /* RCTNativeAnimatedModule.h */, - 635B42A2B758B27CACB17A0DAFDDAEB7 /* RCTNativeAnimatedModule.m */, - A5414E0AA7C06AAB555A30487338E3F2 /* RCTNativeAnimatedNodesManager.h */, - 4963E1E03DA7158419F3C736824C0F09 /* RCTNativeAnimatedNodesManager.m */, - A8BA79C790D2B24E3D7ADDD92090F412 /* Drivers */, - C94502C816BAAE56CADE85C9FBB25883 /* Nodes */, - ); - name = RCTAnimation; - sourceTree = ""; - }; - B7C2B707C778D35766A01758E0CFFBD4 /* react-native-splash-screen */ = { - isa = PBXGroup; - children = ( - 68FCAD0F17C38CB134DA66E2627D4F3F /* RNSplashScreen.h */, - 2F54ED452715CC564C1F8B274DF05AB4 /* RNSplashScreen.m */, - 0DF7B2F5B385405D759D59FFE271A414 /* Pod */, - 7904AEB8C06AD57000338720739970EB /* Support Files */, - ); - name = "react-native-splash-screen"; - path = "../../node_modules/react-native-splash-screen"; - sourceTree = ""; - }; - B9DF3107374F924D906A19D79300D792 /* Support Files */ = { - isa = PBXGroup; - children = ( - D0530A6773039FABBA72DB3A990536E2 /* RNImageCropPicker.xcconfig */, - A85D19F52A8A3E03D576F447C82D7BB6 /* RNImageCropPicker-dummy.m */, - E7D1AB9485C44C8BA81BE7615CC094F7 /* RNImageCropPicker-prefix.pch */, + C2402DBC29E396FD752B27062D3D93B5 /* RNDeviceInfo.xcconfig */, + 4D72FB0684E0D6D61FACCF26BC7A4C29 /* RNDeviceInfo-dummy.m */, + 4CE93577BAF26F2114EF3CBC9BA67980 /* RNDeviceInfo-prefix.pch */, ); name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNImageCropPicker"; + path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; sourceTree = ""; }; - C94502C816BAAE56CADE85C9FBB25883 /* Nodes */ = { + B4A2E661F74CDA66A77A7AC0C2231EA4 /* Support Files */ = { isa = PBXGroup; children = ( - A83CB151E3CE529F2FAFE98E386D63C3 /* RCTAdditionAnimatedNode.h */, - 531EC6426E5EADE07C43F3E82A081497 /* RCTAdditionAnimatedNode.m */, - 285861B2CC114A855A7A965EE0040E7E /* RCTAnimatedNode.h */, - 7E1DDFC978C6E77D0A6F811908557BC3 /* RCTAnimatedNode.m */, - 58A965CF696CCB21C81DB3CE0DF589EE /* RCTDiffClampAnimatedNode.h */, - AAF944EF32D4A0552CEE83DEDC494C15 /* RCTDiffClampAnimatedNode.m */, - 8D62AE4044E6CFD64A2AB246C5DC881F /* RCTDivisionAnimatedNode.h */, - 2812AAD92D43A3296DD971563DFC8557 /* RCTDivisionAnimatedNode.m */, - C09135E58DF63A82441A03FA131DE6D6 /* RCTInterpolationAnimatedNode.h */, - 672038C8083A8B4BA1E5775A5AFC9361 /* RCTInterpolationAnimatedNode.m */, - 9A3D85F2B9374FD1B58C3A12FB9A621B /* RCTModuloAnimatedNode.h */, - C1AFC694DE1E9FC489594C56F943A2D0 /* RCTModuloAnimatedNode.m */, - D3D2E7D9EB92ACAC1A30786A65F42162 /* RCTMultiplicationAnimatedNode.h */, - 21E4D7071CDC82A3A328FFC3F4FAF068 /* RCTMultiplicationAnimatedNode.m */, - 3DC2AD3C0A2D215CEED41FDCAFB13FA2 /* RCTPropsAnimatedNode.h */, - 551A094E25264E98C3FCC519EB8083BC /* RCTPropsAnimatedNode.m */, - 27FA111CA719AA36E3D3176C76357279 /* RCTStyleAnimatedNode.h */, - 71FF09946193A6EB5FF661F8F4ADF671 /* RCTStyleAnimatedNode.m */, - 76DF5E97CD0DA9DB71A589FD0D9B9B68 /* RCTSubtractionAnimatedNode.h */, - CB6710574E97ED0D0D6582CAE21FEB7D /* RCTSubtractionAnimatedNode.m */, - 091CA047CEB1BE74933EFF10BD5B4D05 /* RCTTrackingAnimatedNode.h */, - E12DB51E268F97950FCD638E17021A7C /* RCTTrackingAnimatedNode.m */, - C66D23BD7FA291C2A420D26120802156 /* RCTTransformAnimatedNode.h */, - 046787DCE49D0EB5D11B0CDDB4B15D7E /* RCTTransformAnimatedNode.m */, - 100414BDFD5485704873CC3CB1FA496A /* RCTValueAnimatedNode.h */, - 40CEDB12A0B4176611A7B92F698981D1 /* RCTValueAnimatedNode.m */, + 3C643456F4751DA618214E3EB46B5E94 /* react-native-splash-screen.xcconfig */, + 4F86E6FDFF14724A44D47FB658D37732 /* react-native-splash-screen-dummy.m */, + 543CB5066EC48CE7DF3DB0B6D2C9537E /* react-native-splash-screen-prefix.pch */, ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/react-native-splash-screen"; sourceTree = ""; }; - C9A6A76206EFBCE87EF87C0C31374050 /* RawText */ = { + B86C7565D95A5CDEC572C10CFB221763 /* Modules */ = { isa = PBXGroup; children = ( - BC9BB35D6305F97B38A96CEC76C34811 /* RCTRawTextShadowView.h */, - DD8B9039A3ECBAF3D750D3301458315B /* RCTRawTextShadowView.m */, - A92DA40421587A9AB5BF53EE34C4401A /* RCTRawTextViewManager.h */, - A3AB23990432F627324E97DCAECB0AB9 /* RCTRawTextViewManager.m */, + 4A0717979ABF6BEFBE01C43D8B924125 /* RCTAccessibilityManager.h */, + 9CC690CC5E5FAB10ED5FE884A6654E01 /* RCTAccessibilityManager.m */, + 06524462D21612BA405D0029BB170ED2 /* RCTAlertManager.h */, + 354DF97F04E0382FBFA532281082452B /* RCTAlertManager.m */, + F56BC9C2794410F266CC8239FA08ADD2 /* RCTAppState.h */, + D85307A994B891D45849A9E32CB70D90 /* RCTAppState.m */, + 595E12691E7C47EA574D309111EA5789 /* RCTAsyncLocalStorage.h */, + E6443E04FCDBF2C64D8584A993541946 /* RCTAsyncLocalStorage.m */, + 54827B2BD7583B431B510AB896693511 /* RCTClipboard.h */, + A7C3E128D6DEDDBD4FAE2634DFEE3AB8 /* RCTClipboard.m */, + F520BA72845E35631BC0D2A55D35DCF7 /* RCTDeviceInfo.h */, + 5E7B6B69F53ACC351D55118EE95D9208 /* RCTDeviceInfo.m */, + FB16985C29FEFA71FC073914A9701EF2 /* RCTDevSettings.h */, + 692FB69D968F0294C618FDF9B05BFCAC /* RCTDevSettings.mm */, + E6304B1B80954C32DC37C2305B28C93C /* RCTEventEmitter.h */, + 56B147A6FE4A9EB724141940096579D1 /* RCTEventEmitter.m */, + 8CFFB9B18315D87922FC827199D613D2 /* RCTExceptionsManager.h */, + FFD57E65764A25A633CCA4DD2EF2CE47 /* RCTExceptionsManager.m */, + 0A71D51D81CBDB334A40BACC8A263A30 /* RCTI18nManager.h */, + F1EEDECE83DC80AF5018C7737036CD2D /* RCTI18nManager.m */, + 03F5814BE651100C6704F6E311970CA6 /* RCTI18nUtil.h */, + 8954F1BF82D4092C62087639FAA7F894 /* RCTI18nUtil.m */, + DB1760AFCF23AF32C8D3C572848F8171 /* RCTKeyboardObserver.h */, + 09E7D873E4DBC2BAFC2D386A6388D859 /* RCTKeyboardObserver.m */, + 2D9517616A00C71EC8F7A231547A3BAE /* RCTLayoutAnimation.h */, + A3F5A1EB7C34EB7AFE6DBFD932A0FA04 /* RCTLayoutAnimation.m */, + FBD8ECD45C20AD507724D1C463351907 /* RCTLayoutAnimationGroup.h */, + 282AB70396B8D15545B021BB549352F6 /* RCTLayoutAnimationGroup.m */, + 4CD5EAD34FD7AD040F41A0E26EA046F4 /* RCTRedBox.h */, + 9CADF1CD749E90C297F7A0F2E5378085 /* RCTRedBox.m */, + 0DB5BCB4A6DEB224D74A5469103205C2 /* RCTRedBoxExtraDataViewController.h */, + 84014793990BAABA22E72F991B9F4816 /* RCTRedBoxExtraDataViewController.m */, + 559F978EBDD94324B988A4B878960567 /* RCTSourceCode.h */, + 6D7D6A977D3CC0942329CFB8AEE1056B /* RCTSourceCode.m */, + 9A93D3F0083F9E24BA91C4337D73B9C5 /* RCTStatusBarManager.h */, + F990D9E7D56D1CEDB80565ABCC62319E /* RCTStatusBarManager.m */, + 7937808C0309A370C876D390F3DB1562 /* RCTTiming.h */, + 875F12B7C0A3C300E311A8D1CD09724C /* RCTTiming.m */, + 3ACD84EF94FE131C73C77EA78D72D3C7 /* RCTUIManager.h */, + 8687273AAFA37E9B4866F40161D87469 /* RCTUIManager.m */, + D7A4AF2DD5E45991D1534A03D0374784 /* RCTUIManagerObserverCoordinator.h */, + FEB1BFDFB054FC6E4530C5D197A36027 /* RCTUIManagerObserverCoordinator.mm */, + 82FB3F7386DBC194789AED6B686989C3 /* RCTUIManagerUtils.h */, + CDB75CAD63BB23C62045E3B4049E1501 /* RCTUIManagerUtils.m */, ); - name = RawText; - path = Libraries/Text/RawText; + name = Modules; + path = React/Modules; sourceTree = ""; }; - CB1ACFAA5A4C55436BA63C8F09DA90DF /* UIUtils */ = { + C6AAF9F14374C45224991393D1FDB90A /* RCTNetwork */ = { isa = PBXGroup; children = ( - 47A195E33E073EB293C6FC190BB17BEA /* RCTUIUtils.h */, - 3712AAA3FDF0CF222FCE1CBC0F6D910E /* RCTUIUtils.m */, + 2FDC163C042E5D06810847431D4485A6 /* RCTDataRequestHandler.h */, + BF53ED13C1003E0AC70141FE1193257B /* RCTDataRequestHandler.m */, + A172FB768A2031A78104D1D9C0FB7DDF /* RCTFileRequestHandler.h */, + 9987B243AE59F0B9319599B1DF9CF706 /* RCTFileRequestHandler.m */, + D12DBEB6F0ABB8B80D05D682DF1AB303 /* RCTHTTPRequestHandler.h */, + D866ACE750349C23951D39B4138287D5 /* RCTHTTPRequestHandler.mm */, + 397BCFF7A7278FE3DCA8936E387FA5B8 /* RCTNetInfo.h */, + F5FB151ACF607775DABCFC35D39637C2 /* RCTNetInfo.m */, + 02B01019E76A7B80F64C7FCA190EC4AF /* RCTNetworking.h */, + CD2DC9A8364E1EBA0C8A12C19EA7774E /* RCTNetworking.mm */, + 2DCABE58B184BD9141075EEF8E7CC87F /* RCTNetworkTask.h */, + E4259B9278DE4854C950EB531DA83B36 /* RCTNetworkTask.m */, ); - name = UIUtils; - path = React/UIUtils; + name = RCTNetwork; sourceTree = ""; }; - CDD4CB190D6A3CC3FCFE5A1AE1532D45 /* RCTSettings */ = { + CA0A8A9FC7A7E179E913DAEBDCF4097B /* RCTActionSheet */ = { isa = PBXGroup; children = ( - D5E63CBD1E38651A82BA99901D1DDA92 /* RCTSettingsManager.h */, - 70F11985178914BB5CCCDCFB27AFF15B /* RCTSettingsManager.m */, + B515C1C42C5E9DB45B7CBAAC2DAFE63C /* RCTActionSheetManager.h */, + A57B8683F0A32BE97E1EE2B181E51D90 /* RCTActionSheetManager.m */, ); - name = RCTSettings; + name = RCTActionSheet; sourceTree = ""; }; - CEB6F676BBC8E2FCB81E030DCCA9D0E0 /* RNDeviceInfo */ = { + CA6AEA90CB138AE24EDD3242375C03AF /* RNDeviceInfo */ = { isa = PBXGroup; children = ( - 050889920DB4C7A750B4D0F05D0BF611 /* DeviceUID.h */, - 3A8A3498EC9A70EA25125CF052517CE9 /* DeviceUID.m */, - D4D4AF31953A8E6A7F9EEFF15FBCBA7F /* RNDeviceInfo.h */, - 9BD00E773DC413A2D71CE3A1E10E9DD5 /* RNDeviceInfo.m */, - 386AF3C62DE1D0D67FB3981C332B868C /* Pod */, - F99C4374CE42C57000495E1A9231E153 /* Support Files */, + 3926AAA6A1286454472C733600D78C30 /* DeviceUID.h */, + E6049D31257C782F79AB8A2CB37084C9 /* DeviceUID.m */, + 7BC733EECC379610BC3C62A37E8E5FB3 /* RNDeviceInfo.h */, + A8B15878A58015E8CB768BD825455308 /* RNDeviceInfo.m */, + FBBF1CFF5D581EBC5D022B79874124F9 /* Pod */, + B39E246B1751AD9C8FF62A8BAB89CCF5 /* Support Files */, ); name = RNDeviceInfo; path = "../../node_modules/react-native-device-info"; sourceTree = ""; }; + CCB4FFD3E1A3FD898983F84F228DD3B2 /* VirtualText */ = { + isa = PBXGroup; + children = ( + 14C229A68D556C9B5A332B6C1C796722 /* RCTVirtualTextShadowView.h */, + A90C9426AC1E6DDE5CEAC29638C5B97C /* RCTVirtualTextShadowView.m */, + 24EDFD818F2EA4C5969B6C3360820CFE /* RCTVirtualTextViewManager.h */, + B7939382BDC2757193FD036D7288381D /* RCTVirtualTextViewManager.m */, + ); + name = VirtualText; + path = Libraries/Text/VirtualText; + sourceTree = ""; + }; + CE056CE45DBFD450C7B3715DFCA7F44B /* UIUtils */ = { + isa = PBXGroup; + children = ( + DE3DCBAA8BD8F1AB89DDBB4E88E0E618 /* RCTUIUtils.h */, + 10D3ACE7808DF6E9D91CAB6E07BCCFD3 /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 554E8DEE12A536CC9E94900EBFB1D3B2 /* Development Pods */, + EE497AD487196694B3A598A7C82ADAB0 /* Development Pods */, D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, 90DEBCC479295D1B722510884A5B1C59 /* Pods */, - 1D8DD5D53CDDBD1DEC4619FB60F128EE /* Products */, + 47437796BA29DF1E6D395D5595C434F5 /* Products */, 64F063D584DCC83598AB7F1D35E7F984 /* Targets Support Files */, ); sourceTree = ""; @@ -1834,13 +1827,27 @@ path = "Target Support Files/Pods-RocketChatRN"; sourceTree = ""; }; - D616AA05C6276D57B8682B6950E95ED7 /* RCTVibration */ = { + D4D8080C6ED7E88D7246046A1A078364 /* RCTSettings */ = { isa = PBXGroup; children = ( - 3C9EB9B7658939544C716600596FAB27 /* RCTVibration.h */, - DC725498384BC48FBEB9F1AEF689B413 /* RCTVibration.m */, + 02B1CCCF2CB07602A90A4E49C96117CE /* RCTSettingsManager.h */, + 6AA72ABF8A39D570E90ADBD7E1F35F7C /* RCTSettingsManager.m */, ); - name = RCTVibration; + name = RCTSettings; + sourceTree = ""; + }; + D7049FB93390569A0B37AB4ECBD7C157 /* RNScreens */ = { + isa = PBXGroup; + children = ( + D7B060B44C2BD56A2E967ECC3A1410F7 /* RNSScreen.h */, + C41C4FDE8A2F358750E8BE7349992CE5 /* RNSScreen.m */, + 1C1AF41318F98EA5D41F97C7140EC4ED /* RNSScreenContainer.h */, + FFF827A7D0D6DDC7FEA34B121DF017A3 /* RNSScreenContainer.m */, + 548E73D851C5FACC19B428ACBD5384E3 /* Pod */, + AE53A221EA4CE5CC76DD7B76A5C030CC /* Support Files */, + ); + name = RNScreens; + path = "../../node_modules/react-native-screens"; sourceTree = ""; }; D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { @@ -1850,110 +1857,195 @@ name = Frameworks; sourceTree = ""; }; - DAD8C9383A42655F2C6374B2CA0B08EF /* RCTActionSheet */ = { + DDBF4C27D302DA228768F9AA4CC3B5DA /* Base */ = { isa = PBXGroup; children = ( - 8898DF34E3F974903D595C660E676A99 /* RCTActionSheetManager.h */, - 50D9482D45D23EB0BEBDECE87A9C4324 /* RCTActionSheetManager.m */, + C6DA940DF16C87C60FF8BD62997853BC /* RCTAssert.h */, + 478171618F6295A34DDC5B9D64FDE4CB /* RCTAssert.m */, + D50C5C6FEF2C1158391FAB1AFD1F3847 /* RCTBridge.h */, + 8A0F589F94E98F1AD5C3842F1990EEE6 /* RCTBridge.m */, + 7FD8611849322CE76B4548FF0B4D769D /* RCTBridge+Private.h */, + 4F22F1686F637E3B558D34E7315A04D5 /* RCTBridgeDelegate.h */, + 681B34E7FF585363FAB36E2AB0A9B1D5 /* RCTBridgeMethod.h */, + 894647ADF808930B31CB8078F2EDBC44 /* RCTBridgeModule.h */, + 351AD5411A92B6C8CD044D5BE37EAEF0 /* RCTBundleURLProvider.h */, + A9D9D5B8724455D2CD4D55827EA95A63 /* RCTBundleURLProvider.m */, + 2E4E0DE8A52CF4EC9A38C3227E37E29E /* RCTConvert.h */, + 0BD1D5985690469CBD8826C3ECD613C4 /* RCTConvert.m */, + 245B56988EA8730348619C4A866BFC27 /* RCTCxxConvert.h */, + 16F870EFFA92742920217B66B0683D0B /* RCTCxxConvert.m */, + 9065291435C0C46627D841A11929417C /* RCTDefines.h */, + E97AAB7BAB71E64DB9933F436F5B2B76 /* RCTDisplayLink.h */, + 6C26AD1E06613F5016C12D3366CEC7EE /* RCTDisplayLink.m */, + 97A7BD83772915AD84B250B6C123194E /* RCTErrorCustomizer.h */, + CF8DF940E2113769EEAFD624DFC6D377 /* RCTErrorInfo.h */, + 6C3679544E7976CC59468CCA9B034B95 /* RCTErrorInfo.m */, + 337365E76AF6DBBB5BEB0E1558B14C20 /* RCTEventDispatcher.h */, + 4E71F7FA06E87DBC4CDF74D34CE3B408 /* RCTEventDispatcher.m */, + 71FD511FC9AC54D56A14DA835C0B2D9B /* RCTFrameUpdate.h */, + E1FDDA5928388E9AD1C2D79B6849872D /* RCTFrameUpdate.m */, + 050C1CC92CA797E3460946DB43210911 /* RCTImageSource.h */, + 13383FA05F86840F23F93CE800139D40 /* RCTImageSource.m */, + 02A9A7ACC2B0DB752282326997B6E330 /* RCTInvalidating.h */, + ABFBCF8A4AE82247AE8A5004DA06633B /* RCTJavaScriptExecutor.h */, + 4139FE3A1DE9308FAD1ACF5434FBB4A7 /* RCTJavaScriptLoader.h */, + ABC61AFDC306B3FA85D2539304A85A37 /* RCTJavaScriptLoader.mm */, + 447A4575A49400ABCA0CA3130EB03E29 /* RCTJSStackFrame.h */, + 25B7732D4997EA32D85381850FD1CBF2 /* RCTJSStackFrame.m */, + 17004E7303F6B9B0D0B7302DC46B8E04 /* RCTKeyCommands.h */, + E1146FEABBCCE2FFF8BA69C8E267D6BA /* RCTKeyCommands.m */, + 97A686D78DA82DC733250DF15BA4D63E /* RCTLog.h */, + 9AB63477ED8EB46CD9394D78FB6727DD /* RCTLog.mm */, + E91541882E8884B2E4D48327C3E8A6B9 /* RCTManagedPointer.h */, + 7B15620EF181E777414FFDF8ED230DBD /* RCTManagedPointer.mm */, + B48EF2679F2BA1A9379D3885985EDCF5 /* RCTModuleData.h */, + ADF91A248FDDB9EC6443E560C5A2ECA1 /* RCTModuleData.mm */, + 4F0426240703B44EB99EF892B05415E9 /* RCTModuleMethod.h */, + 9E416D6EBA2DD62F7B7B40516C751CA3 /* RCTModuleMethod.mm */, + EB5EE2E52B47F15752996BBF327EE64B /* RCTMultipartDataTask.h */, + 8BB5369944FF89FA300BD5CB7F9AFC13 /* RCTMultipartDataTask.m */, + 2B79E7E5E8E66CCD65463D7EE7213FDE /* RCTMultipartStreamReader.h */, + F077D0CCE39071F62001185DBCEC6328 /* RCTMultipartStreamReader.m */, + 1FF679F2EFC9A4CE2C48D5833D8D290B /* RCTNullability.h */, + D6EC3F0ED686A454E0E08EB21FBAE5CA /* RCTParserUtils.h */, + 61A4C5AEE8A97EE588904F23D6B531BD /* RCTParserUtils.m */, + A2B9C06C4946A12EDB2E82D568BA24A5 /* RCTPerformanceLogger.h */, + A1F521BD5FF95018957FC17F4CAC724D /* RCTPerformanceLogger.m */, + A8F7F6CC0B163B82DD80281E52EA1313 /* RCTPlatform.h */, + 0B103103C75265672823000E638B1EE7 /* RCTPlatform.m */, + B7879C6025CB82D3F29E4CEBC553949D /* RCTReloadCommand.h */, + 9F5E0ED700E0ED4F3EE3C12CFDF1ADB8 /* RCTReloadCommand.m */, + 0ECED868DBAE05B6D741AA4304999572 /* RCTRootContentView.h */, + 7E0BED73F00CEC3CF844BB00FBDC488C /* RCTRootContentView.m */, + 2ECE5370966031F9890293F54F2EC6AF /* RCTRootView.h */, + FAB94A92D6A7096AA15EEB732E3930D9 /* RCTRootView.m */, + 9EAF14BFEBE838682DC2E5391D574EC5 /* RCTRootViewDelegate.h */, + EA0F695C1662E226578AB60AB755C27D /* RCTRootViewInternal.h */, + 93ABED37D4D19F43BC4E1146211516ED /* RCTTouchEvent.h */, + 34205552A63017B04C3CF4CD3B5B1BF4 /* RCTTouchEvent.m */, + E500064DC0DF67476E22D327710259C9 /* RCTTouchHandler.h */, + 0A7FC87A4FD1B2D2DAC2239DD1A0D872 /* RCTTouchHandler.m */, + 5093A78CD0A5E2617B2FB300CF84578F /* RCTURLRequestDelegate.h */, + A589CCC088FDD156C9CB50CE4022341E /* RCTURLRequestHandler.h */, + 038D3B4F5D64700FE29C5674C7E7B1CF /* RCTUtils.h */, + 96F58754C76F90FD989E223DF6E1A746 /* RCTUtils.m */, + 093D34DDDFEFB6BED9B48F2C4519A6C0 /* RCTVersion.h */, + 167818A16531AFDA4891AC787E8BC0B9 /* RCTVersion.m */, + 9B02FA063A180AAB28D2EEF42D88B866 /* Surface */, ); - name = RCTActionSheet; + name = Base; + path = React/Base; sourceTree = ""; }; - DC57E5C91D37BD9115D44B9CAFE7ED0A /* Profiler */ = { + E3DED8802B73E365EB9CD382ACE26FF8 /* react-native-webview */ = { isa = PBXGroup; children = ( - B3B12911C2CF5118B398D0171B0B2C2C /* RCTFPSGraph.h */, - A8566A097833C295CD8D9BE7B6D27C36 /* RCTFPSGraph.m */, - D845E6AB039F86886CD857B0D100C918 /* RCTMacros.h */, - 624F8EB63A914191A50FD2152CCB5F1A /* RCTPerfMonitor.m */, - C29707AD153DAEFDFA69D1AC32333711 /* RCTProfile.h */, - 9625F54D80E643C2A4143EFF98F1FB6A /* RCTProfile.m */, - 5C05BE1A76D838F8A6523A20E3676E77 /* RCTProfileTrampoline-arm.S */, - 3DC8844D1CA28F7CFF10575E0FFE08C2 /* RCTProfileTrampoline-arm64.S */, - 14851341EC7B90FF31430228A56A85A3 /* RCTProfileTrampoline-i386.S */, - B335D9B16D737CBCCA1081AC07500B41 /* RCTProfileTrampoline-x86_64.S */, + A9CB2869514173494452D3D4DD39F3E9 /* RNCUIWebView.h */, + B36F85AD4BC05A2024D44EDA60A6D862 /* RNCUIWebView.m */, + 180C2BA8ECD1EAE88E6EBF9C26F34933 /* RNCUIWebViewManager.h */, + B9A5ADAA02A6B68C1A8F594466BE613A /* RNCUIWebViewManager.m */, + 58A40F9D6693085CF8A3D2AFB7EF5FE1 /* RNCWKProcessPoolManager.h */, + 69BAA883C327921F649F4B1F6DB3DACB /* RNCWKProcessPoolManager.m */, + AC24ED5E140E9C69A692BBA8B6D34DF0 /* RNCWKWebView.h */, + B1B605004A5DBBDC276524CE58BF423F /* RNCWKWebView.m */, + 4EE053223414B0935323B97B9CCCD836 /* RNCWKWebViewManager.h */, + 2A41D46F9C682CD9E2CAF9F04B977796 /* RNCWKWebViewManager.m */, + 557C710B43EA1D95F75A43FBA7A563A6 /* Pod */, + A265C5311AF75F28BCFEC62983997283 /* Support Files */, + ); + name = "react-native-webview"; + path = "../../node_modules/react-native-webview"; + sourceTree = ""; + }; + E57D61B050779985E7733C11F8AF58DB /* yoga */ = { + isa = PBXGroup; + children = ( + C68F38858C1FF50749B7DDB146865E0F /* Utils.cpp */, + 0932F22CDB4296763EE7729021801F9D /* Utils.h */, + 98FD2A6FD436DDE4BB46182D7CE097F6 /* YGConfig.cpp */, + B82E3B17935DB9E0A68204FAC903DFA7 /* YGConfig.h */, + 4812F203B1949F02FD0B03AA313F0CA3 /* YGEnums.cpp */, + 1D5C49BE7DBCE72939B0E0EE10F7CD56 /* YGEnums.h */, + 86AE07833E9151D73607485D46347897 /* YGFloatOptional.cpp */, + 6699077C583B3122C5D811656942C327 /* YGFloatOptional.h */, + C46A061DA56871863EC348CDF41DEFD3 /* YGLayout.cpp */, + D50A7CFFB31136C471526E4DBBD60A1B /* YGLayout.h */, + C2E9772FC46CB9DC5BDF04F1BE8D4E11 /* YGMacros.h */, + A383BAB79F02EC686B246E0E76A95CD3 /* YGNode.cpp */, + 78074D7D1426B745159A7309731DB3C5 /* YGNode.h */, + 22944D967E8EB6CC0C14478A7B6E9CFA /* YGNodePrint.cpp */, + 42728EB7E00911840EB7DF9FB7565329 /* YGNodePrint.h */, + BFEB0F127584BF6E2A6FB12C2B465B77 /* YGStyle.cpp */, + 0A2DD45BD7BF47CFD3E9154A752A8CE0 /* YGStyle.h */, + 5273D144181073C7911DA840A201D43E /* Yoga.cpp */, + C3447E4E14DC5966D7514D3A32F9B0AD /* Yoga.h */, + 056EEA871740983F21D770D4A00EDEE4 /* Yoga-internal.h */, + F181E94F57469D29881DCC62BFA83347 /* Pod */, + 806CEC2D36D825B91131D48259948500 /* Support Files */, + ); + name = yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + E9D8A67CE06C2800474DFA1EC19A844F /* Profiler */ = { + isa = PBXGroup; + children = ( + C93E60E56E803B321862FD5BCE20F8B4 /* RCTFPSGraph.h */, + FFF42BAC23BEA73CEC8856ABF358DBA8 /* RCTFPSGraph.m */, + CEBD1D86284CD1ED68EEBFCF2170B2B1 /* RCTMacros.h */, + 558AB8AE68E0B06C18ADB16B0495CE54 /* RCTPerfMonitor.m */, + 55139F1A24AE0F430E5FEF83BA530C7A /* RCTProfile.h */, + 282CEB67535768C0A2E68C6BDA99BBB8 /* RCTProfile.m */, + E59BC1CDD9797D80EA8139F6DCC53E93 /* RCTProfileTrampoline-arm.S */, + B13CD96481C0DAA4003F23409C85EC9C /* RCTProfileTrampoline-arm64.S */, + 831533ACD77445B09471BEC33A702535 /* RCTProfileTrampoline-i386.S */, + 01450D05349CBE91F6E90AFB3AF15D54 /* RCTProfileTrampoline-x86_64.S */, ); name = Profiler; path = React/Profiler; sourceTree = ""; }; - E6A0E5488FF350CD8E934749C344B599 /* Support Files */ = { + EE497AD487196694B3A598A7C82ADAB0 /* Development Pods */ = { isa = PBXGroup; children = ( - 0446A1D1479BD1219F3BDD5890752BC4 /* react-native-orientation-locker.xcconfig */, - DEED1E11E500C444D719803E8FA301AF /* react-native-orientation-locker-dummy.m */, - 2FEF970155FFA4E30FA60F077543595E /* react-native-orientation-locker-prefix.pch */, + 494B126992A3614A49F489594D548A54 /* React */, + FB1B3A0A1A75D6B7BF67634480A2974E /* react-native-orientation-locker */, + 7EAA2C15B19C21DEA14FD5B91F130577 /* react-native-splash-screen */, + E3DED8802B73E365EB9CD382ACE26FF8 /* react-native-webview */, + CA6AEA90CB138AE24EDD3242375C03AF /* RNDeviceInfo */, + 99C1E19F6D1B9DE9367528FB583AF2E7 /* RNImageCropPicker */, + D7049FB93390569A0B37AB4ECBD7C157 /* RNScreens */, + E57D61B050779985E7733C11F8AF58DB /* yoga */, ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/react-native-orientation-locker"; + name = "Development Pods"; sourceTree = ""; }; - EA183874C904A33E9B89C86B8F35273D /* Pod */ = { + F181E94F57469D29881DCC62BFA83347 /* Pod */ = { isa = PBXGroup; children = ( - 25A6F2FF5BC31E6E7D0ADF924ADE0399 /* LICENSE */, - 8FE8B9EABA2735DD3C8ABFB0415C6B0E /* README.md */, - DFFCB4F8CE406E457AA2EE9FCBFEBD05 /* RNImageCropPicker.podspec */, + EFD66DE7811349792472487E019F6C4B /* yoga.podspec */, ); name = Pod; sourceTree = ""; }; - EAF76C5680E066F5D70F2ECC5AEA7558 /* fishhook */ = { + FB1B3A0A1A75D6B7BF67634480A2974E /* react-native-orientation-locker */ = { isa = PBXGroup; children = ( - E66FD8BEB2EF88EC064284128626B228 /* fishhook.c */, - 32D8F35C239F013503859993113DED67 /* fishhook.h */, + F68E836505A6DB028D7DB98CE14267D8 /* Orientation.h */, + 9F504B008C3351DECD66B4C0C575D687 /* Orientation.m */, + 1205EECF196B554E807B944EEDE06592 /* Pod */, + 1F7A7411F4602A596A26F815B338DA54 /* Support Files */, ); - name = fishhook; + name = "react-native-orientation-locker"; + path = "../../node_modules/react-native-orientation-locker"; sourceTree = ""; }; - F46C6D2A700613957BD3BEC18A6B3031 /* Multiline */ = { + FBBF1CFF5D581EBC5D022B79874124F9 /* Pod */ = { isa = PBXGroup; children = ( - 13CB399067D063B316CBFFEA51D319D9 /* RCTMultilineTextInputView.h */, - 6FF6B54BB13B7FA199A7D8D89D6BFD76 /* RCTMultilineTextInputView.m */, - 8CCDCF9C9168F9C19BBDA47A1D766C90 /* RCTMultilineTextInputViewManager.h */, - 418F3218003F8EA864AA505408324F35 /* RCTMultilineTextInputViewManager.m */, - 491752B66059FFD63B78CBE51DC4D3AF /* RCTUITextView.h */, - 2329C6EB6D606F22E55F4A401677CEC4 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - F99C4374CE42C57000495E1A9231E153 /* Support Files */ = { - isa = PBXGroup; - children = ( - BB717D4B0308A909BE2F7D6676BB162F /* RNDeviceInfo.xcconfig */, - 04020010BB4EB875AFA599191099AE6C /* RNDeviceInfo-dummy.m */, - BE2B217B325BE0BD8011F296B2DEDFC4 /* RNDeviceInfo-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/RNDeviceInfo"; - sourceTree = ""; - }; - FDD4309484766696BD4BEAD53D758EAC /* Text */ = { - isa = PBXGroup; - children = ( - 4BC8EA45459138B5B3A88AF673353D94 /* NSTextStorage+FontScaling.h */, - E66536607DCEAA7AA1BB7AF4EAAF5281 /* NSTextStorage+FontScaling.m */, - 4410405266EE3E4A35E117FDB030667C /* RCTTextShadowView.h */, - A6D71E06BDD4CD5329DED13294AF623E /* RCTTextShadowView.m */, - 7295B2B862324D5461B33741C5972161 /* RCTTextView.h */, - 385E0929E61834CC0A8D99CF9B482DDB /* RCTTextView.m */, - BF77EEC7468024B1C0BC1350883D457A /* RCTTextViewManager.h */, - 8E8851FC74C49CF67B397D2D019B509F /* RCTTextViewManager.m */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - FDD5A8DEA56D2335B0267C453B1B8028 /* Pod */ = { - isa = PBXGroup; - children = ( - 246E7B152145E25934D9B8C75B9D5EAF /* LICENSE */, - 0BD65D7162FDFC2903C7529BE0141CFA /* React.podspec */, - 9DDF0320508EF1DBD9B1444C77969C4D /* README.md */, + 3BFD08FD2C76F2061C272C945E2894A2 /* LICENSE */, + 132256480C51E21B55F5FB71EDDD299C /* README.md */, + 63F3D3546AC8AC0DBF8FBF76FBAA4B14 /* RNDeviceInfo.podspec */, ); name = Pod; sourceTree = ""; @@ -1961,198 +2053,194 @@ /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 199A64E29674190239797459E05A5D85 /* Headers */ = { + 14BFF97C4C2C0C18E5BEABB9DB669726 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 7F828E84C4002606A70D2B38CE2E2B30 /* Utils.h in Headers */, - 3BA2317D171A42F16BA058560EEB6440 /* YGConfig.h in Headers */, - D46C35A5056F00AC7F69F2512B2962AE /* YGEnums.h in Headers */, - 132A6519B5B905C75A5A020CA4E3280E /* YGFloatOptional.h in Headers */, - 6A284770A15E670C2E6505B6E83C5E1D /* YGLayout.h in Headers */, - D4C610AC69A2682C7965F06A4304608B /* YGMacros.h in Headers */, - CDA537138EACA2DE75BED487724492D3 /* YGNode.h in Headers */, - EA293E64838769BC33A9F06238A5122F /* YGNodePrint.h in Headers */, - 98D3B9F2DA57C1E8DA4AB300DEE26ADF /* YGStyle.h in Headers */, - 34C1B39A0B4F2FC55DF7DAD0C2A6F313 /* Yoga-internal.h in Headers */, - B7D44C3C85376B3F45193A3015611B95 /* Yoga.h in Headers */, + 7F99EC2AA82AA61286D60F57F50E7480 /* RNSplashScreen.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 411CF3421E67EAEB1782959018E57A02 /* Headers */ = { + 1D2406574F8255789B2FE727D3EDD784 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B83431A6D9CD77DD524F419CBDAC9998 /* DeviceUID.h in Headers */, - 70EF2AAE80E2FCB35B310B22263D890D /* RNDeviceInfo.h in Headers */, + 1969DF302F2E7D6A0A0B7AF4F721CCD0 /* DeviceUID.h in Headers */, + 8B059340E38A4540DA5AE9C66A1839D9 /* RNDeviceInfo.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4CF9428B7E92DB816C9A5F8671ADBB56 /* Headers */ = { + 38A4E871BE6273C2F852768C02F24C05 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 96BC3E8079CCA9F5D338727D3291A057 /* RNSScreen.h in Headers */, - EEA91ADF83BEFC849D9E808B2875C3C6 /* RNSScreenContainer.h in Headers */, + 3EB01A19C37EC15405054714EE7F695A /* CGGeometry+RSKImageCropper.h in Headers */, + 54D596A2F4F7DE8BD61048F58E85A9EC /* RSKImageCropper.h in Headers */, + 4243048F31E41F6368648BE2E201FA53 /* RSKImageCropViewController+Protected.h in Headers */, + 93F7363D39B6478DD25F50A26D7CAC18 /* RSKImageCropViewController.h in Headers */, + C2FB4775C740401F261EEE50C30B1869 /* RSKImageScrollView.h in Headers */, + 6E9A707B24C745EC3E2FE7E146E114BF /* RSKInternalUtility.h in Headers */, + 8709DC990618999F59412BF0B3005483 /* RSKTouchView.h in Headers */, + 5A2FA485AEE4C7BE7878F1724CF80E4E /* UIApplication+RSKImageCropper.h in Headers */, + 3EE3F7E358E6B62282BCCD8C2462B7B3 /* UIImage+RSKImageCropper.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5007BE44C1B22FBC0F870F4BF66C8808 /* Headers */ = { + 63755109414D62DDD351527A1F324445 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 745A527CCAC9A0BBC94A26FB056FDFC3 /* Compression.h in Headers */, - 6AD42BD9514E26A7BEA6E8A0C987EFFD /* ImageCropPicker.h in Headers */, - EC5FDD8EAD0AEB04DDBA220C2A80E84D /* UIImage+Resize.h in Headers */, + ABFB02FB9FAB24359E21D9B75E77E68A /* RNSScreen.h in Headers */, + 1496D60087AD8955585E904F0F5F84AB /* RNSScreenContainer.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 69719C96E0B608DCCB1D6C02F2644B45 /* Headers */ = { + 681C51BAA2D8AC9F1E9BE88B98204CAF /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 967EAC93F3F1831490CAAD33F82F2BA4 /* RNCUIWebView.h in Headers */, + 38C0A10D989879BF3BB1DF0F3B06EFF1 /* RNCUIWebViewManager.h in Headers */, + 5C085D2A3E386ED72AF879460E0F5CE4 /* RNCWKProcessPoolManager.h in Headers */, + AE3B17E7C4BF77BBE4DD1E642DC52171 /* RNCWKWebView.h in Headers */, + 4DDC0990D7B453A57F09122F01DB2D27 /* RNCWKWebViewManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9ED35F5722D91C227DED3A86FB448C68 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AE3135ABAD08737B957461F66C0A418E /* Headers */ = { + C7F44C77796658C91110B5D6935255B1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0CF06F418617EC6F711447A5BEC980D2 /* CGGeometry+RSKImageCropper.h in Headers */, - 7BAE64440AD93DB096418438222A2F9A /* RSKImageCropper.h in Headers */, - 905F26B40E9BE0A5BED7916C281E7429 /* RSKImageCropViewController+Protected.h in Headers */, - ABA00506BBA14A989C2E1C0022B131F1 /* RSKImageCropViewController.h in Headers */, - B252B9BD027A8726077B69601C69A7FF /* RSKImageScrollView.h in Headers */, - 5D7EA70AE2307DB57A2E6BB13F6FA9C7 /* RSKInternalUtility.h in Headers */, - DCAD0344CD112B8787619568D11C9725 /* RSKTouchView.h in Headers */, - 6E6B15796EA708FBC102F41BA6E50427 /* UIApplication+RSKImageCropper.h in Headers */, - AA661127D5EA4EF10418CCFEBC3836CE /* UIImage+RSKImageCropper.h in Headers */, + ED0550EAC677A95CC78064C9F5C210CA /* Orientation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B263735023F99A23A22F65C7AA8752E4 /* Headers */ = { + D48900331BA6F4A8414B33B1BA5BAEE1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EFD7C52C9350C48071BA26F6B9685674 /* QBAlbumCell.h in Headers */, - C2D2C65EE31EAB452AE50821B3934D8B /* QBAlbumsViewController.h in Headers */, - 8BB62E78AA74CEB6BAE8553879B88E2D /* QBAssetCell.h in Headers */, - 29D44F00B5249DC4584A4CD5301CDBAB /* QBAssetsViewController.h in Headers */, - E4AC95BD6299A14275D4DF15D076231B /* QBCheckmarkView.h in Headers */, - D0A041B3C9628F5104156A408B38B95F /* QBImagePickerController.h in Headers */, - 1D387FCE670E90BEEE3728EB723ABE4A /* QBSlomoIconView.h in Headers */, - 360FC437E35A9059B8AC9E87E3627593 /* QBVideoIconView.h in Headers */, - 7A3B48061259DBA587219267BA794DF8 /* QBVideoIndicatorView.h in Headers */, + 3D45826D8F2111B83F0D3E589787EBCB /* Compression.h in Headers */, + 9C412C7B35195C9CD7C115A7C5A88C3D /* ImageCropPicker.h in Headers */, + D0E633C7000C96C0228965B72AC0CC6C /* UIImage+Resize.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B4F6227707D5711D2C0150FFB260DF0F /* Headers */ = { + DEE1C1802A32730E9332E91F575F118C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B11D689F3199F8E95C7EC4CE7E73DE87 /* Orientation.h in Headers */, + 8F16AE034801C699C8AB83F7E4C5C440 /* Utils.h in Headers */, + 664D896930E856809E9C6F72A11C5184 /* YGConfig.h in Headers */, + 0251834A0E91F254174B18CB5D67C5F5 /* YGEnums.h in Headers */, + 47BBBE64D5CA497139F17EA1B660FECD /* YGFloatOptional.h in Headers */, + 4E7653D218E2FB51A644D6E622D5D6C8 /* YGLayout.h in Headers */, + 19BACD0B7A458882F97D94D24375E279 /* YGMacros.h in Headers */, + F22CEE750A8F4066FD5C3FC9FBE729EB /* YGNode.h in Headers */, + 124357DA9D9DE268991ED325B94DCFA4 /* YGNodePrint.h in Headers */, + F4BB7CED8CDC15ACB24B803D436D6FB0 /* YGStyle.h in Headers */, + 056398FF1EEFFA487E754A3C10DB8398 /* Yoga-internal.h in Headers */, + DE50BBCAC7C7D4AB4849D750C4B52E6D /* Yoga.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - E965E4AE9A2EAB09CF6589E679CE9078 /* Headers */ = { + FB63DC757BE11371509297D2BFE89DCB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 4FF98CADA84816E8FBA332A2F61D3BFB /* RNSplashScreen.h in Headers */, + 66AA249F4AF9A659E93D11DF02E76093 /* QBAlbumCell.h in Headers */, + 87E2ADDCD7F1074D8E9DB0B3AAC753E7 /* QBAlbumsViewController.h in Headers */, + 4DEF844F0A17B0970183C0E96C592875 /* QBAssetCell.h in Headers */, + 788493A27D18A4A45E082BC9D449B332 /* QBAssetsViewController.h in Headers */, + 0A4EE940EE240F3098BD73D621B3E4A0 /* QBCheckmarkView.h in Headers */, + EB54FBB243DAE73D7E01FDC9CF605A84 /* QBImagePickerController.h in Headers */, + B6B6C79E47F51A64B94EA360E35511CD /* QBSlomoIconView.h in Headers */, + 3C83F09A0686E7204D58831F4FFD427C /* QBVideoIconView.h in Headers */, + 7C7FA6B6203B7164620B79603C867D03 /* QBVideoIndicatorView.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 19E7A596BFB31645A127652B332D4DA3 /* QBImagePickerController */ = { + 1C07AEF89DFDCF579A5A2BC2E4008C43 /* react-native-splash-screen */ = { isa = PBXNativeTarget; - buildConfigurationList = CE2E5A3C36949BCE5840F7EE395A55AC /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; + buildConfigurationList = 54A73601549F7DAA16D0DDACDEB6D9DA /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; buildPhases = ( - B263735023F99A23A22F65C7AA8752E4 /* Headers */, - 1F23750C672C6CF5FAA4ADBDF18DA3C1 /* Sources */, - 1D3F0450A37848E70ECC3765E1BD5174 /* Frameworks */, + 14BFF97C4C2C0C18E5BEABB9DB669726 /* Headers */, + A8A42EF45B9023155EED52BB97BB4EBD /* Sources */, + AF15A6B958F3D3846F1E7B654EE8F48E /* Frameworks */, ); buildRules = ( ); dependencies = ( - 7E65FAE24C02FE335B5190743B97E8E2 /* PBXTargetDependency */, + C989F2370E21848C9403095649FC6C0F /* PBXTargetDependency */, ); - name = QBImagePickerController; - productName = QBImagePickerController; - productReference = 1A3090463116C88A6C9966E24E7CE73A /* libQBImagePickerController.a */; + name = "react-native-splash-screen"; + productName = "react-native-splash-screen"; + productReference = CFB6DD39BEC27A2FAF13C106369D4154 /* libreact-native-splash-screen.a */; productType = "com.apple.product-type.library.static"; }; - 29F008BB22A39B82AC8C6687149F259F /* Pods-RocketChatRN */ = { + 2FF114FAA3E56AE9F7FAB8ACD87F109B /* Pods-RocketChatRN */ = { isa = PBXNativeTarget; - buildConfigurationList = 4BB03A6CB032B455604B26507FE39892 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; + buildConfigurationList = B6D735BA622BB93798F80882924F933A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */; buildPhases = ( - 69719C96E0B608DCCB1D6C02F2644B45 /* Headers */, - 0C922FDA64B2ACB26A769E7B5EAB6D9D /* Sources */, - 6AE9040C1D6691A0D9110B661DDA4596 /* Frameworks */, + 9ED35F5722D91C227DED3A86FB448C68 /* Headers */, + 4C99EB3F0FE7C55EA90147F68A82CA7A /* Sources */, + 2DA5EEF6424722C24987958D529D353A /* Frameworks */, ); buildRules = ( ); dependencies = ( - 95CE0F02A1C0590642076F1EB4A5E052 /* PBXTargetDependency */, - B7109FC9D53EC30BCD6873F4EECC67CC /* PBXTargetDependency */, - 637490DE61C3A6B42F228A280A99F392 /* PBXTargetDependency */, - 7FA3829274DE64B2553BB7FDF9721B78 /* PBXTargetDependency */, - FF58AB9B6FAC62F17574919DA1F6722E /* PBXTargetDependency */, - B40AE7CC0E4945991D62244DDE00D7E1 /* PBXTargetDependency */, - 7673441C668C4B5EB4CCE6184BBB9DE3 /* PBXTargetDependency */, - D9B787CC504F6A3EB7C7542202C0D34E /* PBXTargetDependency */, - 757DFBD16CB337AC63BD02DB4B6DA4B7 /* PBXTargetDependency */, + D40194533D2F3168BC11F0043FFEB318 /* PBXTargetDependency */, + ACC69A674371A13008CA60149A4C9158 /* PBXTargetDependency */, + 7C26791DCAFDC6B2E68516C126CB6312 /* PBXTargetDependency */, + 38E9DF396230DC44720E4EC45F76F1F3 /* PBXTargetDependency */, + FD9C9CAC99BC3B92169F4CD7C5806B99 /* PBXTargetDependency */, + 9BAA25B45C4308D7E331AFAEEE1DDB1E /* PBXTargetDependency */, + 223BD169DC7A48951A9887D9B12C44C6 /* PBXTargetDependency */, + 2386FE35C753DABBE9CE17BBCAF3BD86 /* PBXTargetDependency */, + B6AACE053A27E8B1368F52CEAAB97FF4 /* PBXTargetDependency */, + 028044E2602D65CA89A3466BF77B3F89 /* PBXTargetDependency */, ); name = "Pods-RocketChatRN"; productName = "Pods-RocketChatRN"; - productReference = 361240A388C3A4891CCF12614ABE5435 /* libPods-RocketChatRN.a */; + productReference = C8B465ADA6F79E7498D51C556753E3B7 /* libPods-RocketChatRN.a */; productType = "com.apple.product-type.library.static"; }; - 376DEB4502B4900C4F93F4A1C7F1DEAC /* QBImagePickerController-QBImagePicker */ = { + A2923FF981017EE3FF96A37DE1219A22 /* RNImageCropPicker */ = { isa = PBXNativeTarget; - buildConfigurationList = B2283B4E5DC34785A15FD2A300696DA9 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildConfigurationList = 16EE56A05DDB379AE7B10CB9D8E4CAE1 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; buildPhases = ( - A7FDDC885B887351E756ACC690B683EA /* Sources */, - BA05E5061429D7A34BA7DD17C16DAEF0 /* Frameworks */, - 13267BD4915EEB850BCEE7C2C5FDF3D4 /* Resources */, + D48900331BA6F4A8414B33B1BA5BAEE1 /* Headers */, + C84BBA87DF3375D2782BE732EA208584 /* Sources */, + 66ED15C7FB0DFE11324921D0BE151D18 /* Frameworks */, ); buildRules = ( ); dependencies = ( - ); - name = "QBImagePickerController-QBImagePicker"; - productName = "QBImagePickerController-QBImagePicker"; - productReference = AC9EC3A02B3A86E796C95DABC5A7381C /* QBImagePicker.bundle */; - productType = "com.apple.product-type.bundle"; - }; - 45E44642036D1BBA1FC78B488A87579A /* RNImageCropPicker */ = { - isa = PBXNativeTarget; - buildConfigurationList = A78E85B8C34D47D0EFE3434F3999DBC0 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */; - buildPhases = ( - 5007BE44C1B22FBC0F870F4BF66C8808 /* Headers */, - 1B4008022C9B920CCE4E5A51E474BC94 /* Sources */, - BFD95BE56D06541A447B8B03DEF5C39F /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 0DD44050CB43E98F06032D3FA420DADA /* PBXTargetDependency */, - F1D8CD06360929D29EB1E45538887FE6 /* PBXTargetDependency */, - B9505E6A962888DF59453D6EABCCD199 /* PBXTargetDependency */, + AD11B2A086E15B21ECF45571D4B83992 /* PBXTargetDependency */, + EF88BCF07C9AF6675F773F63ABE696C5 /* PBXTargetDependency */, + 2712833D836D562D0853CB413B99B900 /* PBXTargetDependency */, ); name = RNImageCropPicker; productName = RNImageCropPicker; - productReference = 8EAEC203E3943497A80D2F2E7D5A9721 /* libRNImageCropPicker.a */; + productReference = BA2CD96327DDF85F57BE8EE813DD53B5 /* libRNImageCropPicker.a */; productType = "com.apple.product-type.library.static"; }; - 7A1361361838181F7617C267CDBDCE0C /* RSKImageCropper */ = { + A49950A5293BFE67914818C23681E39F /* RSKImageCropper */ = { isa = PBXNativeTarget; - buildConfigurationList = 103C4C48354D58A0F823EF64CBC4F349 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; + buildConfigurationList = FBE5147429778BF7BB338DEF4D1DD35B /* Build configuration list for PBXNativeTarget "RSKImageCropper" */; buildPhases = ( - AE3135ABAD08737B957461F66C0A418E /* Headers */, - 4F2B0EF5952A4A1803E1FC457B33C7FB /* Sources */, - 65C218B1C02ECF758187DA2946803711 /* Frameworks */, + 38A4E871BE6273C2F852768C02F24C05 /* Headers */, + 2A49008CF0E5D5BBBC03DBDB1E6D6489 /* Sources */, + C9624BFC81B7E472A23042F739A41171 /* Frameworks */, ); buildRules = ( ); @@ -2160,70 +2248,88 @@ ); name = RSKImageCropper; productName = RSKImageCropper; - productReference = DB777882BF18C387FFF2CBF0CBE5E654 /* libRSKImageCropper.a */; + productReference = 29C18A6D3D94F2F989443D5C462C1DEE /* libRSKImageCropper.a */; productType = "com.apple.product-type.library.static"; }; - 8A6094DAAF476759DFAD6C3D9435C73E /* RNDeviceInfo */ = { + B2EC544CC7C0C1B32B8E254EE7C2FF05 /* RNScreens */ = { isa = PBXNativeTarget; - buildConfigurationList = 809562F1334026DDD7445E1A0FD1EF22 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; + buildConfigurationList = F5A1C45BD1B62CFDFD49D064A6CD807C /* Build configuration list for PBXNativeTarget "RNScreens" */; buildPhases = ( - 411CF3421E67EAEB1782959018E57A02 /* Headers */, - AB49F7AD28CF8F6D1A5A59D74899BBFE /* Sources */, - E0B46B1BC0F2352C776E66EB0B112573 /* Frameworks */, + 63755109414D62DDD351527A1F324445 /* Headers */, + 0648B1D9690B058AE689B971CFA0B397 /* Sources */, + 16AA0E636764653CD9EEB644BF7CB3C1 /* Frameworks */, ); buildRules = ( ); dependencies = ( - 323D57BB726EAED7478502B380932010 /* PBXTargetDependency */, - ); - name = RNDeviceInfo; - productName = RNDeviceInfo; - productReference = 89958DF6A2D9D026B85FE231F20AE866 /* libRNDeviceInfo.a */; - productType = "com.apple.product-type.library.static"; - }; - B347A23B44C5457B10E9F0ABE49F3673 /* RNScreens */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4888282371631DEC13D1FE58BBFC509F /* Build configuration list for PBXNativeTarget "RNScreens" */; - buildPhases = ( - 4CF9428B7E92DB816C9A5F8671ADBB56 /* Headers */, - E47DF5B00E41BC6C3B567BDAA1ADA019 /* Sources */, - 3EC7F9568F261B8D51FC2394C524A7AA /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 0A6B80C260D306EB3E9CCC2A7D1DA9A3 /* PBXTargetDependency */, + 3DC571949ED28B0F9ECFFF7652A10D5C /* PBXTargetDependency */, ); name = RNScreens; productName = RNScreens; - productReference = BE3DAEF86DC69F4DF4184549E6F596C8 /* libRNScreens.a */; + productReference = CDF2D621E8F7FF59C22909D0D2FB312C /* libRNScreens.a */; productType = "com.apple.product-type.library.static"; }; - D2E7333285525F3889264970D99637C5 /* react-native-orientation-locker */ = { + B66E8DA8AC0E14784951673963BA5877 /* RNDeviceInfo */ = { isa = PBXNativeTarget; - buildConfigurationList = 83EFF982EB83A287CEFEF261568DEA62 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildConfigurationList = 37870196E399F7BD3B2293B0DEB06C9B /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */; buildPhases = ( - B4F6227707D5711D2C0150FFB260DF0F /* Headers */, - 6BD8C20C4DB3A751740B9ED66E630FAE /* Sources */, - C345A4CBE44E4B1D1232419ED405C61E /* Frameworks */, + 1D2406574F8255789B2FE727D3EDD784 /* Headers */, + 565E530A4D0AE267E2F2E5B284CE4361 /* Sources */, + 1B3F141421411FE02B3D41666529677B /* Frameworks */, ); buildRules = ( ); dependencies = ( - 90A3028D9AAEEC54555C4A82BFC43004 /* PBXTargetDependency */, + 98057D7CF9EFCFF0B702CC96C11014F8 /* PBXTargetDependency */, + ); + name = RNDeviceInfo; + productName = RNDeviceInfo; + productReference = 8B24A41749DE1FC6735C71F943E8C0F0 /* libRNDeviceInfo.a */; + productType = "com.apple.product-type.library.static"; + }; + C804E89709ADE5B1AD6F17E6875AF383 /* react-native-webview */ = { + isa = PBXNativeTarget; + buildConfigurationList = A305091FF084A0B38FFB106BD914125E /* Build configuration list for PBXNativeTarget "react-native-webview" */; + buildPhases = ( + 681C51BAA2D8AC9F1E9BE88B98204CAF /* Headers */, + A14205D0F9636A9C6AB1752FF3AE9D0B /* Sources */, + 7A0752AAA8A12F5532E3E6176CC3D1D6 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 8214F2F9AD9F95A584A8DDA92869C2D3 /* PBXTargetDependency */, + ); + name = "react-native-webview"; + productName = "react-native-webview"; + productReference = 197D3585B75F30FD369E2A82B408FE6F /* libreact-native-webview.a */; + productType = "com.apple.product-type.library.static"; + }; + D20E4CF7B7A03AD1F5B7FFBC7325571A /* react-native-orientation-locker */ = { + isa = PBXNativeTarget; + buildConfigurationList = EAB11EC1AAC319877132C1D0103872B7 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */; + buildPhases = ( + C7F44C77796658C91110B5D6935255B1 /* Headers */, + 14041B252340C493E548237DB9E358DA /* Sources */, + 599A077123E4322D13DC51E44AFAA228 /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 2E6C72846F1A69137A285C2CBCCB33BA /* PBXTargetDependency */, ); name = "react-native-orientation-locker"; productName = "react-native-orientation-locker"; - productReference = 98FC94670CE714EC8334757895FE042B /* libreact-native-orientation-locker.a */; + productReference = B12A5B6128E4589BE739593CD0326305 /* libreact-native-orientation-locker.a */; productType = "com.apple.product-type.library.static"; }; - EA260E86CC615B56504AA34DA7363F6F /* yoga */ = { + E06AB1FAF7FA8FBF0A9A51100E7D4636 /* yoga */ = { isa = PBXNativeTarget; - buildConfigurationList = 69DBC194F676EB035D8F72404A293ED3 /* Build configuration list for PBXNativeTarget "yoga" */; + buildConfigurationList = AF5224A77D2F62E7249EAFCB739A5E4C /* Build configuration list for PBXNativeTarget "yoga" */; buildPhases = ( - 199A64E29674190239797459E05A5D85 /* Headers */, - A09354A8AF0415D7F8F2B77294B7D1DC /* Sources */, - 918FEF639F5284E9E4E13449B7F17F60 /* Frameworks */, + DEE1C1802A32730E9332E91F575F118C /* Headers */, + CB8572C6FF26E01987A518AB4A4198FA /* Sources */, + 67308751D52755AE5474799C90A78BBC /* Frameworks */, ); buildRules = ( ); @@ -2231,295 +2337,623 @@ ); name = yoga; productName = yoga; - productReference = B25D7FF21E435E7DC275BC04CB0828A3 /* libyoga.a */; + productReference = 888498C5027A162639AC6A4188A19455 /* libyoga.a */; productType = "com.apple.product-type.library.static"; }; - F871CCC8CA4729CF25DFAA362986ADA5 /* react-native-splash-screen */ = { + E0EFFF7F98EDDC5EA29A779B6056CC72 /* QBImagePickerController */ = { isa = PBXNativeTarget; - buildConfigurationList = DBB7A5E84DE047DFF6562B538F55EB39 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */; + buildConfigurationList = 85E66719B997721D7B560ED21436FF9F /* Build configuration list for PBXNativeTarget "QBImagePickerController" */; buildPhases = ( - E965E4AE9A2EAB09CF6589E679CE9078 /* Headers */, - EBE4557A23BBDD8AD0269709FA2A9836 /* Sources */, - C6B031BE3831DEA481D4A0F873F779E8 /* Frameworks */, + FB63DC757BE11371509297D2BFE89DCB /* Headers */, + C7E9C5061980BB9D97357BD70724984F /* Sources */, + 638DB6A61758DD83F606A91EE1A3479E /* Frameworks */, ); buildRules = ( ); dependencies = ( - 897FF28351DD99A68AA238661C76FD70 /* PBXTargetDependency */, + 085C07F2970A7E6C6054A653FDE63368 /* PBXTargetDependency */, ); - name = "react-native-splash-screen"; - productName = "react-native-splash-screen"; - productReference = CF3DD77A8E7F9255EA71D5CA582E77B6 /* libreact-native-splash-screen.a */; + name = QBImagePickerController; + productName = QBImagePickerController; + productReference = FB40EC1F138B803DF8D6F38AFB31424E /* libQBImagePickerController.a */; productType = "com.apple.product-type.library.static"; }; + FAF6F24B253252A5B7F8AD31E27A6255 /* QBImagePickerController-QBImagePicker */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6A502216A726EAEB1292753DA067DEB8 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */; + buildPhases = ( + 96E09A01D24A1478706109D02FD7F383 /* Sources */, + C3DB009D1A56CDD1050410C95EDE0549 /* Frameworks */, + 823F4C1E0A19D275A4252899FB7DC249 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "QBImagePickerController-QBImagePicker"; + productName = "QBImagePickerController-QBImagePicker"; + productReference = 40E048CE60DD0273CEBD902E431B30FE /* QBImagePicker.bundle */; + productType = "com.apple.product-type.bundle"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { - LastSwiftUpdateCheck = 0930; - LastUpgradeCheck = 0930; + LastSwiftUpdateCheck = 1020; + LastUpgradeCheck = 1020; }; buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; + developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( en, ); mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 1D8DD5D53CDDBD1DEC4619FB60F128EE /* Products */; + productRefGroup = 47437796BA29DF1E6D395D5595C434F5 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - 29F008BB22A39B82AC8C6687149F259F /* Pods-RocketChatRN */, - 19E7A596BFB31645A127652B332D4DA3 /* QBImagePickerController */, - 376DEB4502B4900C4F93F4A1C7F1DEAC /* QBImagePickerController-QBImagePicker */, - D2E7333285525F3889264970D99637C5 /* react-native-orientation-locker */, - F871CCC8CA4729CF25DFAA362986ADA5 /* react-native-splash-screen */, - 8A6094DAAF476759DFAD6C3D9435C73E /* RNDeviceInfo */, - 45E44642036D1BBA1FC78B488A87579A /* RNImageCropPicker */, - B347A23B44C5457B10E9F0ABE49F3673 /* RNScreens */, - 7A1361361838181F7617C267CDBDCE0C /* RSKImageCropper */, - EA260E86CC615B56504AA34DA7363F6F /* yoga */, + 2FF114FAA3E56AE9F7FAB8ACD87F109B /* Pods-RocketChatRN */, + E0EFFF7F98EDDC5EA29A779B6056CC72 /* QBImagePickerController */, + FAF6F24B253252A5B7F8AD31E27A6255 /* QBImagePickerController-QBImagePicker */, + D20E4CF7B7A03AD1F5B7FFBC7325571A /* react-native-orientation-locker */, + 1C07AEF89DFDCF579A5A2BC2E4008C43 /* react-native-splash-screen */, + C804E89709ADE5B1AD6F17E6875AF383 /* react-native-webview */, + B66E8DA8AC0E14784951673963BA5877 /* RNDeviceInfo */, + A2923FF981017EE3FF96A37DE1219A22 /* RNImageCropPicker */, + B2EC544CC7C0C1B32B8E254EE7C2FF05 /* RNScreens */, + A49950A5293BFE67914818C23681E39F /* RSKImageCropper */, + E06AB1FAF7FA8FBF0A9A51100E7D4636 /* yoga */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 13267BD4915EEB850BCEE7C2C5FDF3D4 /* Resources */ = { + 823F4C1E0A19D275A4252899FB7DC249 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - AD8F9925B921E8C80A027050AAE6809C /* de.lproj in Resources */, - 99221F1BA0F9994E37AB3E5CCD70D545 /* en.lproj in Resources */, - DED99FDCA5A62687C5693EFCA55E9E67 /* es.lproj in Resources */, - 060B19AF283C547371A4A84C6A4BC49F /* ja.lproj in Resources */, - 159A12D770953E22C0CDF45636CFD653 /* QBImagePicker.storyboard in Resources */, - 0E769742F3C0EDEE2F2562E944256AF7 /* zh-Hans.lproj in Resources */, + B04226B72C6EEB32A9DFC9FCEF2B5DD7 /* de.lproj in Resources */, + DDDC6A2F219177825E0E84EB09581CAC /* en.lproj in Resources */, + 97E51C0048F3DE4530B9173DBA3303EE /* es.lproj in Resources */, + C5799479EAEEA1B764DC41C757519C6A /* ja.lproj in Resources */, + 54AF34631D4CF8F45EBCE867879A417E /* QBImagePicker.storyboard in Resources */, + B28B089655E8835A45D684C4B74AED2F /* zh-Hans.lproj in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 0C922FDA64B2ACB26A769E7B5EAB6D9D /* Sources */ = { + 0648B1D9690B058AE689B971CFA0B397 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 60D5C0678D3C1982C60D34D66856C926 /* Pods-RocketChatRN-dummy.m in Sources */, + 5E56F479C67578265A04DE867528AB19 /* RNScreens-dummy.m in Sources */, + E0890D145206692527728AA8800185FB /* RNSScreen.m in Sources */, + 9B7A6FAAD4605C49250B7CEB3E1CEE5B /* RNSScreenContainer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1B4008022C9B920CCE4E5A51E474BC94 /* Sources */ = { + 14041B252340C493E548237DB9E358DA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6A2654A081AE78FE3B9F0215F5E1B2A7 /* Compression.m in Sources */, - C2DCEF4262CBE112A1BFD446EE3A6CB5 /* ImageCropPicker.m in Sources */, - 1EFE13E5DFC1B11CEC0BCE6E722FBF94 /* RNImageCropPicker-dummy.m in Sources */, - 1B40D24A50215E903DCC9289F6E686BD /* UIImage+Resize.m in Sources */, + A6CD815D0596CC7C8D498F825E60555C /* Orientation.m in Sources */, + F396C12882F006F732A96AA6ADF300A3 /* react-native-orientation-locker-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1F23750C672C6CF5FAA4ADBDF18DA3C1 /* Sources */ = { + 2A49008CF0E5D5BBBC03DBDB1E6D6489 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E8790D821F890070A973CEAF5A3095A3 /* QBAlbumCell.m in Sources */, - C2502395CA84F976F7E0A2AE70A35E06 /* QBAlbumsViewController.m in Sources */, - 8B89927E45FB3DCD13B1302A233DADC8 /* QBAssetCell.m in Sources */, - E8F212CA19F204874F19257561856A28 /* QBAssetsViewController.m in Sources */, - FEC430F7BDEFBF2D4742BBE6A8986444 /* QBCheckmarkView.m in Sources */, - 2C4CBCF063577292964460D49BA1FB43 /* QBImagePickerController-dummy.m in Sources */, - D0CDECA6D98F30BC34704FB84EFA1080 /* QBImagePickerController.m in Sources */, - B9026EDADDF4E8489A21A6816BA479E3 /* QBSlomoIconView.m in Sources */, - 137BC8C5579BAAD2877D03BC4C290BC1 /* QBVideoIconView.m in Sources */, - 7215CB438EE6851990F01875F78A89E7 /* QBVideoIndicatorView.m in Sources */, + D6A238B5B6A7C3A5C86ACFD9BB55CB1B /* CGGeometry+RSKImageCropper.m in Sources */, + 09D41749E4E1E1BA8882E542FB3566D2 /* RSKImageCropper-dummy.m in Sources */, + DA5DF1C5AC6B29F88481335B7C6872B5 /* RSKImageCropViewController.m in Sources */, + 3A4E98915162313F476CC8F4D2950C3E /* RSKImageScrollView.m in Sources */, + B626516C0407778EA39085E0687AC464 /* RSKInternalUtility.m in Sources */, + 4A0A6E58F35F2C0870D723D99B854F3E /* RSKTouchView.m in Sources */, + 22D116A70C540EECA0BE8E11B2296A0B /* UIApplication+RSKImageCropper.m in Sources */, + 6DF7FC6AD33ED3D74ECD1F632377AB73 /* UIImage+RSKImageCropper.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4F2B0EF5952A4A1803E1FC457B33C7FB /* Sources */ = { + 4C99EB3F0FE7C55EA90147F68A82CA7A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 17849FF29D9CE2176F6FBDAADC4AACDA /* CGGeometry+RSKImageCropper.m in Sources */, - ED1CBA0FC23196CE6F9409179611041E /* RSKImageCropper-dummy.m in Sources */, - 28D8F8ACEE7D5EDE8CE8A05866AFD58B /* RSKImageCropViewController.m in Sources */, - E6D0CE94A56807752A29B84581EBB955 /* RSKImageScrollView.m in Sources */, - 10AFEDACA7F0B1C06C80B362E9B68E05 /* RSKInternalUtility.m in Sources */, - E139E84DC17194360E44BF896C686084 /* RSKTouchView.m in Sources */, - 007BB4C5D4BEE9575C427F9A0FDDB20E /* UIApplication+RSKImageCropper.m in Sources */, - 135BE22E0ACB25AC4474E34791CBFD33 /* UIImage+RSKImageCropper.m in Sources */, + C4AF15B1213FD9F1CDE3808D25F3CB60 /* Pods-RocketChatRN-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6BD8C20C4DB3A751740B9ED66E630FAE /* Sources */ = { + 565E530A4D0AE267E2F2E5B284CE4361 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E269644C13115B44B88F0007CD8CE76E /* Orientation.m in Sources */, - BBFB2B5FD9361EDC6544BDE55D3919D0 /* react-native-orientation-locker-dummy.m in Sources */, + 7DF0C3459BDDD97E34D1BCBC42841C47 /* DeviceUID.m in Sources */, + 11B23534EFFE749AD096969E0D8764F2 /* RNDeviceInfo-dummy.m in Sources */, + F949DBC76D6354C38F9D2A98D9A6498D /* RNDeviceInfo.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A09354A8AF0415D7F8F2B77294B7D1DC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 76F59B1E6A44FE0A7BF21497CCEFA005 /* Utils.cpp in Sources */, - 946A347EA851A5BF342CB41BD393AF87 /* YGConfig.cpp in Sources */, - BB82B4F61957DF830FB56A23F0DEE9BC /* YGEnums.cpp in Sources */, - 2A1ED1EB0E97215DA394B679379C2127 /* YGFloatOptional.cpp in Sources */, - DD52AD9D86B96F0E1BF4535084B6AC90 /* YGLayout.cpp in Sources */, - 4951FA8B46CF4779AFA70FA227600657 /* YGNode.cpp in Sources */, - 3479C402D89085C2C38ADA8868CDFC3E /* YGNodePrint.cpp in Sources */, - B16FB8AD8C88A3C93DF377FF608AF08F /* YGStyle.cpp in Sources */, - 419A90F22215FBC62ED9FB16A37A1188 /* yoga-dummy.m in Sources */, - A295EE0B40BD097A5113572DFD811B05 /* Yoga.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A7FDDC885B887351E756ACC690B683EA /* Sources */ = { + 96E09A01D24A1478706109D02FD7F383 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AB49F7AD28CF8F6D1A5A59D74899BBFE /* Sources */ = { + A14205D0F9636A9C6AB1752FF3AE9D0B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 48062BE16A2CC9646C6E4358EFE87031 /* DeviceUID.m in Sources */, - 3B11FACCC3C07D9A25272B0D1FE9B9CB /* RNDeviceInfo-dummy.m in Sources */, - C6FEBB385FF9B11922F3F83BC4A3E5D6 /* RNDeviceInfo.m in Sources */, + C6969918138844D72388FDC8EDB612DC /* react-native-webview-dummy.m in Sources */, + 241237EEA83AA19AE243FAD39B90E841 /* RNCUIWebView.m in Sources */, + EE2A93FAE8D5124A4E2ECA30365962C6 /* RNCUIWebViewManager.m in Sources */, + 9C4EEC8C54BE0C3E4024EE4868ED518F /* RNCWKProcessPoolManager.m in Sources */, + FC38AD932CA05EEC8AC1A59EA855CC69 /* RNCWKWebView.m in Sources */, + 681C1A2513F2CFECB9FC5E3E4A7024F5 /* RNCWKWebViewManager.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E47DF5B00E41BC6C3B567BDAA1ADA019 /* Sources */ = { + A8A42EF45B9023155EED52BB97BB4EBD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 67B815915864A415A878FF2AED2A7879 /* RNScreens-dummy.m in Sources */, - 48497CE54936883B884838149DB03FAB /* RNSScreen.m in Sources */, - 1C4A84F99766F236C1DFC83793B187C1 /* RNSScreenContainer.m in Sources */, + BF055AA7DBEBA8905A175D29AC567300 /* react-native-splash-screen-dummy.m in Sources */, + D067DE924017E4F29F2FDB39EE74DD9F /* RNSplashScreen.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EBE4557A23BBDD8AD0269709FA2A9836 /* Sources */ = { + C7E9C5061980BB9D97357BD70724984F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FC583245669EA1D4D320DCCE44400452 /* react-native-splash-screen-dummy.m in Sources */, - 920DB3AF6B7E10B01B6936D9AD2738B1 /* RNSplashScreen.m in Sources */, + 9F9FDB751AC31DFBB9433579578E48A0 /* QBAlbumCell.m in Sources */, + 0AA0649D4991D4B7071A960A78FF9E5C /* QBAlbumsViewController.m in Sources */, + AA27ADDEFB46C4605FB4E96E9C50036E /* QBAssetCell.m in Sources */, + 8FD1999C9DA02E9D151F36CEB5479F3C /* QBAssetsViewController.m in Sources */, + 624E0375742ABC12EE1D63556653C179 /* QBCheckmarkView.m in Sources */, + 2A8C91E614242306EFD2052D763F7F95 /* QBImagePickerController-dummy.m in Sources */, + E44C6C122FB7D8D125E12B5AAF39C4DD /* QBImagePickerController.m in Sources */, + 7A63C6D10DF9BFE5FEBF7A0F37D4A52A /* QBSlomoIconView.m in Sources */, + 2F07AF6AB1D4CEF927872EDFF39E2AE6 /* QBVideoIconView.m in Sources */, + 61485F5A9FDE863BC82B778B37F15E1C /* QBVideoIndicatorView.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C84BBA87DF3375D2782BE732EA208584 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 7F4AD868518E4BBAE70F5F139B5E608D /* Compression.m in Sources */, + 9086ADDB1282B53FA3A7426B2D46D893 /* ImageCropPicker.m in Sources */, + 2524222771F5C0215EAAE0527EB09B60 /* RNImageCropPicker-dummy.m in Sources */, + C6B7D13D05AE788B4B764BD5B7E55066 /* UIImage+Resize.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CB8572C6FF26E01987A518AB4A4198FA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 69395FAE51A05E1A41A4C630434F25AD /* Utils.cpp in Sources */, + D122E41D617F683C2B34B1585A613B35 /* YGConfig.cpp in Sources */, + B26344642961C7B2DB1155D1CE71C883 /* YGEnums.cpp in Sources */, + FDFD29DD52CF2A502DFE889730C28485 /* YGFloatOptional.cpp in Sources */, + FCC67C0167D232EA40EE374D7E634714 /* YGLayout.cpp in Sources */, + 9832DFD22D79B08AE1D668CA17C8823E /* YGNode.cpp in Sources */, + C47787C9531218E11AA0EBE9FE4F993B /* YGNodePrint.cpp in Sources */, + 23E710866F5A92654A8156D9D181FB2C /* YGStyle.cpp in Sources */, + D0A3D004404A87B711427B11FC752072 /* yoga-dummy.m in Sources */, + 907811A17D31AF49AB09B55E48DB42D5 /* Yoga.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 0A6B80C260D306EB3E9CCC2A7D1DA9A3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 37D296133551343E68172C8628857C41 /* PBXContainerItemProxy */; - }; - 0DD44050CB43E98F06032D3FA420DADA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = QBImagePickerController; - target = 19E7A596BFB31645A127652B332D4DA3 /* QBImagePickerController */; - targetProxy = DED710C5A7E50EE3F1A37FA2D80EEBC9 /* PBXContainerItemProxy */; - }; - 323D57BB726EAED7478502B380932010 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 0B3E140A2263E5B3CDC99E71D9BE9F25 /* PBXContainerItemProxy */; - }; - 637490DE61C3A6B42F228A280A99F392 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNImageCropPicker; - target = 45E44642036D1BBA1FC78B488A87579A /* RNImageCropPicker */; - targetProxy = F23FE9EB62C29EEC951ABFEE024C35FC /* PBXContainerItemProxy */; - }; - 757DFBD16CB337AC63BD02DB4B6DA4B7 /* PBXTargetDependency */ = { + 028044E2602D65CA89A3466BF77B3F89 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = yoga; - target = EA260E86CC615B56504AA34DA7363F6F /* yoga */; - targetProxy = E4E44B4A80B8BF85A1131827CCFAB866 /* PBXContainerItemProxy */; + target = E06AB1FAF7FA8FBF0A9A51100E7D4636 /* yoga */; + targetProxy = B77B0F37D31FA1AE1AAB3F3143F165B1 /* PBXContainerItemProxy */; }; - 7673441C668C4B5EB4CCE6184BBB9DE3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "react-native-orientation-locker"; - target = D2E7333285525F3889264970D99637C5 /* react-native-orientation-locker */; - targetProxy = 1C29E26CFB2FE43C9B65A93D77917DD0 /* PBXContainerItemProxy */; - }; - 7E65FAE24C02FE335B5190743B97E8E2 /* PBXTargetDependency */ = { + 085C07F2970A7E6C6054A653FDE63368 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "QBImagePickerController-QBImagePicker"; - target = 376DEB4502B4900C4F93F4A1C7F1DEAC /* QBImagePickerController-QBImagePicker */; - targetProxy = 594C8A7614D299AA0322BD80AD6E559E /* PBXContainerItemProxy */; + target = FAF6F24B253252A5B7F8AD31E27A6255 /* QBImagePickerController-QBImagePicker */; + targetProxy = 22975121D7EE8CC697770BF1D23771C1 /* PBXContainerItemProxy */; }; - 7FA3829274DE64B2553BB7FDF9721B78 /* PBXTargetDependency */ = { + 223BD169DC7A48951A9887D9B12C44C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = RNScreens; - target = B347A23B44C5457B10E9F0ABE49F3673 /* RNScreens */; - targetProxy = EA8CBAD760B7168A8E1F56A5FE2429D5 /* PBXContainerItemProxy */; + name = "react-native-orientation-locker"; + target = D20E4CF7B7A03AD1F5B7FFBC7325571A /* react-native-orientation-locker */; + targetProxy = 1BE4AA0C3502ED50E51F803C4F50F504 /* PBXContainerItemProxy */; }; - 897FF28351DD99A68AA238661C76FD70 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 95C5920EA280A40E68B98765FEBBBC57 /* PBXContainerItemProxy */; - }; - 90A3028D9AAEEC54555C4A82BFC43004 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 565324B151899A0DB508DEB7279C3EBC /* PBXContainerItemProxy */; - }; - 95CE0F02A1C0590642076F1EB4A5E052 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = QBImagePickerController; - target = 19E7A596BFB31645A127652B332D4DA3 /* QBImagePickerController */; - targetProxy = 810E15AFE5FB49133D1C8605A7CEF647 /* PBXContainerItemProxy */; - }; - B40AE7CC0E4945991D62244DDE00D7E1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 982841B643C920292E2F91A06659D739 /* PBXContainerItemProxy */; - }; - B7109FC9D53EC30BCD6873F4EECC67CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RNDeviceInfo; - target = 8A6094DAAF476759DFAD6C3D9435C73E /* RNDeviceInfo */; - targetProxy = 9B4497C781EAA1C526EDDF39E8B40DE8 /* PBXContainerItemProxy */; - }; - B9505E6A962888DF59453D6EABCCD199 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - targetProxy = 3DEDFB0FA2232904F948BCE48CCE0C6A /* PBXContainerItemProxy */; - }; - D9B787CC504F6A3EB7C7542202C0D34E /* PBXTargetDependency */ = { + 2386FE35C753DABBE9CE17BBCAF3BD86 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "react-native-splash-screen"; - target = F871CCC8CA4729CF25DFAA362986ADA5 /* react-native-splash-screen */; - targetProxy = 98516380E4A03F298421C812CBEDADEA /* PBXContainerItemProxy */; + target = 1C07AEF89DFDCF579A5A2BC2E4008C43 /* react-native-splash-screen */; + targetProxy = 01C36B14EB20FE8CB82CC39300980EE2 /* PBXContainerItemProxy */; }; - F1D8CD06360929D29EB1E45538887FE6 /* PBXTargetDependency */ = { + 2712833D836D562D0853CB413B99B900 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = D77B26514759C14E52D6C0EA147E7C72 /* PBXContainerItemProxy */; + }; + 2E6C72846F1A69137A285C2CBCCB33BA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = 4575E4009A5964A17B1B4F7A5665DD5D /* PBXContainerItemProxy */; + }; + 38E9DF396230DC44720E4EC45F76F1F3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNScreens; + target = B2EC544CC7C0C1B32B8E254EE7C2FF05 /* RNScreens */; + targetProxy = 7C1B274A99A5F991DE331477A25E2604 /* PBXContainerItemProxy */; + }; + 3DC571949ED28B0F9ECFFF7652A10D5C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = CDC347D82B2FE3309081EA360B4EDAB3 /* PBXContainerItemProxy */; + }; + 7C26791DCAFDC6B2E68516C126CB6312 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNImageCropPicker; + target = A2923FF981017EE3FF96A37DE1219A22 /* RNImageCropPicker */; + targetProxy = A30645626D59A317AB8E8E4CC2B953CE /* PBXContainerItemProxy */; + }; + 8214F2F9AD9F95A584A8DDA92869C2D3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = 147049F7B609B922CADEAD3B306BED46 /* PBXContainerItemProxy */; + }; + 98057D7CF9EFCFF0B702CC96C11014F8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = C3FAA51EC4912B31BF92E818767E4CE2 /* PBXContainerItemProxy */; + }; + 9BAA25B45C4308D7E331AFAEEE1DDB1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = D412ACF256DE99EB10B4BFEC4DCAD631 /* PBXContainerItemProxy */; + }; + ACC69A674371A13008CA60149A4C9158 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RNDeviceInfo; + target = B66E8DA8AC0E14784951673963BA5877 /* RNDeviceInfo */; + targetProxy = B2E2524A98182BD3A2C50F1104138AA2 /* PBXContainerItemProxy */; + }; + AD11B2A086E15B21ECF45571D4B83992 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = E0EFFF7F98EDDC5EA29A779B6056CC72 /* QBImagePickerController */; + targetProxy = 95D2BE0BE967BD9B147CF59C90D18DE6 /* PBXContainerItemProxy */; + }; + B6AACE053A27E8B1368F52CEAAB97FF4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "react-native-webview"; + target = C804E89709ADE5B1AD6F17E6875AF383 /* react-native-webview */; + targetProxy = E19A494496E365B5AA14F450F4D348B0 /* PBXContainerItemProxy */; + }; + C989F2370E21848C9403095649FC6C0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + targetProxy = AA7863FFADC2DF913B9ADD99F2BB7C82 /* PBXContainerItemProxy */; + }; + D40194533D2F3168BC11F0043FFEB318 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = QBImagePickerController; + target = E0EFFF7F98EDDC5EA29A779B6056CC72 /* QBImagePickerController */; + targetProxy = 5D73A9E1448EE0468BBAB067731651A2 /* PBXContainerItemProxy */; + }; + EF88BCF07C9AF6675F773F63ABE696C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; - target = 7A1361361838181F7617C267CDBDCE0C /* RSKImageCropper */; - targetProxy = 10466733EF5F19EE2B44983EB13BDC95 /* PBXContainerItemProxy */; + target = A49950A5293BFE67914818C23681E39F /* RSKImageCropper */; + targetProxy = 129A73048386F48095E4468E39F62361 /* PBXContainerItemProxy */; }; - FF58AB9B6FAC62F17574919DA1F6722E /* PBXTargetDependency */ = { + FD9C9CAC99BC3B92169F4CD7C5806B99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = RSKImageCropper; - target = 7A1361361838181F7617C267CDBDCE0C /* RSKImageCropper */; - targetProxy = 071E1E59F2FCBB61F760C7DB9EB6D3CB /* PBXContainerItemProxy */; + target = A49950A5293BFE67914818C23681E39F /* RSKImageCropper */; + targetProxy = EF2C7F03A5D06F27EF24BECE0A9B2621 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 07488D4657FB0A78086563621D425F8A /* Debug */ = { + 01C1B6AB7CE0E83B2C7FB2D6585CDF15 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C2402DBC29E396FD752B27062D3D93B5 /* RNDeviceInfo.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 31563C69145224DCFFFA94092213DB60 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C5E35835715A8A3C60E24C0BE203CBCB /* yoga.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/yoga/yoga-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = yoga; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 38D9EA0CEF4630F5509CE2457D7D408E /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MACH_O_TYPE = staticlib; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 43B6CF4989DFA7D83D5B96DB4A282BB0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C48472A9024BBBA4569F1A9B24487CAF /* 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; + }; + 551909857E78EA964DA26D5013ECBC86 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 3C643456F4751DA618214E3EB46B5E94 /* react-native-splash-screen.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_splash_screen; + PRODUCT_NAME = "react-native-splash-screen"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 5CBC8F33620C780F881BA667E9E2DD10 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 91ED0271979CB14C165D67E731E96951 /* react-native-webview.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-webview/react-native-webview-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 61F4E812CD7044AAA65D96AD1B77B265 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 256941D9DFC96BDB77F031F670CDE98B /* RSKImageCropper.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RSKImageCropper/RSKImageCropper-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RSKImageCropper; + PRODUCT_NAME = RSKImageCropper; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 743F9727BEB547E74ADB1C76C11EC136 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 531B5BA23F414157657B78B33D1CEB42 /* RNScreens.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 7658BD6E8AA2C23902B965BAA80677DB /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C48472A9024BBBA4569F1A9B24487CAF /* QBImagePickerController.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = QBImagePickerController; + PRODUCT_NAME = QBImagePickerController; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8A8B7E4E4861CD6DE69BA588DD08F425 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 562989699027A5C027EFC0E8466C69E7 /* 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; + }; + 8F17DC3A99F99FBAD606CE6963886315 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + 916E0404255105F480DC4950B7625F7A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -2578,59 +3012,12 @@ STRIP_INSTALLED_PRODUCT = NO; SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 4.2; + SWIFT_VERSION = 5.0; SYMROOT = "${SRCROOT}/../build"; }; name = Debug; }; - 1283CC09C3CF62A59FEFAD01D666047C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7059A0EA7E394745C48FE5A62D7162BD /* react-native-splash-screen.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-splash-screen/react-native-splash-screen-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_splash_screen; - PRODUCT_NAME = "react-native-splash-screen"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 14915A00DF4313DDE10329A11EEC4779 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BB717D4B0308A909BE2F7D6676BB162F /* RNDeviceInfo.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 1DE14F450DA31FDFC96E1FA61868A1F4 /* Debug */ = { + 92CED4E768C99979C9DB2E4E44A9E4DA /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = C48472A9024BBBA4569F1A9B24487CAF /* QBImagePickerController.xcconfig */; buildSettings = { @@ -2653,164 +3040,7 @@ }; name = Debug; }; - 47C9C956C36E022602D8AA0B9AEB8AFA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0446A1D1479BD1219F3BDD5890752BC4 /* 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; - }; - 4E952E996D9B336AFFBF58D0C2DAF016 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 83091F8332BEB1A0570BD29ED6AEBF38 /* RNScreens.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 55FF0D4BF334B0A0721DAD17578AAD0C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BB717D4B0308A909BE2F7D6676BB162F /* RNDeviceInfo.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNDeviceInfo/RNDeviceInfo-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNDeviceInfo; - PRODUCT_NAME = RNDeviceInfo; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 61349E0C9129088AFCDA97E68C79ED5C /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C48472A9024BBBA4569F1A9B24487CAF /* QBImagePickerController.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/QBImagePickerController/QBImagePickerController-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = QBImagePickerController; - PRODUCT_NAME = QBImagePickerController; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 685B322769CD55EEB6E02D7866F1AD1A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0446A1D1479BD1219F3BDD5890752BC4 /* react-native-orientation-locker.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = react_native_orientation_locker; - PRODUCT_NAME = "react-native-orientation-locker"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 76AB48DB7243CB15A365F9C99DD18A17 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = C48472A9024BBBA4569F1A9B24487CAF /* QBImagePickerController.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; - INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - PRODUCT_NAME = QBImagePicker; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 7CF1E1511C99DC8868265A5C60EC5361 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 83091F8332BEB1A0570BD29ED6AEBF38 /* RNScreens.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RNScreens; - PRODUCT_NAME = RNScreens; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 7F1AB956412A852A580F84E9B14A68F3 /* Debug */ = { + 9520CA26954DCD118B33697F88FF5269 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 256941D9DFC96BDB77F031F670CDE98B /* RSKImageCropper.xcconfig */; buildSettings = { @@ -2830,72 +3060,29 @@ SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A1962E6FF39BBAC201A2E5DDF99557DF /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 4.2; - SYMROOT = "${SRCROOT}/../build"; + VALIDATE_PRODUCT = YES; }; name = Release; }; - A80126850DB78DD8AF20C811D4CA639C /* Release */ = { + 9EF9C9CC17BC5D05E298EF65C92BC290 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0530A6773039FABBA72DB3A990536E2 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = C48472A9024BBBA4569F1A9B24487CAF /* QBImagePickerController.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/QBImagePickerController"; + INFOPLIST_FILE = "Target Support Files/QBImagePickerController/ResourceBundle-QBImagePicker-QBImagePickerController-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = QBImagePicker; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + BC86A88A08D91ACE7CC4C564165A1837 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 081741F152BF40AB15D82EB34AE0CA0A /* RNImageCropPicker.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -2917,7 +3104,31 @@ }; name = Release; }; - AE2DE1D3D346BF174BB2F7AFC38DA072 /* Debug */ = { + BED1599593FE6EFD531D554DCFD7CF0B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 531B5BA23F414157657B78B33D1CEB42 /* RNScreens.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/RNScreens/RNScreens-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = RNScreens; + PRODUCT_NAME = RNScreens; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + CD7F903F155C17489FB229EB2713F863 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = FF36BF4F706AA77F33A0FAC553A39934 /* Pods-RocketChatRN.debug.xcconfig */; buildSettings = { @@ -2938,21 +3149,21 @@ }; name = Debug; }; - C2AB9B88CA6A20F77867982284DF5211 /* Debug */ = { + DADE9BD8E61ED9AEE740A62AC726EC30 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D0530A6773039FABBA72DB3A990536E2 /* RNImageCropPicker.xcconfig */; + baseConfigurationReference = C2402DBC29E396FD752B27062D3D93B5 /* RNDeviceInfo.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/RNImageCropPicker/RNImageCropPicker-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 = RNImageCropPicker; - PRODUCT_NAME = RNImageCropPicker; + PRODUCT_MODULE_NAME = RNDeviceInfo; + PRODUCT_NAME = RNDeviceInfo; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; @@ -2961,47 +3172,9 @@ }; name = Debug; }; - C57F88ED5FCE432CDB646C50E6F4D1B4 /* Release */ = { + E29F5830335AD4BFD2BAB4CEFB08ACFA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C48472A9024BBBA4569F1A9B24487CAF /* 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; - }; - E1F23CF997928F567E4B0BAE28EC9ACD /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CB151BF6B6F22A525E316E9CC21FBF6C /* Pods-RocketChatRN.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MACH_O_TYPE = staticlib; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - EBE76AA92126C3C775C13505E5AAFD74 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7059A0EA7E394745C48FE5A62D7162BD /* react-native-splash-screen.xcconfig */; + baseConfigurationReference = 3C643456F4751DA618214E3EB46B5E94 /* react-native-splash-screen.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3023,9 +3196,9 @@ }; name = Release; }; - F0F9CB5A0DE443021775B4EFEF50D3B9 /* Debug */ = { + E644B4EACC80147D3490F5DE70751BCE /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1CBEF7C66A9A51F36011C0EAB6241095 /* yoga.xcconfig */; + baseConfigurationReference = C5E35835715A8A3C60E24C0BE203CBCB /* yoga.xcconfig */; buildSettings = { CODE_SIGN_IDENTITY = "iPhone Developer"; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3043,65 +3216,96 @@ SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + F3D393DF7EA271A5EEE7744D761D0A57 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 081741F152BF40AB15D82EB34AE0CA0A /* 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; }; - F634A4E8039048733BDDEAC025CFC36D /* Release */ = { + F8F776DE2D44A2263E19115B9AD0C756 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 256941D9DFC96BDB77F031F670CDE98B /* RSKImageCropper.xcconfig */; + baseConfigurationReference = 91ED0271979CB14C165D67E731E96951 /* 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/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; - }; - F7DD9049E7766C35A6E313D516AE4D57 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1CBEF7C66A9A51F36011C0EAB6241095 /* yoga.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/yoga/yoga-prefix.pch"; + 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 = yoga; - PRODUCT_NAME = yoga; + PRODUCT_MODULE_NAME = react_native_webview; + PRODUCT_NAME = "react-native-webview"; PUBLIC_HEADERS_FOLDER_PATH = ""; SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; + }; + FE032130636D2B7768BBE4E89E85FDAF /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 562989699027A5C027EFC0E8466C69E7 /* react-native-orientation-locker.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/react-native-orientation-locker/react-native-orientation-locker-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = react_native_orientation_locker; + PRODUCT_NAME = "react-native-orientation-locker"; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 103C4C48354D58A0F823EF64CBC4F349 /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { + 16EE56A05DDB379AE7B10CB9D8E4CAE1 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7F1AB956412A852A580F84E9B14A68F3 /* Debug */, - F634A4E8039048733BDDEAC025CFC36D /* Release */, + F3D393DF7EA271A5EEE7744D761D0A57 /* Debug */, + BC86A88A08D91ACE7CC4C564165A1837 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 37870196E399F7BD3B2293B0DEB06C9B /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DADE9BD8E61ED9AEE740A62AC726EC30 /* Debug */, + 01C1B6AB7CE0E83B2C7FB2D6585CDF15 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -3109,89 +3313,89 @@ 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 07488D4657FB0A78086563621D425F8A /* Debug */, - A1962E6FF39BBAC201A2E5DDF99557DF /* Release */, + 916E0404255105F480DC4950B7625F7A /* Debug */, + 8F17DC3A99F99FBAD606CE6963886315 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4888282371631DEC13D1FE58BBFC509F /* Build configuration list for PBXNativeTarget "RNScreens" */ = { + 54A73601549F7DAA16D0DDACDEB6D9DA /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4E952E996D9B336AFFBF58D0C2DAF016 /* Debug */, - 7CF1E1511C99DC8868265A5C60EC5361 /* Release */, + 551909857E78EA964DA26D5013ECBC86 /* Debug */, + E29F5830335AD4BFD2BAB4CEFB08ACFA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4BB03A6CB032B455604B26507FE39892 /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { + 6A502216A726EAEB1292753DA067DEB8 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { isa = XCConfigurationList; buildConfigurations = ( - AE2DE1D3D346BF174BB2F7AFC38DA072 /* Debug */, - E1F23CF997928F567E4B0BAE28EC9ACD /* Release */, + 9EF9C9CC17BC5D05E298EF65C92BC290 /* Debug */, + 43B6CF4989DFA7D83D5B96DB4A282BB0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 69DBC194F676EB035D8F72404A293ED3 /* Build configuration list for PBXNativeTarget "yoga" */ = { + 85E66719B997721D7B560ED21436FF9F /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { isa = XCConfigurationList; buildConfigurations = ( - F0F9CB5A0DE443021775B4EFEF50D3B9 /* Debug */, - F7DD9049E7766C35A6E313D516AE4D57 /* Release */, + 92CED4E768C99979C9DB2E4E44A9E4DA /* Debug */, + 7658BD6E8AA2C23902B965BAA80677DB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 809562F1334026DDD7445E1A0FD1EF22 /* Build configuration list for PBXNativeTarget "RNDeviceInfo" */ = { + A305091FF084A0B38FFB106BD914125E /* Build configuration list for PBXNativeTarget "react-native-webview" */ = { isa = XCConfigurationList; buildConfigurations = ( - 55FF0D4BF334B0A0721DAD17578AAD0C /* Debug */, - 14915A00DF4313DDE10329A11EEC4779 /* Release */, + F8F776DE2D44A2263E19115B9AD0C756 /* Debug */, + 5CBC8F33620C780F881BA667E9E2DD10 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83EFF982EB83A287CEFEF261568DEA62 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { + AF5224A77D2F62E7249EAFCB739A5E4C /* Build configuration list for PBXNativeTarget "yoga" */ = { isa = XCConfigurationList; buildConfigurations = ( - 685B322769CD55EEB6E02D7866F1AD1A /* Debug */, - 47C9C956C36E022602D8AA0B9AEB8AFA /* Release */, + 31563C69145224DCFFFA94092213DB60 /* Debug */, + E644B4EACC80147D3490F5DE70751BCE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A78E85B8C34D47D0EFE3434F3999DBC0 /* Build configuration list for PBXNativeTarget "RNImageCropPicker" */ = { + B6D735BA622BB93798F80882924F933A /* Build configuration list for PBXNativeTarget "Pods-RocketChatRN" */ = { isa = XCConfigurationList; buildConfigurations = ( - C2AB9B88CA6A20F77867982284DF5211 /* Debug */, - A80126850DB78DD8AF20C811D4CA639C /* Release */, + CD7F903F155C17489FB229EB2713F863 /* Debug */, + 38D9EA0CEF4630F5509CE2457D7D408E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B2283B4E5DC34785A15FD2A300696DA9 /* Build configuration list for PBXNativeTarget "QBImagePickerController-QBImagePicker" */ = { + EAB11EC1AAC319877132C1D0103872B7 /* Build configuration list for PBXNativeTarget "react-native-orientation-locker" */ = { isa = XCConfigurationList; buildConfigurations = ( - 76AB48DB7243CB15A365F9C99DD18A17 /* Debug */, - C57F88ED5FCE432CDB646C50E6F4D1B4 /* Release */, + FE032130636D2B7768BBE4E89E85FDAF /* Debug */, + 8A8B7E4E4861CD6DE69BA588DD08F425 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CE2E5A3C36949BCE5840F7EE395A55AC /* Build configuration list for PBXNativeTarget "QBImagePickerController" */ = { + F5A1C45BD1B62CFDFD49D064A6CD807C /* Build configuration list for PBXNativeTarget "RNScreens" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1DE14F450DA31FDFC96E1FA61868A1F4 /* Debug */, - 61349E0C9129088AFCDA97E68C79ED5C /* Release */, + 743F9727BEB547E74ADB1C76C11EC136 /* Debug */, + BED1599593FE6EFD531D554DCFD7CF0B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DBB7A5E84DE047DFF6562B538F55EB39 /* Build configuration list for PBXNativeTarget "react-native-splash-screen" */ = { + FBE5147429778BF7BB338DEF4D1DD35B /* Build configuration list for PBXNativeTarget "RSKImageCropper" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1283CC09C3CF62A59FEFAD01D666047C /* Debug */, - EBE76AA92126C3C775C13505E5AAFD74 /* Release */, + 61F4E812CD7044AAA65D96AD1B77B265 /* Debug */, + 9520CA26954DCD118B33697F88FF5269 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown index 932cf4560..784d0b984 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.markdown @@ -184,4 +184,29 @@ 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. + +## react-native-webview + +MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist index c01d436ac..ed5a233c5 100644 --- a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist +++ b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN-acknowledgements.plist @@ -244,6 +244,37 @@ SOFTWARE. Type PSGroupSpecifier + + FooterText + MIT License + +Copyright (c) 2015-present, Facebook, Inc. + +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 + react-native-webview + Type + PSGroupSpecifier + FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig b/ios/Pods/Target Support Files/Pods-RocketChatRN/Pods-RocketChatRN.debug.xcconfig index 3e0baf0a9..a70b2390c 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,7 +1,7 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/yoga" -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" -OTHER_LDFLAGS = $(inherited) -ObjC -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"stdc++" -l"yoga" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-webview" -l"stdc++" -l"yoga" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -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 3e0baf0a9..a70b2390c 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,7 +1,7 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/yoga" -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" -OTHER_LDFLAGS = $(inherited) -ObjC -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"stdc++" -l"yoga" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -framework "UIKit" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/QBImagePickerController" "${PODS_ROOT}/Headers/Public/RNDeviceInfo" "${PODS_ROOT}/Headers/Public/RNImageCropPicker" "${PODS_ROOT}/Headers/Public/RNScreens" "${PODS_ROOT}/Headers/Public/RSKImageCropper" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/react-native-orientation-locker" "${PODS_ROOT}/Headers/Public/react-native-splash-screen" "${PODS_ROOT}/Headers/Public/react-native-webview" "${PODS_ROOT}/Headers/Public/yoga" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/QBImagePickerController" "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo" "${PODS_CONFIGURATION_BUILD_DIR}/RNImageCropPicker" "${PODS_CONFIGURATION_BUILD_DIR}/RNScreens" "${PODS_CONFIGURATION_BUILD_DIR}/RSKImageCropper" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-orientation-locker" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-splash-screen" "${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"QBImagePickerController" -l"RNDeviceInfo" -l"RNImageCropPicker" -l"RNScreens" -l"RSKImageCropper" -l"React" -l"react-native-orientation-locker" -l"react-native-splash-screen" -l"react-native-webview" -l"stdc++" -l"yoga" -framework "JavaScriptCore" -framework "Photos" -framework "QuartzCore" -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-webview/react-native-webview-dummy.m b/ios/Pods/Target Support Files/react-native-webview/react-native-webview-dummy.m new file mode 100644 index 000000000..c921bef0e --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-webview/react-native-webview-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_react_native_webview : NSObject +@end +@implementation PodsDummy_react_native_webview +@end diff --git a/ios/Pods/Target Support Files/react-native-webview/react-native-webview-prefix.pch b/ios/Pods/Target Support Files/react-native-webview/react-native-webview-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-webview/react-native-webview-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-webview/react-native-webview.xcconfig b/ios/Pods/Target Support Files/react-native-webview/react-native-webview.xcconfig new file mode 100644 index 000000000..e2fcf3f7c --- /dev/null +++ b/ios/Pods/Target Support Files/react-native-webview/react-native-webview.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/react-native-webview +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/react-native-webview" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/react-native-webview" "${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-webview +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/package.json b/package.json index 631f9b984..f0dc3d6ac 100644 --- a/package.json +++ b/package.json @@ -65,6 +65,7 @@ "react-native-video-controls": "^2.2.3", "react-navigation": "^3.9.1", "react-navigation-header-buttons": "^2.3.1", + "react-native-webview": "5.8.1", "react-redux": "^6.0.0", "reactotron-react-native": "2.2", "realm": "2.26.1", diff --git a/yarn.lock b/yarn.lock index d3b2a4593..c8690286a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6685,7 +6685,7 @@ interpret@^1.0.0, interpret@^1.1.0: resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== -invariant@^2.1.0, invariant@^2.2.2, invariant@^2.2.4: +invariant@2.2.4, invariant@^2.1.0, invariant@^2.2.2, invariant@^2.2.4: version "2.2.4" resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== @@ -10575,6 +10575,14 @@ react-native-video@^4.4.1: prop-types "^15.5.10" shaka-player "^2.4.4" +react-native-webview@5.8.1: + version "5.8.1" + resolved "https://registry.yarnpkg.com/react-native-webview/-/react-native-webview-5.8.1.tgz#6f5a83dec55bbc02700155b1a16a668870f14de0" + integrity sha512-b6pSvmjoiWtcz6YspggW02X+BRXJWuquHwkh37BRx1NMW1iwMZA31SnFQvTpPzWYYIb9WF/mRsy2nGtt9C6NIg== + dependencies: + escape-string-regexp "1.0.5" + invariant "2.2.4" + react-native@0.58.6: version "0.58.6" resolved "https://registry.yarnpkg.com/react-native/-/react-native-0.58.6.tgz#a6d273cd2f51b0e3b141dad5f19622e0000497b3"