From 7c3009aa90125a02114aa8621f36fc901ad83894 Mon Sep 17 00:00:00 2001 From: ue Date: Tue, 9 Oct 2018 23:26:13 +0300 Subject: [PATCH 1/6] initial custom header comp --- .../header/container/headerContainer.js | 43 +++++++++++++++++++ src/components/header/index.js | 5 +++ src/components/header/view/headerStyles.js | 7 +++ src/components/header/view/headerView.js | 33 ++++++++++++++ 4 files changed, 88 insertions(+) create mode 100644 src/components/header/container/headerContainer.js create mode 100644 src/components/header/index.js create mode 100644 src/components/header/view/headerStyles.js create mode 100644 src/components/header/view/headerView.js diff --git a/src/components/header/container/headerContainer.js b/src/components/header/container/headerContainer.js new file mode 100644 index 000000000..698346425 --- /dev/null +++ b/src/components/header/container/headerContainer.js @@ -0,0 +1,43 @@ +import React, { Component } from 'react'; +// import { connect } from 'react-redux'; + +// Services and Actions + +// Middleware + +// Constants + +// Utilities + +// Component +import { HeaderView } from '..'; + +/* +* Props Name Description Value +*@props --> props name here description here Value Type Here +* +*/ + +class HeaderContainer extends Component { + constructor(props) { + super(props); + this.state = {}; + } + + // Component Life Cycle Functions + + // Component Functions + + render() { + // eslint-disable-next-line + //const {} = this.props; + + return ; + } +} + +// const mapStateToProps = state => ({ +// user: state.user.user, +// }); + +export default HeaderContainer; diff --git a/src/components/header/index.js b/src/components/header/index.js new file mode 100644 index 000000000..175f654de --- /dev/null +++ b/src/components/header/index.js @@ -0,0 +1,5 @@ +import HeaderView from './view/headerView'; +import Header from './container/headerContainer'; + +export { HeaderView, Header }; +export default Header; diff --git a/src/components/header/view/headerStyles.js b/src/components/header/view/headerStyles.js new file mode 100644 index 000000000..7e2389661 --- /dev/null +++ b/src/components/header/view/headerStyles.js @@ -0,0 +1,7 @@ +import EStyleSheet from 'react-native-extended-stylesheet'; + +export default EStyleSheet.create({ + styleName: { + // TODO: If we need default style. We can put there. + }, +}); diff --git a/src/components/header/view/headerView.js b/src/components/header/view/headerView.js new file mode 100644 index 000000000..a8682395a --- /dev/null +++ b/src/components/header/view/headerView.js @@ -0,0 +1,33 @@ +import React, { Component } from 'react'; +import { View } from 'react-native'; + +// Constants + +// Components + +// Styles +import styles from './headerStyles'; + +class HeaderView extends Component { + /* Props + * ------------------------------------------------ + * @prop { type } name - Description.... + */ + + constructor(props) { + super(props); + this.state = {}; + } + + // Component Life Cycles + + // Component Functions + + render() { + // const {} = this.props; + + return ; + } +} + +export default HeaderView; From b6d233306f66d56a11a08fb7733989cdebbd1aab Mon Sep 17 00:00:00 2001 From: ue Date: Wed, 10 Oct 2018 23:06:33 +0300 Subject: [PATCH 2/6] created header component with design --- .../statefull/container/exampleContainer.js | 8 ++-- .../header/container/headerContainer.js | 19 +++------ src/components/header/view/headerStyles.js | 39 ++++++++++++++++++- src/components/header/view/headerView.js | 29 +++++++++++--- .../notification/screen/notificationScreen.js | 17 +++++--- 5 files changed, 82 insertions(+), 30 deletions(-) diff --git a/src/_EXAMPLES FOR DEVELOPERS/components/statefull/container/exampleContainer.js b/src/_EXAMPLES FOR DEVELOPERS/components/statefull/container/exampleContainer.js index db1b23bc0..6f9781122 100644 --- a/src/_EXAMPLES FOR DEVELOPERS/components/statefull/container/exampleContainer.js +++ b/src/_EXAMPLES FOR DEVELOPERS/components/statefull/container/exampleContainer.js @@ -13,10 +13,10 @@ import { connect } from 'react-redux'; import { ExampleView } from '..'; /* -* Props Name Description Value -*@props --> props name here description here Value Type Here -* -*/ + * Props Name Description Value + *@props --> props name here description here Value Type Here + * + */ class ExampleContainer extends Component { constructor(props) { diff --git a/src/components/header/container/headerContainer.js b/src/components/header/container/headerContainer.js index 698346425..7569aeb01 100644 --- a/src/components/header/container/headerContainer.js +++ b/src/components/header/container/headerContainer.js @@ -1,5 +1,5 @@ import React, { Component } from 'react'; -// import { connect } from 'react-redux'; +import { withNavigation } from 'react-navigation'; // Services and Actions @@ -13,10 +13,10 @@ import React, { Component } from 'react'; import { HeaderView } from '..'; /* -* Props Name Description Value -*@props --> props name here description here Value Type Here -* -*/ + * Props Name Description Value + *@props --> props name here description here Value Type Here + * + */ class HeaderContainer extends Component { constructor(props) { @@ -29,15 +29,8 @@ class HeaderContainer extends Component { // Component Functions render() { - // eslint-disable-next-line - //const {} = this.props; - return ; } } -// const mapStateToProps = state => ({ -// user: state.user.user, -// }); - -export default HeaderContainer; +export default withNavigation(HeaderContainer); diff --git a/src/components/header/view/headerStyles.js b/src/components/header/view/headerStyles.js index 7e2389661..4059558b9 100644 --- a/src/components/header/view/headerStyles.js +++ b/src/components/header/view/headerStyles.js @@ -1,7 +1,42 @@ import EStyleSheet from 'react-native-extended-stylesheet'; export default EStyleSheet.create({ - styleName: { - // TODO: If we need default style. We can put there. + container: { + flex: 1, + flexDirection: 'row', + width: '$deviceWidth', + minHeight: 40, + maxHeight: 74, + backgroundColor: '$white', + }, + + avatarWrapper: { + backgroundColor: '#357ce6', + height: 50, + width: 68, + borderTopRightRadius: 68 / 2, + borderBottomRightRadius: 68 / 2, + justifyContent: 'center', + }, + titleWrapper: { + flexDirection: 'column', + justifyContent: 'center', + marginLeft: 8, + }, + title: { + fontSize: 14, + fontWeight: 'bold', + color: '$primaryDarkGray', + }, + subTitle: { + color: '$primaryDarkGray', + fontSize: 12, + }, + avatar: { + width: 32, + height: 32, + borderRadius: 32 / 2, + alignSelf: 'flex-end', + marginRight: 12, }, }); diff --git a/src/components/header/view/headerView.js b/src/components/header/view/headerView.js index a8682395a..0567c7e92 100644 --- a/src/components/header/view/headerView.js +++ b/src/components/header/view/headerView.js @@ -1,6 +1,9 @@ import React, { Component } from 'react'; -import { View } from 'react-native'; - +import { + View, StatusBar, Text, SafeAreaView, +} from 'react-native'; +import FastImage from 'react-native-fast-image'; +import LinearGradient from 'react-native-linear-gradient'; // Constants // Components @@ -8,10 +11,13 @@ import { View } from 'react-native'; // Styles import styles from './headerStyles'; +const DEFAULT_IMAGE = require('../../../assets/esteem.png'); + class HeaderView extends Component { /* Props * ------------------------------------------------ - * @prop { type } name - Description.... + * @prop { boolean } hideStatusBar - Can declare status bar is hide or not. + * */ constructor(props) { @@ -24,9 +30,20 @@ class HeaderView extends Component { // Component Functions render() { - // const {} = this.props; - - return ; + const { hideStatusBar, avatar } = this.props; + // TODO: this can redesign for usage area. + return ( + + + ); } } diff --git a/src/screens/notification/screen/notificationScreen.js b/src/screens/notification/screen/notificationScreen.js index cbd03d2cf..c63080af8 100644 --- a/src/screens/notification/screen/notificationScreen.js +++ b/src/screens/notification/screen/notificationScreen.js @@ -1,15 +1,22 @@ -import React, { Fragment } from 'react'; -import { Text, View, SafeAreaView } from 'react-native'; +import React, { Fragment, PureComponent } from 'react'; +import { Text, View } from 'react-native'; import ScrollableTabView from '@esteemapp/react-native-scrollable-tab-view'; import { TabBar } from '../../../components/tabBar'; import { Notification } from '../../../components/notification'; +import { Header } from '../../../components/header'; // Styles import styles from './notificationStyles'; -class NotificationScreen extends React.Component { +class NotificationScreen extends PureComponent { + constructor(props) { + super(props); + this.state = {}; + } + render() { return ( - + +
( @@ -29,7 +36,7 @@ class NotificationScreen extends React.Component { Leaderboard - + ); } } From a6d12a7e6b00985d352a26baf5fdc1ce67568bc9 Mon Sep 17 00:00:00 2001 From: ue Date: Wed, 10 Oct 2018 23:23:18 +0300 Subject: [PATCH 3/6] added popodfile --- ios/Podfile | 13 + ios/Podfile.lock | 30 + .../BVLinearGradient/BVLinearGradient.h | 1 + .../BVLinearGradient/BVLinearGradientLayer.h | 1 + .../BVLinearGradientManager.h | 1 + .../React/React/RCTAccessibilityManager.h | 1 + .../React/React/RCTActivityIndicatorView.h | 1 + .../React/RCTActivityIndicatorViewManager.h | 1 + .../Private/React/React/RCTAlertManager.h | 1 + .../Private/React/React/RCTAnimationType.h | 1 + .../Headers/Private/React/React/RCTAppState.h | 1 + .../Headers/Private/React/React/RCTAssert.h | 1 + .../React/React/RCTAsyncLocalStorage.h | 1 + .../React/React/RCTAutoInsetsProtocol.h | 1 + .../Private/React/React/RCTBorderDrawing.h | 1 + .../Private/React/React/RCTBorderStyle.h | 1 + .../Private/React/React/RCTBridge+Private.h | 1 + .../Headers/Private/React/React/RCTBridge.h | 1 + .../Private/React/React/RCTBridgeDelegate.h | 1 + .../Private/React/React/RCTBridgeMethod.h | 1 + .../Private/React/React/RCTBridgeModule.h | 1 + .../React/React/RCTBundleURLProvider.h | 1 + .../Private/React/React/RCTClipboard.h | 1 + .../Private/React/React/RCTComponent.h | 1 + .../Private/React/React/RCTComponentData.h | 1 + .../React/React/RCTConvert+CoreLocation.h | 1 + .../React/React/RCTConvert+Transform.h | 1 + .../Headers/Private/React/React/RCTConvert.h | 1 + .../Private/React/React/RCTCxxConvert.h | 1 + .../Private/React/React/RCTDatePicker.h | 1 + .../React/React/RCTDatePickerManager.h | 1 + .../Headers/Private/React/React/RCTDefines.h | 1 + .../Private/React/React/RCTDevSettings.h | 1 + .../Private/React/React/RCTDeviceInfo.h | 1 + .../Private/React/React/RCTDisplayLink.h | 1 + .../Private/React/React/RCTErrorCustomizer.h | 1 + .../Private/React/React/RCTErrorInfo.h | 1 + .../Private/React/React/RCTEventDispatcher.h | 1 + .../Private/React/React/RCTEventEmitter.h | 1 + .../React/React/RCTExceptionsManager.h | 1 + .../Headers/Private/React/React/RCTFPSGraph.h | 1 + .../Headers/Private/React/React/RCTFont.h | 1 + .../Private/React/React/RCTFrameUpdate.h | 1 + .../Private/React/React/RCTI18nManager.h | 1 + .../Headers/Private/React/React/RCTI18nUtil.h | 1 + .../Private/React/React/RCTImageSource.h | 1 + .../Private/React/React/RCTInvalidating.h | 1 + .../Private/React/React/RCTJSCErrorHandling.h | 1 + .../React/React/RCTJSCSamplingProfiler.h | 1 + .../Private/React/React/RCTJSStackFrame.h | 1 + .../React/React/RCTJavaScriptExecutor.h | 1 + .../Private/React/React/RCTJavaScriptLoader.h | 1 + .../Private/React/React/RCTKeyCommands.h | 1 + .../Private/React/React/RCTKeyboardObserver.h | 1 + .../Headers/Private/React/React/RCTLayout.h | 1 + .../Private/React/React/RCTLayoutAnimation.h | 1 + .../React/React/RCTLayoutAnimationGroup.h | 1 + ios/Pods/Headers/Private/React/React/RCTLog.h | 1 + .../Headers/Private/React/React/RCTMacros.h | 1 + .../Private/React/React/RCTManagedPointer.h | 1 + .../Private/React/React/RCTMaskedView.h | 1 + .../React/React/RCTMaskedViewManager.h | 1 + .../Private/React/React/RCTModalHostView.h | 1 + .../React/React/RCTModalHostViewController.h | 1 + .../React/React/RCTModalHostViewManager.h | 1 + .../Private/React/React/RCTModalManager.h | 1 + .../Private/React/React/RCTModuleData.h | 1 + .../Private/React/React/RCTModuleMethod.h | 1 + .../React/React/RCTMultipartDataTask.h | 1 + .../React/React/RCTMultipartStreamReader.h | 1 + .../Headers/Private/React/React/RCTNavItem.h | 1 + .../Private/React/React/RCTNavItemManager.h | 1 + .../Private/React/React/RCTNavigator.h | 1 + .../Private/React/React/RCTNavigatorManager.h | 1 + .../Private/React/React/RCTNullability.h | 1 + .../Private/React/React/RCTParserUtils.h | 1 + .../React/React/RCTPerformanceLogger.h | 1 + .../Headers/Private/React/React/RCTPicker.h | 1 + .../Private/React/React/RCTPickerManager.h | 1 + .../Headers/Private/React/React/RCTPlatform.h | 1 + .../Private/React/React/RCTPointerEvents.h | 1 + .../Headers/Private/React/React/RCTProfile.h | 1 + .../React/React/RCTProgressViewManager.h | 1 + .../Headers/Private/React/React/RCTRedBox.h | 1 + .../React/RCTRedBoxExtraDataViewController.h | 1 + .../Private/React/React/RCTRefreshControl.h | 1 + .../React/React/RCTRefreshControlManager.h | 1 + .../Private/React/React/RCTReloadCommand.h | 1 + .../Private/React/React/RCTRootContentView.h | 1 + .../Private/React/React/RCTRootShadowView.h | 1 + .../Headers/Private/React/React/RCTRootView.h | 1 + .../Private/React/React/RCTRootViewDelegate.h | 1 + .../Private/React/React/RCTRootViewInternal.h | 1 + .../React/React/RCTSafeAreaShadowView.h | 1 + .../Private/React/React/RCTSafeAreaView.h | 1 + .../React/React/RCTSafeAreaViewLocalData.h | 1 + .../React/React/RCTSafeAreaViewManager.h | 1 + .../React/React/RCTScrollContentShadowView.h | 1 + .../React/React/RCTScrollContentView.h | 1 + .../React/React/RCTScrollContentViewManager.h | 1 + .../Private/React/React/RCTScrollView.h | 1 + .../React/React/RCTScrollViewManager.h | 1 + .../React/React/RCTScrollableProtocol.h | 1 + .../Private/React/React/RCTSegmentedControl.h | 1 + .../React/React/RCTSegmentedControlManager.h | 1 + .../React/React/RCTShadowView+Internal.h | 1 + .../React/React/RCTShadowView+Layout.h | 1 + .../Private/React/React/RCTShadowView.h | 1 + .../Headers/Private/React/React/RCTSlider.h | 1 + .../Private/React/React/RCTSliderManager.h | 1 + .../Private/React/React/RCTSourceCode.h | 1 + .../Private/React/React/RCTStatusBarManager.h | 1 + .../Headers/Private/React/React/RCTSurface.h | 1 + .../Private/React/React/RCTSurfaceDelegate.h | 1 + .../React/RCTSurfaceHostingProxyRootView.h | 1 + .../React/React/RCTSurfaceHostingView.h | 1 + .../React/React/RCTSurfaceRootShadowView.h | 1 + .../React/RCTSurfaceRootShadowViewDelegate.h | 1 + .../Private/React/React/RCTSurfaceRootView.h | 1 + .../React/React/RCTSurfaceSizeMeasureMode.h | 1 + .../Private/React/React/RCTSurfaceStage.h | 1 + .../React/React/RCTSurfaceView+Internal.h | 1 + .../Private/React/React/RCTSurfaceView.h | 1 + .../Headers/Private/React/React/RCTSwitch.h | 1 + .../Private/React/React/RCTSwitchManager.h | 1 + .../Headers/Private/React/React/RCTTabBar.h | 1 + .../Private/React/React/RCTTabBarItem.h | 1 + .../React/React/RCTTabBarItemManager.h | 1 + .../Private/React/React/RCTTabBarManager.h | 1 + .../React/React/RCTTextDecorationLineType.h | 1 + .../Headers/Private/React/React/RCTTiming.h | 1 + .../Private/React/React/RCTTouchEvent.h | 1 + .../Private/React/React/RCTTouchHandler.h | 1 + .../Private/React/React/RCTUIManager.h | 1 + .../React/RCTUIManagerObserverCoordinator.h | 1 + .../Private/React/React/RCTUIManagerUtils.h | 1 + .../Headers/Private/React/React/RCTUIUtils.h | 1 + .../React/React/RCTURLRequestDelegate.h | 1 + .../React/React/RCTURLRequestHandler.h | 1 + .../Headers/Private/React/React/RCTUtils.h | 1 + .../Headers/Private/React/React/RCTVersion.h | 1 + .../Headers/Private/React/React/RCTView.h | 1 + .../Private/React/React/RCTViewManager.h | 1 + .../Private/React/React/RCTWKWebView.h | 1 + .../Private/React/React/RCTWKWebViewManager.h | 1 + .../Headers/Private/React/React/RCTWebView.h | 1 + .../Private/React/React/RCTWebViewManager.h | 1 + .../React/React/RCTWrapperViewController.h | 1 + .../Private/React/React/UIView+Private.h | 1 + .../Private/React/React/UIView+React.h | 1 + ios/Pods/Headers/Private/yoga/Utils.h | 1 + ios/Pods/Headers/Private/yoga/YGConfig.h | 1 + ios/Pods/Headers/Private/yoga/YGEnums.h | 1 + .../Headers/Private/yoga/YGFloatOptional.h | 1 + ios/Pods/Headers/Private/yoga/YGLayout.h | 1 + ios/Pods/Headers/Private/yoga/YGMacros.h | 1 + ios/Pods/Headers/Private/yoga/YGNode.h | 1 + ios/Pods/Headers/Private/yoga/YGNodePrint.h | 1 + ios/Pods/Headers/Private/yoga/YGStyle.h | 1 + ios/Pods/Headers/Private/yoga/Yoga-internal.h | 1 + ios/Pods/Headers/Private/yoga/Yoga.h | 1 + .../BVLinearGradient/BVLinearGradient.h | 1 + .../BVLinearGradient/BVLinearGradientLayer.h | 1 + .../BVLinearGradientManager.h | 1 + .../React/React/RCTAccessibilityManager.h | 1 + .../React/React/RCTActivityIndicatorView.h | 1 + .../React/RCTActivityIndicatorViewManager.h | 1 + .../Public/React/React/RCTAlertManager.h | 1 + .../Public/React/React/RCTAnimationType.h | 1 + .../Headers/Public/React/React/RCTAppState.h | 1 + .../Headers/Public/React/React/RCTAssert.h | 1 + .../Public/React/React/RCTAsyncLocalStorage.h | 1 + .../React/React/RCTAutoInsetsProtocol.h | 1 + .../Public/React/React/RCTBorderDrawing.h | 1 + .../Public/React/React/RCTBorderStyle.h | 1 + .../Public/React/React/RCTBridge+Private.h | 1 + .../Headers/Public/React/React/RCTBridge.h | 1 + .../Public/React/React/RCTBridgeDelegate.h | 1 + .../Public/React/React/RCTBridgeMethod.h | 1 + .../Public/React/React/RCTBridgeModule.h | 1 + .../Public/React/React/RCTBundleURLProvider.h | 1 + .../Headers/Public/React/React/RCTClipboard.h | 1 + .../Headers/Public/React/React/RCTComponent.h | 1 + .../Public/React/React/RCTComponentData.h | 1 + .../React/React/RCTConvert+CoreLocation.h | 1 + .../Public/React/React/RCTConvert+Transform.h | 1 + .../Headers/Public/React/React/RCTConvert.h | 1 + .../Public/React/React/RCTCxxConvert.h | 1 + .../Public/React/React/RCTDatePicker.h | 1 + .../Public/React/React/RCTDatePickerManager.h | 1 + .../Headers/Public/React/React/RCTDefines.h | 1 + .../Public/React/React/RCTDevSettings.h | 1 + .../Public/React/React/RCTDeviceInfo.h | 1 + .../Public/React/React/RCTDisplayLink.h | 1 + .../Public/React/React/RCTErrorCustomizer.h | 1 + .../Headers/Public/React/React/RCTErrorInfo.h | 1 + .../Public/React/React/RCTEventDispatcher.h | 1 + .../Public/React/React/RCTEventEmitter.h | 1 + .../Public/React/React/RCTExceptionsManager.h | 1 + .../Headers/Public/React/React/RCTFPSGraph.h | 1 + ios/Pods/Headers/Public/React/React/RCTFont.h | 1 + .../Public/React/React/RCTFrameUpdate.h | 1 + .../Public/React/React/RCTI18nManager.h | 1 + .../Headers/Public/React/React/RCTI18nUtil.h | 1 + .../Public/React/React/RCTImageSource.h | 1 + .../Public/React/React/RCTInvalidating.h | 1 + .../Public/React/React/RCTJSCErrorHandling.h | 1 + .../React/React/RCTJSCSamplingProfiler.h | 1 + .../Public/React/React/RCTJSStackFrame.h | 1 + .../React/React/RCTJavaScriptExecutor.h | 1 + .../Public/React/React/RCTJavaScriptLoader.h | 1 + .../Public/React/React/RCTKeyCommands.h | 1 + .../Public/React/React/RCTKeyboardObserver.h | 1 + .../Headers/Public/React/React/RCTLayout.h | 1 + .../Public/React/React/RCTLayoutAnimation.h | 1 + .../React/React/RCTLayoutAnimationGroup.h | 1 + ios/Pods/Headers/Public/React/React/RCTLog.h | 1 + .../Headers/Public/React/React/RCTMacros.h | 1 + .../Public/React/React/RCTManagedPointer.h | 1 + .../Public/React/React/RCTMaskedView.h | 1 + .../Public/React/React/RCTMaskedViewManager.h | 1 + .../Public/React/React/RCTModalHostView.h | 1 + .../React/React/RCTModalHostViewController.h | 1 + .../React/React/RCTModalHostViewManager.h | 1 + .../Public/React/React/RCTModalManager.h | 1 + .../Public/React/React/RCTModuleData.h | 1 + .../Public/React/React/RCTModuleMethod.h | 1 + .../Public/React/React/RCTMultipartDataTask.h | 1 + .../React/React/RCTMultipartStreamReader.h | 1 + .../Headers/Public/React/React/RCTNavItem.h | 1 + .../Public/React/React/RCTNavItemManager.h | 1 + .../Headers/Public/React/React/RCTNavigator.h | 1 + .../Public/React/React/RCTNavigatorManager.h | 1 + .../Public/React/React/RCTNullability.h | 1 + .../Public/React/React/RCTParserUtils.h | 1 + .../Public/React/React/RCTPerformanceLogger.h | 1 + .../Headers/Public/React/React/RCTPicker.h | 1 + .../Public/React/React/RCTPickerManager.h | 1 + .../Headers/Public/React/React/RCTPlatform.h | 1 + .../Public/React/React/RCTPointerEvents.h | 1 + .../Headers/Public/React/React/RCTProfile.h | 1 + .../React/React/RCTProgressViewManager.h | 1 + .../Headers/Public/React/React/RCTRedBox.h | 1 + .../React/RCTRedBoxExtraDataViewController.h | 1 + .../Public/React/React/RCTRefreshControl.h | 1 + .../React/React/RCTRefreshControlManager.h | 1 + .../Public/React/React/RCTReloadCommand.h | 1 + .../Public/React/React/RCTRootContentView.h | 1 + .../Public/React/React/RCTRootShadowView.h | 1 + .../Headers/Public/React/React/RCTRootView.h | 1 + .../Public/React/React/RCTRootViewDelegate.h | 1 + .../Public/React/React/RCTRootViewInternal.h | 1 + .../React/React/RCTSafeAreaShadowView.h | 1 + .../Public/React/React/RCTSafeAreaView.h | 1 + .../React/React/RCTSafeAreaViewLocalData.h | 1 + .../React/React/RCTSafeAreaViewManager.h | 1 + .../React/React/RCTScrollContentShadowView.h | 1 + .../Public/React/React/RCTScrollContentView.h | 1 + .../React/React/RCTScrollContentViewManager.h | 1 + .../Public/React/React/RCTScrollView.h | 1 + .../Public/React/React/RCTScrollViewManager.h | 1 + .../React/React/RCTScrollableProtocol.h | 1 + .../Public/React/React/RCTSegmentedControl.h | 1 + .../React/React/RCTSegmentedControlManager.h | 1 + .../React/React/RCTShadowView+Internal.h | 1 + .../Public/React/React/RCTShadowView+Layout.h | 1 + .../Public/React/React/RCTShadowView.h | 1 + .../Headers/Public/React/React/RCTSlider.h | 1 + .../Public/React/React/RCTSliderManager.h | 1 + .../Public/React/React/RCTSourceCode.h | 1 + .../Public/React/React/RCTStatusBarManager.h | 1 + .../Headers/Public/React/React/RCTSurface.h | 1 + .../Public/React/React/RCTSurfaceDelegate.h | 1 + .../React/RCTSurfaceHostingProxyRootView.h | 1 + .../React/React/RCTSurfaceHostingView.h | 1 + .../React/React/RCTSurfaceRootShadowView.h | 1 + .../React/RCTSurfaceRootShadowViewDelegate.h | 1 + .../Public/React/React/RCTSurfaceRootView.h | 1 + .../React/React/RCTSurfaceSizeMeasureMode.h | 1 + .../Public/React/React/RCTSurfaceStage.h | 1 + .../React/React/RCTSurfaceView+Internal.h | 1 + .../Public/React/React/RCTSurfaceView.h | 1 + .../Headers/Public/React/React/RCTSwitch.h | 1 + .../Public/React/React/RCTSwitchManager.h | 1 + .../Headers/Public/React/React/RCTTabBar.h | 1 + .../Public/React/React/RCTTabBarItem.h | 1 + .../Public/React/React/RCTTabBarItemManager.h | 1 + .../Public/React/React/RCTTabBarManager.h | 1 + .../React/React/RCTTextDecorationLineType.h | 1 + .../Headers/Public/React/React/RCTTiming.h | 1 + .../Public/React/React/RCTTouchEvent.h | 1 + .../Public/React/React/RCTTouchHandler.h | 1 + .../Headers/Public/React/React/RCTUIManager.h | 1 + .../React/RCTUIManagerObserverCoordinator.h | 1 + .../Public/React/React/RCTUIManagerUtils.h | 1 + .../Headers/Public/React/React/RCTUIUtils.h | 1 + .../React/React/RCTURLRequestDelegate.h | 1 + .../Public/React/React/RCTURLRequestHandler.h | 1 + .../Headers/Public/React/React/RCTUtils.h | 1 + .../Headers/Public/React/React/RCTVersion.h | 1 + ios/Pods/Headers/Public/React/React/RCTView.h | 1 + .../Public/React/React/RCTViewManager.h | 1 + .../Headers/Public/React/React/RCTWKWebView.h | 1 + .../Public/React/React/RCTWKWebViewManager.h | 1 + .../Headers/Public/React/React/RCTWebView.h | 1 + .../Public/React/React/RCTWebViewManager.h | 1 + .../React/React/RCTWrapperViewController.h | 1 + .../Public/React/React/UIView+Private.h | 1 + .../Headers/Public/React/React/UIView+React.h | 1 + ios/Pods/Headers/Public/yoga/YGEnums.h | 1 + ios/Pods/Headers/Public/yoga/YGMacros.h | 1 + ios/Pods/Headers/Public/yoga/Yoga.h | 1 + .../BVLinearGradient.podspec.json | 30 + ios/Pods/Local Podspecs/React.podspec.json | 528 ++++ ios/Pods/Local Podspecs/Yoga.podspec.json | 32 + ios/Pods/Manifest.lock | 30 + ios/Pods/Pods.xcodeproj/project.pbxproj | 2120 +++++++++++++++++ .../BVLinearGradient/BVLinearGradient-dummy.m | 5 + .../BVLinearGradient-prefix.pch | 12 + .../BVLinearGradient.xcconfig | 11 + .../Pods-esteem-acknowledgements.markdown | 53 + .../Pods-esteem-acknowledgements.plist | 91 + .../Pods-esteem/Pods-esteem-dummy.m | 5 + .../Pods-esteem/Pods-esteem-frameworks.sh | 146 ++ .../Pods-esteem/Pods-esteem-resources.sh | 118 + .../Pods-esteem/Pods-esteem.debug.xcconfig | 9 + .../Pods-esteem/Pods-esteem.release.xcconfig | 9 + .../Target Support Files/React/React-dummy.m | 5 + .../React/React-prefix.pch | 12 + .../Target Support Files/React/React.xcconfig | 12 + .../Target Support Files/yoga/yoga-dummy.m | 5 + .../Target Support Files/yoga/yoga-prefix.pch | 12 + .../Target Support Files/yoga/yoga.xcconfig | 9 + ios/eSteem.xcodeproj/project.pbxproj | 41 +- .../contents.xcworkspacedata | 10 + src/components/header/view/headerView.js | 13 +- 336 files changed, 3666 insertions(+), 5 deletions(-) create mode 100644 ios/Podfile create mode 100644 ios/Podfile.lock create mode 120000 ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradient.h create mode 120000 ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientLayer.h create mode 120000 ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTAlertManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTAnimationType.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTAppState.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTAssert.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBorderStyle.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBridge+Private.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBridge.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBridgeModule.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTClipboard.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTComponent.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTComponentData.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTConvert.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTCxxConvert.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTDatePicker.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTDefines.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTDevSettings.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTDisplayLink.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTErrorInfo.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTEventEmitter.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTFPSGraph.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTFont.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTI18nManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTI18nUtil.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTImageSource.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTInvalidating.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTJSCErrorHandling.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTJSCSamplingProfiler.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTKeyCommands.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTLayout.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTLog.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTMacros.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTManagedPointer.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTMaskedView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTModalHostView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTModalManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTModuleData.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTModuleMethod.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTNavItem.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTNavItemManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTNavigator.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTNavigatorManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTNullability.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTParserUtils.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTPicker.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTPickerManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTPlatform.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTPointerEvents.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTProfile.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRedBox.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRefreshControl.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTReloadCommand.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRootContentView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRootShadowView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRootView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTScrollContentView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTScrollView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTShadowView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSlider.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSliderManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSourceCode.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurface.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSurfaceView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSwitch.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTSwitchManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTabBar.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTabBarItem.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTabBarItemManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTabBarManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTiming.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTouchEvent.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTTouchHandler.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTUIManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTUIUtils.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTUtils.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTVersion.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTWKWebView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTWebView.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTWebViewManager.h create mode 120000 ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h create mode 120000 ios/Pods/Headers/Private/React/React/UIView+Private.h create mode 120000 ios/Pods/Headers/Private/React/React/UIView+React.h create mode 120000 ios/Pods/Headers/Private/yoga/Utils.h create mode 120000 ios/Pods/Headers/Private/yoga/YGConfig.h create mode 120000 ios/Pods/Headers/Private/yoga/YGEnums.h create mode 120000 ios/Pods/Headers/Private/yoga/YGFloatOptional.h create mode 120000 ios/Pods/Headers/Private/yoga/YGLayout.h create mode 120000 ios/Pods/Headers/Private/yoga/YGMacros.h create mode 120000 ios/Pods/Headers/Private/yoga/YGNode.h create mode 120000 ios/Pods/Headers/Private/yoga/YGNodePrint.h create mode 120000 ios/Pods/Headers/Private/yoga/YGStyle.h create mode 120000 ios/Pods/Headers/Private/yoga/Yoga-internal.h create mode 120000 ios/Pods/Headers/Private/yoga/Yoga.h create mode 120000 ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradient.h create mode 120000 ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientLayer.h create mode 120000 ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTAlertManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTAnimationType.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTAppState.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTAssert.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBorderStyle.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBridge+Private.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBridge.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBridgeModule.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTClipboard.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTComponent.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTComponentData.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTConvert.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTCxxConvert.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTDatePicker.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTDefines.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTDevSettings.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTDisplayLink.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTErrorInfo.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTEventEmitter.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTFPSGraph.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTFont.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTI18nManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTI18nUtil.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTImageSource.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTInvalidating.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTJSCErrorHandling.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTJSCSamplingProfiler.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTKeyCommands.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTLayout.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTLog.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTMacros.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTManagedPointer.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTMaskedView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTModalHostView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTModalManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTModuleData.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTModuleMethod.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTNavItem.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTNavItemManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTNavigator.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTNavigatorManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTNullability.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTParserUtils.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTPicker.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTPickerManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTPlatform.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTPointerEvents.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTProfile.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRedBox.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRefreshControl.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTReloadCommand.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRootContentView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRootShadowView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRootView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTScrollContentView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTScrollView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTShadowView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSlider.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSliderManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSourceCode.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurface.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSurfaceView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSwitch.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTSwitchManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTabBar.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTabBarItem.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTabBarItemManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTabBarManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTiming.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTouchEvent.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTTouchHandler.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTUIManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTUIUtils.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTUtils.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTVersion.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTWKWebView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTWebView.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTWebViewManager.h create mode 120000 ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h create mode 120000 ios/Pods/Headers/Public/React/React/UIView+Private.h create mode 120000 ios/Pods/Headers/Public/React/React/UIView+React.h create mode 120000 ios/Pods/Headers/Public/yoga/YGEnums.h create mode 120000 ios/Pods/Headers/Public/yoga/YGMacros.h create mode 120000 ios/Pods/Headers/Public/yoga/Yoga.h create mode 100644 ios/Pods/Local Podspecs/BVLinearGradient.podspec.json create mode 100644 ios/Pods/Local Podspecs/React.podspec.json create mode 100644 ios/Pods/Local Podspecs/Yoga.podspec.json create mode 100644 ios/Pods/Manifest.lock create mode 100644 ios/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-dummy.m create mode 100644 ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-prefix.pch create mode 100644 ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient.xcconfig create mode 100644 ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-acknowledgements.markdown create mode 100644 ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-acknowledgements.plist create mode 100644 ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-dummy.m create mode 100755 ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-frameworks.sh create mode 100755 ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-resources.sh create mode 100644 ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig create mode 100644 ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig create mode 100644 ios/Pods/Target Support Files/React/React-dummy.m create mode 100644 ios/Pods/Target Support Files/React/React-prefix.pch create mode 100644 ios/Pods/Target Support Files/React/React.xcconfig create mode 100644 ios/Pods/Target Support Files/yoga/yoga-dummy.m create mode 100644 ios/Pods/Target Support Files/yoga/yoga-prefix.pch create mode 100644 ios/Pods/Target Support Files/yoga/yoga.xcconfig create mode 100644 ios/eSteem.xcworkspace/contents.xcworkspacedata diff --git a/ios/Podfile b/ios/Podfile new file mode 100644 index 000000000..026301232 --- /dev/null +++ b/ios/Podfile @@ -0,0 +1,13 @@ +# Uncomment the next line to define a global platform for your project +# platform :ios, '9.0' + +target 'esteem' do + # Uncomment the next line if you're using Swift or would like to use dynamic frameworks + # use_frameworks! + + # Pods for esteem + pod 'React', :path => '../node_modules/react-native' + pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' + pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient' + +end diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 000000000..e714ceed8 --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,30 @@ +PODS: + - BVLinearGradient (2.4.2): + - React + - React (0.57.1): + - React/Core (= 0.57.1) + - React/Core (0.57.1): + - yoga (= 0.57.1.React) + - yoga (0.57.1.React) + +DEPENDENCIES: + - BVLinearGradient (from `../node_modules/react-native-linear-gradient`) + - React (from `../node_modules/react-native`) + - yoga (from `../node_modules/react-native/ReactCommon/yoga`) + +EXTERNAL SOURCES: + BVLinearGradient: + :path: "../node_modules/react-native-linear-gradient" + React: + :path: "../node_modules/react-native" + yoga: + :path: "../node_modules/react-native/ReactCommon/yoga" + +SPEC CHECKSUMS: + BVLinearGradient: 6d8909e3fc6b089defa4b89d967441fa6827a2ee + React: 1fe0eb13d90b625d94c3b117c274dcfd2e760e11 + yoga: b1ce48b6cf950b98deae82838f5173ea7cf89e85 + +PODFILE CHECKSUM: 6cf5a54161c04ed31b903db21b69d6068f842043 + +COCOAPODS: 1.5.3 diff --git a/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradient.h b/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradient.h new file mode 120000 index 000000000..94957ecd1 --- /dev/null +++ b/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradient.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradient.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientLayer.h b/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientLayer.h new file mode 120000 index 000000000..96eb3f3ac --- /dev/null +++ b/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientLayer.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientLayer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientManager.h b/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientManager.h new file mode 120000 index 000000000..63b2d63e7 --- /dev/null +++ b/ios/Pods/Headers/Private/BVLinearGradient/BVLinearGradientManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h b/ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h new file mode 120000 index 000000000..fc8b03b46 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTAccessibilityManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h b/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h new file mode 120000 index 000000000..0c5bbad41 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h b/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h new file mode 120000 index 000000000..b8cc7dbbf --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTActivityIndicatorViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTAlertManager.h b/ios/Pods/Headers/Private/React/React/RCTAlertManager.h new file mode 120000 index 000000000..d48ca0d6b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTAlertManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTAnimationType.h b/ios/Pods/Headers/Private/React/React/RCTAnimationType.h new file mode 120000 index 000000000..6768bdcdc --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTAnimationType.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTAppState.h b/ios/Pods/Headers/Private/React/React/RCTAppState.h new file mode 120000 index 000000000..1e2dfd29b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTAppState.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAppState.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTAssert.h b/ios/Pods/Headers/Private/React/React/RCTAssert.h new file mode 120000 index 000000000..4761c46bc --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTAssert.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTAssert.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h b/ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h new file mode 120000 index 000000000..16d86163b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTAsyncLocalStorage.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h b/ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h new file mode 120000 index 000000000..977cac11b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTAutoInsetsProtocol.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h b/ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h new file mode 120000 index 000000000..d594a2eb6 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBorderDrawing.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBorderStyle.h b/ios/Pods/Headers/Private/React/React/RCTBorderStyle.h new file mode 120000 index 000000000..d01ef1f44 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBorderStyle.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBridge+Private.h b/ios/Pods/Headers/Private/React/React/RCTBridge+Private.h new file mode 120000 index 000000000..108d3aa0f --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBridge+Private.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBridge.h b/ios/Pods/Headers/Private/React/React/RCTBridge.h new file mode 120000 index 000000000..9dc520c9f --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBridge.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridge.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h b/ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h new file mode 120000 index 000000000..8d7c3e4d2 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBridgeDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h b/ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h new file mode 120000 index 000000000..fb43a0b93 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBridgeMethod.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBridgeModule.h b/ios/Pods/Headers/Private/React/React/RCTBridgeModule.h new file mode 120000 index 000000000..aaa1a0173 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBridgeModule.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h b/ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h new file mode 120000 index 000000000..0235a7d7f --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTBundleURLProvider.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTClipboard.h b/ios/Pods/Headers/Private/React/React/RCTClipboard.h new file mode 120000 index 000000000..e90e62480 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTClipboard.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTComponent.h b/ios/Pods/Headers/Private/React/React/RCTComponent.h new file mode 120000 index 000000000..e02cd2e02 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTComponent.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTComponent.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTComponentData.h b/ios/Pods/Headers/Private/React/React/RCTComponentData.h new file mode 120000 index 000000000..2758f5ce2 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTComponentData.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTComponentData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h b/ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h new file mode 120000 index 000000000..178041ac3 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTConvert+CoreLocation.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h b/ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h new file mode 120000 index 000000000..9642fcfc3 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTConvert+Transform.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTConvert.h b/ios/Pods/Headers/Private/React/React/RCTConvert.h new file mode 120000 index 000000000..6fc180f44 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTConvert.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTConvert.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTCxxConvert.h b/ios/Pods/Headers/Private/React/React/RCTCxxConvert.h new file mode 120000 index 000000000..1c2b54b0a --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTCxxConvert.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTDatePicker.h b/ios/Pods/Headers/Private/React/React/RCTDatePicker.h new file mode 120000 index 000000000..b5f9b97b8 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTDatePicker.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h b/ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h new file mode 120000 index 000000000..d6ac8a157 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTDatePickerManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTDefines.h b/ios/Pods/Headers/Private/React/React/RCTDefines.h new file mode 120000 index 000000000..b3c2a2b4c --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTDefines.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTDefines.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTDevSettings.h b/ios/Pods/Headers/Private/React/React/RCTDevSettings.h new file mode 120000 index 000000000..d139e6792 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTDevSettings.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h b/ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h new file mode 120000 index 000000000..c3a35d58c --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTDeviceInfo.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTDisplayLink.h b/ios/Pods/Headers/Private/React/React/RCTDisplayLink.h new file mode 120000 index 000000000..e304ba068 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTDisplayLink.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h b/ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h new file mode 120000 index 000000000..d7d88fb5e --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTErrorCustomizer.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTErrorInfo.h b/ios/Pods/Headers/Private/React/React/RCTErrorInfo.h new file mode 120000 index 000000000..73aea6a81 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTErrorInfo.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h b/ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h new file mode 120000 index 000000000..de3e65c9c --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTEventDispatcher.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTEventEmitter.h b/ios/Pods/Headers/Private/React/React/RCTEventEmitter.h new file mode 120000 index 000000000..706c93326 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTEventEmitter.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h b/ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h new file mode 120000 index 000000000..4eaa89879 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTExceptionsManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTFPSGraph.h b/ios/Pods/Headers/Private/React/React/RCTFPSGraph.h new file mode 120000 index 000000000..d653014cb --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTFPSGraph.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTFont.h b/ios/Pods/Headers/Private/React/React/RCTFont.h new file mode 120000 index 000000000..aac6506f6 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTFont.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTFont.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h b/ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h new file mode 120000 index 000000000..fced175d8 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTFrameUpdate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTI18nManager.h b/ios/Pods/Headers/Private/React/React/RCTI18nManager.h new file mode 120000 index 000000000..d3c6d62e0 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTI18nManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTI18nUtil.h b/ios/Pods/Headers/Private/React/React/RCTI18nUtil.h new file mode 120000 index 000000000..1bddac1f5 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTI18nUtil.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTImageSource.h b/ios/Pods/Headers/Private/React/React/RCTImageSource.h new file mode 120000 index 000000000..861fc794f --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTImageSource.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTImageSource.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTInvalidating.h b/ios/Pods/Headers/Private/React/React/RCTInvalidating.h new file mode 120000 index 000000000..285e9afd9 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTInvalidating.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTJSCErrorHandling.h b/ios/Pods/Headers/Private/React/React/RCTJSCErrorHandling.h new file mode 120000 index 000000000..6a80fde78 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTJSCErrorHandling.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJSCErrorHandling.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTJSCSamplingProfiler.h b/ios/Pods/Headers/Private/React/React/RCTJSCSamplingProfiler.h new file mode 120000 index 000000000..f6f9c35a1 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTJSCSamplingProfiler.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h b/ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h new file mode 120000 index 000000000..df7d61c9e --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTJSStackFrame.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h b/ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h new file mode 120000 index 000000000..108196262 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTJavaScriptExecutor.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h b/ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h new file mode 120000 index 000000000..eec188ede --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTJavaScriptLoader.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTKeyCommands.h b/ios/Pods/Headers/Private/React/React/RCTKeyCommands.h new file mode 120000 index 000000000..6217ecee0 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTKeyCommands.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h b/ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h new file mode 120000 index 000000000..6e324b842 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTKeyboardObserver.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTLayout.h b/ios/Pods/Headers/Private/React/React/RCTLayout.h new file mode 120000 index 000000000..0d1995ca8 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTLayout.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTLayout.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h b/ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h new file mode 120000 index 000000000..470073854 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTLayoutAnimation.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h b/ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h new file mode 120000 index 000000000..3a0db4b64 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTLayoutAnimationGroup.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTLog.h b/ios/Pods/Headers/Private/React/React/RCTLog.h new file mode 120000 index 000000000..ef54a82e0 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTLog.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTLog.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTMacros.h b/ios/Pods/Headers/Private/React/React/RCTMacros.h new file mode 120000 index 000000000..31884e551 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTMacros.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTManagedPointer.h b/ios/Pods/Headers/Private/React/React/RCTManagedPointer.h new file mode 120000 index 000000000..ed6f6f9aa --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTManagedPointer.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTMaskedView.h b/ios/Pods/Headers/Private/React/React/RCTMaskedView.h new file mode 120000 index 000000000..a9e271c30 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTMaskedView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h b/ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h new file mode 120000 index 000000000..150726059 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTMaskedViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTModalHostView.h b/ios/Pods/Headers/Private/React/React/RCTModalHostView.h new file mode 120000 index 000000000..a47a559bb --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTModalHostView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h b/ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h new file mode 120000 index 000000000..1c70a0f1f --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTModalHostViewController.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h b/ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h new file mode 120000 index 000000000..66221479d --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTModalHostViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTModalManager.h b/ios/Pods/Headers/Private/React/React/RCTModalManager.h new file mode 120000 index 000000000..a043e068b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTModalManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTModuleData.h b/ios/Pods/Headers/Private/React/React/RCTModuleData.h new file mode 120000 index 000000000..2f242b711 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTModuleData.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTModuleData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTModuleMethod.h b/ios/Pods/Headers/Private/React/React/RCTModuleMethod.h new file mode 120000 index 000000000..b2ba8c3ea --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTModuleMethod.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h b/ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h new file mode 120000 index 000000000..16816b9ef --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTMultipartDataTask.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h b/ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h new file mode 120000 index 000000000..7b5f84394 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTMultipartStreamReader.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTNavItem.h b/ios/Pods/Headers/Private/React/React/RCTNavItem.h new file mode 120000 index 000000000..9c447564b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTNavItem.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavItem.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTNavItemManager.h b/ios/Pods/Headers/Private/React/React/RCTNavItemManager.h new file mode 120000 index 000000000..135477fb3 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTNavItemManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavItemManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTNavigator.h b/ios/Pods/Headers/Private/React/React/RCTNavigator.h new file mode 120000 index 000000000..8391a9a97 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTNavigator.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavigator.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTNavigatorManager.h b/ios/Pods/Headers/Private/React/React/RCTNavigatorManager.h new file mode 120000 index 000000000..2d9d11769 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTNavigatorManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavigatorManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTNullability.h b/ios/Pods/Headers/Private/React/React/RCTNullability.h new file mode 120000 index 000000000..1644ebea6 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTNullability.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTNullability.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTParserUtils.h b/ios/Pods/Headers/Private/React/React/RCTParserUtils.h new file mode 120000 index 000000000..0d2bee949 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTParserUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h b/ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h new file mode 120000 index 000000000..a1164c4bd --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTPerformanceLogger.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTPicker.h b/ios/Pods/Headers/Private/React/React/RCTPicker.h new file mode 120000 index 000000000..c228c4f81 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTPicker.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTPicker.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTPickerManager.h b/ios/Pods/Headers/Private/React/React/RCTPickerManager.h new file mode 120000 index 000000000..5e7bfa0b3 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTPickerManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTPlatform.h b/ios/Pods/Headers/Private/React/React/RCTPlatform.h new file mode 120000 index 000000000..65b763756 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTPlatform.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTPlatform.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTPointerEvents.h b/ios/Pods/Headers/Private/React/React/RCTPointerEvents.h new file mode 120000 index 000000000..2df71617e --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTPointerEvents.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTProfile.h b/ios/Pods/Headers/Private/React/React/RCTProfile.h new file mode 120000 index 000000000..23c268398 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTProfile.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h b/ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h new file mode 120000 index 000000000..1504fc27e --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTProgressViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRedBox.h b/ios/Pods/Headers/Private/React/React/RCTRedBox.h new file mode 120000 index 000000000..a17cd2acf --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRedBox.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h b/ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h new file mode 120000 index 000000000..9fbe8ef04 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRedBoxExtraDataViewController.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRefreshControl.h b/ios/Pods/Headers/Private/React/React/RCTRefreshControl.h new file mode 120000 index 000000000..a44be6e10 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRefreshControl.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h b/ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h new file mode 120000 index 000000000..8939ee0df --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRefreshControlManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTReloadCommand.h b/ios/Pods/Headers/Private/React/React/RCTReloadCommand.h new file mode 120000 index 000000000..68729ee52 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTReloadCommand.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRootContentView.h b/ios/Pods/Headers/Private/React/React/RCTRootContentView.h new file mode 120000 index 000000000..aa8e21225 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRootContentView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRootShadowView.h b/ios/Pods/Headers/Private/React/React/RCTRootShadowView.h new file mode 120000 index 000000000..cdc4d64c8 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRootShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRootView.h b/ios/Pods/Headers/Private/React/React/RCTRootView.h new file mode 120000 index 000000000..f00392e6d --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRootView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h b/ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h new file mode 120000 index 000000000..9c6bfdc0f --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRootViewDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h b/ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h new file mode 120000 index 000000000..ba4f17854 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTRootViewInternal.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h b/ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h new file mode 120000 index 000000000..7fa97ad51 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSafeAreaShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h b/ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h new file mode 120000 index 000000000..e7cbbf567 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSafeAreaView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h b/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h new file mode 120000 index 000000000..25bfbdbd3 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewLocalData.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h b/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h new file mode 120000 index 000000000..702a06f5b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSafeAreaViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h b/ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h new file mode 120000 index 000000000..f85343440 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTScrollContentShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTScrollContentView.h b/ios/Pods/Headers/Private/React/React/RCTScrollContentView.h new file mode 120000 index 000000000..49d98f5db --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTScrollContentView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h b/ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h new file mode 120000 index 000000000..5a0c7b528 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTScrollContentViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTScrollView.h b/ios/Pods/Headers/Private/React/React/RCTScrollView.h new file mode 120000 index 000000000..aff0d45f0 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTScrollView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h b/ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h new file mode 120000 index 000000000..977f4036c --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTScrollViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h b/ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h new file mode 120000 index 000000000..f4d437027 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTScrollableProtocol.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h b/ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h new file mode 120000 index 000000000..aa7160e81 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSegmentedControl.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h b/ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h new file mode 120000 index 000000000..6e3801d01 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSegmentedControlManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h b/ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h new file mode 120000 index 000000000..f6c4c7e85 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTShadowView+Internal.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h b/ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h new file mode 120000 index 000000000..bb8b02d28 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTShadowView+Layout.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTShadowView.h b/ios/Pods/Headers/Private/React/React/RCTShadowView.h new file mode 120000 index 000000000..e6820a57c --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSlider.h b/ios/Pods/Headers/Private/React/React/RCTSlider.h new file mode 120000 index 000000000..797a6dc5b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSlider.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSlider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSliderManager.h b/ios/Pods/Headers/Private/React/React/RCTSliderManager.h new file mode 120000 index 000000000..94f51b2ac --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSliderManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSourceCode.h b/ios/Pods/Headers/Private/React/React/RCTSourceCode.h new file mode 120000 index 000000000..5d9c5d2af --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSourceCode.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h b/ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h new file mode 120000 index 000000000..b112a8adc --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTStatusBarManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurface.h b/ios/Pods/Headers/Private/React/React/RCTSurface.h new file mode 120000 index 000000000..3469a1c0a --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurface.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h new file mode 120000 index 000000000..eab7fee52 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h new file mode 120000 index 000000000..742fcae79 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingProxyRootView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h new file mode 120000 index 000000000..4d7e1e54d --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceHostingView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h new file mode 120000 index 000000000..eb63c7bd6 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h new file mode 120000 index 000000000..15007b6de --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceRootShadowViewDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h new file mode 120000 index 000000000..b8384307e --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceRootView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h new file mode 120000 index 000000000..7da0fa32d --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceSizeMeasureMode.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h new file mode 120000 index 000000000..066b638ab --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceStage.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h new file mode 120000 index 000000000..9a1c0eb4b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceView+Internal.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSurfaceView.h b/ios/Pods/Headers/Private/React/React/RCTSurfaceView.h new file mode 120000 index 000000000..87e50e431 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSurfaceView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSwitch.h b/ios/Pods/Headers/Private/React/React/RCTSwitch.h new file mode 120000 index 000000000..c04332f66 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSwitch.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSwitch.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTSwitchManager.h b/ios/Pods/Headers/Private/React/React/RCTSwitchManager.h new file mode 120000 index 000000000..20ab2fcd2 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTSwitchManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTabBar.h b/ios/Pods/Headers/Private/React/React/RCTTabBar.h new file mode 120000 index 000000000..63c56ac91 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTabBar.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBar.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTabBarItem.h b/ios/Pods/Headers/Private/React/React/RCTTabBarItem.h new file mode 120000 index 000000000..65c19c6b2 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTabBarItem.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBarItem.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTabBarItemManager.h b/ios/Pods/Headers/Private/React/React/RCTTabBarItemManager.h new file mode 120000 index 000000000..6db87be2d --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTabBarItemManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBarItemManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTabBarManager.h b/ios/Pods/Headers/Private/React/React/RCTTabBarManager.h new file mode 120000 index 000000000..db41d5cf0 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTabBarManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBarManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h b/ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h new file mode 120000 index 000000000..d1bb3cf62 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTextDecorationLineType.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTiming.h b/ios/Pods/Headers/Private/React/React/RCTTiming.h new file mode 120000 index 000000000..00772a3e6 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTiming.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTTiming.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTouchEvent.h b/ios/Pods/Headers/Private/React/React/RCTTouchEvent.h new file mode 120000 index 000000000..cde251e32 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTouchEvent.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTTouchHandler.h b/ios/Pods/Headers/Private/React/React/RCTTouchHandler.h new file mode 120000 index 000000000..6c291d468 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTTouchHandler.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTUIManager.h b/ios/Pods/Headers/Private/React/React/RCTUIManager.h new file mode 120000 index 000000000..c238e758a --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTUIManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h b/ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h new file mode 120000 index 000000000..1d1d3865c --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTUIManagerObserverCoordinator.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h b/ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h new file mode 120000 index 000000000..263788089 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTUIManagerUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTUIUtils.h b/ios/Pods/Headers/Private/React/React/RCTUIUtils.h new file mode 120000 index 000000000..42d725085 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTUIUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h b/ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h new file mode 120000 index 000000000..8c894605b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTURLRequestDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h b/ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h new file mode 120000 index 000000000..25629f6d1 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTURLRequestHandler.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTUtils.h b/ios/Pods/Headers/Private/React/React/RCTUtils.h new file mode 120000 index 000000000..ae80f1188 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTVersion.h b/ios/Pods/Headers/Private/React/React/RCTVersion.h new file mode 120000 index 000000000..7294e6125 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTVersion.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTVersion.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTView.h b/ios/Pods/Headers/Private/React/React/RCTView.h new file mode 120000 index 000000000..b4fe4565b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTViewManager.h b/ios/Pods/Headers/Private/React/React/RCTViewManager.h new file mode 120000 index 000000000..171cb696d --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTWKWebView.h b/ios/Pods/Headers/Private/React/React/RCTWKWebView.h new file mode 120000 index 000000000..c24938500 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTWKWebView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h b/ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h new file mode 120000 index 000000000..f4e857a97 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTWKWebViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTWebView.h b/ios/Pods/Headers/Private/React/React/RCTWebView.h new file mode 120000 index 000000000..b7f894c81 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTWebView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTWebViewManager.h b/ios/Pods/Headers/Private/React/React/RCTWebViewManager.h new file mode 120000 index 000000000..188c2c652 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTWebViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h b/ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h new file mode 120000 index 000000000..1d77dd80b --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/RCTWrapperViewController.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/UIView+Private.h b/ios/Pods/Headers/Private/React/React/UIView+Private.h new file mode 120000 index 000000000..301891429 --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/UIView+Private.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/UIView+Private.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/React/React/UIView+React.h b/ios/Pods/Headers/Private/React/React/UIView+React.h new file mode 120000 index 000000000..2766d832c --- /dev/null +++ b/ios/Pods/Headers/Private/React/React/UIView+React.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/UIView+React.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/Utils.h b/ios/Pods/Headers/Private/yoga/Utils.h new file mode 120000 index 000000000..3ef3620e6 --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/Utils.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Utils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGConfig.h b/ios/Pods/Headers/Private/yoga/YGConfig.h new file mode 120000 index 000000000..a6d72ad9b --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGConfig.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGConfig.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGEnums.h b/ios/Pods/Headers/Private/yoga/YGEnums.h new file mode 120000 index 000000000..b10f9987a --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGEnums.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGFloatOptional.h b/ios/Pods/Headers/Private/yoga/YGFloatOptional.h new file mode 120000 index 000000000..915d69cc5 --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGFloatOptional.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGFloatOptional.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGLayout.h b/ios/Pods/Headers/Private/yoga/YGLayout.h new file mode 120000 index 000000000..e68f6bdec --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGLayout.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGLayout.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGMacros.h b/ios/Pods/Headers/Private/yoga/YGMacros.h new file mode 120000 index 000000000..3c8ad5a31 --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGMacros.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGNode.h b/ios/Pods/Headers/Private/yoga/YGNode.h new file mode 120000 index 000000000..e8c3a957f --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGNode.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNode.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGNodePrint.h b/ios/Pods/Headers/Private/yoga/YGNodePrint.h new file mode 120000 index 000000000..da1691efe --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGNodePrint.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGNodePrint.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/YGStyle.h b/ios/Pods/Headers/Private/yoga/YGStyle.h new file mode 120000 index 000000000..d2773e225 --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/YGStyle.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGStyle.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/Yoga-internal.h b/ios/Pods/Headers/Private/yoga/Yoga-internal.h new file mode 120000 index 000000000..4568c5b6f --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/Yoga-internal.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga-internal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Private/yoga/Yoga.h b/ios/Pods/Headers/Private/yoga/Yoga.h new file mode 120000 index 000000000..d870fc6b7 --- /dev/null +++ b/ios/Pods/Headers/Private/yoga/Yoga.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradient.h b/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradient.h new file mode 120000 index 000000000..94957ecd1 --- /dev/null +++ b/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradient.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradient.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientLayer.h b/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientLayer.h new file mode 120000 index 000000000..96eb3f3ac --- /dev/null +++ b/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientLayer.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientLayer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientManager.h b/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientManager.h new file mode 120000 index 000000000..63b2d63e7 --- /dev/null +++ b/ios/Pods/Headers/Public/BVLinearGradient/BVLinearGradientManager.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h b/ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h new file mode 120000 index 000000000..fc8b03b46 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTAccessibilityManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAccessibilityManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h b/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h new file mode 120000 index 000000000..0c5bbad41 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h b/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h new file mode 120000 index 000000000..b8cc7dbbf --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTActivityIndicatorViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTActivityIndicatorViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTAlertManager.h b/ios/Pods/Headers/Public/React/React/RCTAlertManager.h new file mode 120000 index 000000000..d48ca0d6b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTAlertManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAlertManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTAnimationType.h b/ios/Pods/Headers/Public/React/React/RCTAnimationType.h new file mode 120000 index 000000000..6768bdcdc --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTAnimationType.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTAnimationType.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTAppState.h b/ios/Pods/Headers/Public/React/React/RCTAppState.h new file mode 120000 index 000000000..1e2dfd29b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTAppState.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAppState.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTAssert.h b/ios/Pods/Headers/Public/React/React/RCTAssert.h new file mode 120000 index 000000000..4761c46bc --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTAssert.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTAssert.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h b/ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h new file mode 120000 index 000000000..16d86163b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTAsyncLocalStorage.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTAsyncLocalStorage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h b/ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h new file mode 120000 index 000000000..977cac11b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTAutoInsetsProtocol.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTAutoInsetsProtocol.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h b/ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h new file mode 120000 index 000000000..d594a2eb6 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBorderDrawing.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTBorderDrawing.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBorderStyle.h b/ios/Pods/Headers/Public/React/React/RCTBorderStyle.h new file mode 120000 index 000000000..d01ef1f44 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBorderStyle.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTBorderStyle.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBridge+Private.h b/ios/Pods/Headers/Public/React/React/RCTBridge+Private.h new file mode 120000 index 000000000..108d3aa0f --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBridge+Private.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridge+Private.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBridge.h b/ios/Pods/Headers/Public/React/React/RCTBridge.h new file mode 120000 index 000000000..9dc520c9f --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBridge.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridge.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h b/ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h new file mode 120000 index 000000000..8d7c3e4d2 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBridgeDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridgeDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h b/ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h new file mode 120000 index 000000000..fb43a0b93 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBridgeMethod.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridgeMethod.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBridgeModule.h b/ios/Pods/Headers/Public/React/React/RCTBridgeModule.h new file mode 120000 index 000000000..aaa1a0173 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBridgeModule.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBridgeModule.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h b/ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h new file mode 120000 index 000000000..0235a7d7f --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTBundleURLProvider.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTBundleURLProvider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTClipboard.h b/ios/Pods/Headers/Public/React/React/RCTClipboard.h new file mode 120000 index 000000000..e90e62480 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTClipboard.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTClipboard.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTComponent.h b/ios/Pods/Headers/Public/React/React/RCTComponent.h new file mode 120000 index 000000000..e02cd2e02 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTComponent.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTComponent.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTComponentData.h b/ios/Pods/Headers/Public/React/React/RCTComponentData.h new file mode 120000 index 000000000..2758f5ce2 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTComponentData.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTComponentData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h b/ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h new file mode 120000 index 000000000..178041ac3 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTConvert+CoreLocation.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTConvert+CoreLocation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h b/ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h new file mode 120000 index 000000000..9642fcfc3 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTConvert+Transform.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTConvert+Transform.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTConvert.h b/ios/Pods/Headers/Public/React/React/RCTConvert.h new file mode 120000 index 000000000..6fc180f44 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTConvert.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTConvert.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTCxxConvert.h b/ios/Pods/Headers/Public/React/React/RCTCxxConvert.h new file mode 120000 index 000000000..1c2b54b0a --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTCxxConvert.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTCxxConvert.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTDatePicker.h b/ios/Pods/Headers/Public/React/React/RCTDatePicker.h new file mode 120000 index 000000000..b5f9b97b8 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTDatePicker.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTDatePicker.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h b/ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h new file mode 120000 index 000000000..d6ac8a157 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTDatePickerManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTDatePickerManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTDefines.h b/ios/Pods/Headers/Public/React/React/RCTDefines.h new file mode 120000 index 000000000..b3c2a2b4c --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTDefines.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTDefines.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTDevSettings.h b/ios/Pods/Headers/Public/React/React/RCTDevSettings.h new file mode 120000 index 000000000..d139e6792 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTDevSettings.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTDevSettings.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h b/ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h new file mode 120000 index 000000000..c3a35d58c --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTDeviceInfo.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTDeviceInfo.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTDisplayLink.h b/ios/Pods/Headers/Public/React/React/RCTDisplayLink.h new file mode 120000 index 000000000..e304ba068 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTDisplayLink.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTDisplayLink.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h b/ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h new file mode 120000 index 000000000..d7d88fb5e --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTErrorCustomizer.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTErrorCustomizer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTErrorInfo.h b/ios/Pods/Headers/Public/React/React/RCTErrorInfo.h new file mode 120000 index 000000000..73aea6a81 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTErrorInfo.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTErrorInfo.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h b/ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h new file mode 120000 index 000000000..de3e65c9c --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTEventDispatcher.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTEventDispatcher.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTEventEmitter.h b/ios/Pods/Headers/Public/React/React/RCTEventEmitter.h new file mode 120000 index 000000000..706c93326 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTEventEmitter.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTEventEmitter.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h b/ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h new file mode 120000 index 000000000..4eaa89879 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTExceptionsManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTExceptionsManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTFPSGraph.h b/ios/Pods/Headers/Public/React/React/RCTFPSGraph.h new file mode 120000 index 000000000..d653014cb --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTFPSGraph.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Profiler/RCTFPSGraph.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTFont.h b/ios/Pods/Headers/Public/React/React/RCTFont.h new file mode 120000 index 000000000..aac6506f6 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTFont.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTFont.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h b/ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h new file mode 120000 index 000000000..fced175d8 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTFrameUpdate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTFrameUpdate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTI18nManager.h b/ios/Pods/Headers/Public/React/React/RCTI18nManager.h new file mode 120000 index 000000000..d3c6d62e0 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTI18nManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTI18nManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTI18nUtil.h b/ios/Pods/Headers/Public/React/React/RCTI18nUtil.h new file mode 120000 index 000000000..1bddac1f5 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTI18nUtil.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTI18nUtil.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTImageSource.h b/ios/Pods/Headers/Public/React/React/RCTImageSource.h new file mode 120000 index 000000000..861fc794f --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTImageSource.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTImageSource.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTInvalidating.h b/ios/Pods/Headers/Public/React/React/RCTInvalidating.h new file mode 120000 index 000000000..285e9afd9 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTInvalidating.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTInvalidating.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTJSCErrorHandling.h b/ios/Pods/Headers/Public/React/React/RCTJSCErrorHandling.h new file mode 120000 index 000000000..6a80fde78 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTJSCErrorHandling.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJSCErrorHandling.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTJSCSamplingProfiler.h b/ios/Pods/Headers/Public/React/React/RCTJSCSamplingProfiler.h new file mode 120000 index 000000000..f6f9c35a1 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTJSCSamplingProfiler.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTJSCSamplingProfiler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h b/ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h new file mode 120000 index 000000000..df7d61c9e --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTJSStackFrame.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJSStackFrame.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h b/ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h new file mode 120000 index 000000000..108196262 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTJavaScriptExecutor.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJavaScriptExecutor.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h b/ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h new file mode 120000 index 000000000..eec188ede --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTJavaScriptLoader.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTJavaScriptLoader.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTKeyCommands.h b/ios/Pods/Headers/Public/React/React/RCTKeyCommands.h new file mode 120000 index 000000000..6217ecee0 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTKeyCommands.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTKeyCommands.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h b/ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h new file mode 120000 index 000000000..6e324b842 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTKeyboardObserver.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTKeyboardObserver.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTLayout.h b/ios/Pods/Headers/Public/React/React/RCTLayout.h new file mode 120000 index 000000000..0d1995ca8 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTLayout.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTLayout.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h b/ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h new file mode 120000 index 000000000..470073854 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTLayoutAnimation.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimation.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h b/ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h new file mode 120000 index 000000000..3a0db4b64 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTLayoutAnimationGroup.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTLayoutAnimationGroup.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTLog.h b/ios/Pods/Headers/Public/React/React/RCTLog.h new file mode 120000 index 000000000..ef54a82e0 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTLog.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTLog.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTMacros.h b/ios/Pods/Headers/Public/React/React/RCTMacros.h new file mode 120000 index 000000000..31884e551 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTMacros.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Profiler/RCTMacros.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTManagedPointer.h b/ios/Pods/Headers/Public/React/React/RCTManagedPointer.h new file mode 120000 index 000000000..ed6f6f9aa --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTManagedPointer.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTManagedPointer.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTMaskedView.h b/ios/Pods/Headers/Public/React/React/RCTMaskedView.h new file mode 120000 index 000000000..a9e271c30 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTMaskedView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTMaskedView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h b/ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h new file mode 120000 index 000000000..150726059 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTMaskedViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTMaskedViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTModalHostView.h b/ios/Pods/Headers/Public/React/React/RCTModalHostView.h new file mode 120000 index 000000000..a47a559bb --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTModalHostView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalHostView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h b/ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h new file mode 120000 index 000000000..1c70a0f1f --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTModalHostViewController.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalHostViewController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h b/ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h new file mode 120000 index 000000000..66221479d --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTModalHostViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalHostViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTModalManager.h b/ios/Pods/Headers/Public/React/React/RCTModalManager.h new file mode 120000 index 000000000..a043e068b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTModalManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTModalManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTModuleData.h b/ios/Pods/Headers/Public/React/React/RCTModuleData.h new file mode 120000 index 000000000..2f242b711 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTModuleData.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTModuleData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTModuleMethod.h b/ios/Pods/Headers/Public/React/React/RCTModuleMethod.h new file mode 120000 index 000000000..b2ba8c3ea --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTModuleMethod.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTModuleMethod.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h b/ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h new file mode 120000 index 000000000..16816b9ef --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTMultipartDataTask.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTMultipartDataTask.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h b/ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h new file mode 120000 index 000000000..7b5f84394 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTMultipartStreamReader.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTMultipartStreamReader.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTNavItem.h b/ios/Pods/Headers/Public/React/React/RCTNavItem.h new file mode 120000 index 000000000..9c447564b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTNavItem.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavItem.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTNavItemManager.h b/ios/Pods/Headers/Public/React/React/RCTNavItemManager.h new file mode 120000 index 000000000..135477fb3 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTNavItemManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavItemManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTNavigator.h b/ios/Pods/Headers/Public/React/React/RCTNavigator.h new file mode 120000 index 000000000..8391a9a97 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTNavigator.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavigator.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTNavigatorManager.h b/ios/Pods/Headers/Public/React/React/RCTNavigatorManager.h new file mode 120000 index 000000000..2d9d11769 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTNavigatorManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTNavigatorManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTNullability.h b/ios/Pods/Headers/Public/React/React/RCTNullability.h new file mode 120000 index 000000000..1644ebea6 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTNullability.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTNullability.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTParserUtils.h b/ios/Pods/Headers/Public/React/React/RCTParserUtils.h new file mode 120000 index 000000000..0d2bee949 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTParserUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTParserUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h b/ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h new file mode 120000 index 000000000..a1164c4bd --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTPerformanceLogger.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTPerformanceLogger.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTPicker.h b/ios/Pods/Headers/Public/React/React/RCTPicker.h new file mode 120000 index 000000000..c228c4f81 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTPicker.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTPicker.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTPickerManager.h b/ios/Pods/Headers/Public/React/React/RCTPickerManager.h new file mode 120000 index 000000000..5e7bfa0b3 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTPickerManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTPickerManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTPlatform.h b/ios/Pods/Headers/Public/React/React/RCTPlatform.h new file mode 120000 index 000000000..65b763756 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTPlatform.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTPlatform.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTPointerEvents.h b/ios/Pods/Headers/Public/React/React/RCTPointerEvents.h new file mode 120000 index 000000000..2df71617e --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTPointerEvents.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTPointerEvents.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTProfile.h b/ios/Pods/Headers/Public/React/React/RCTProfile.h new file mode 120000 index 000000000..23c268398 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTProfile.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Profiler/RCTProfile.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h b/ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h new file mode 120000 index 000000000..1504fc27e --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTProgressViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTProgressViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRedBox.h b/ios/Pods/Headers/Public/React/React/RCTRedBox.h new file mode 120000 index 000000000..a17cd2acf --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRedBox.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTRedBox.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h b/ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h new file mode 120000 index 000000000..9fbe8ef04 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRedBoxExtraDataViewController.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTRedBoxExtraDataViewController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRefreshControl.h b/ios/Pods/Headers/Public/React/React/RCTRefreshControl.h new file mode 120000 index 000000000..a44be6e10 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRefreshControl.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTRefreshControl.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h b/ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h new file mode 120000 index 000000000..8939ee0df --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRefreshControlManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTRefreshControlManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTReloadCommand.h b/ios/Pods/Headers/Public/React/React/RCTReloadCommand.h new file mode 120000 index 000000000..68729ee52 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTReloadCommand.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTReloadCommand.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRootContentView.h b/ios/Pods/Headers/Public/React/React/RCTRootContentView.h new file mode 120000 index 000000000..aa8e21225 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRootContentView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootContentView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRootShadowView.h b/ios/Pods/Headers/Public/React/React/RCTRootShadowView.h new file mode 120000 index 000000000..cdc4d64c8 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRootShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTRootShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRootView.h b/ios/Pods/Headers/Public/React/React/RCTRootView.h new file mode 120000 index 000000000..f00392e6d --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRootView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h b/ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h new file mode 120000 index 000000000..9c6bfdc0f --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRootViewDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootViewDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h b/ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h new file mode 120000 index 000000000..ba4f17854 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTRootViewInternal.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTRootViewInternal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h b/ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h new file mode 120000 index 000000000..7fa97ad51 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSafeAreaShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h b/ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h new file mode 120000 index 000000000..e7cbbf567 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSafeAreaView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h b/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h new file mode 120000 index 000000000..25bfbdbd3 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewLocalData.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewLocalData.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h b/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h new file mode 120000 index 000000000..702a06f5b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSafeAreaViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/SafeAreaView/RCTSafeAreaViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h b/ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h new file mode 120000 index 000000000..f85343440 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTScrollContentShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTScrollContentView.h b/ios/Pods/Headers/Public/React/React/RCTScrollContentView.h new file mode 120000 index 000000000..49d98f5db --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTScrollContentView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h b/ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h new file mode 120000 index 000000000..5a0c7b528 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTScrollContentViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollContentViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTScrollView.h b/ios/Pods/Headers/Public/React/React/RCTScrollView.h new file mode 120000 index 000000000..aff0d45f0 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTScrollView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h b/ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h new file mode 120000 index 000000000..977f4036c --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTScrollViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h b/ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h new file mode 120000 index 000000000..f4d437027 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTScrollableProtocol.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/ScrollView/RCTScrollableProtocol.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h b/ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h new file mode 120000 index 000000000..aa7160e81 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSegmentedControl.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSegmentedControl.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h b/ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h new file mode 120000 index 000000000..6e3801d01 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSegmentedControlManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSegmentedControlManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h b/ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h new file mode 120000 index 000000000..f6c4c7e85 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTShadowView+Internal.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTShadowView+Internal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h b/ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h new file mode 120000 index 000000000..bb8b02d28 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTShadowView+Layout.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTShadowView+Layout.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTShadowView.h b/ios/Pods/Headers/Public/React/React/RCTShadowView.h new file mode 120000 index 000000000..e6820a57c --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSlider.h b/ios/Pods/Headers/Public/React/React/RCTSlider.h new file mode 120000 index 000000000..797a6dc5b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSlider.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSlider.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSliderManager.h b/ios/Pods/Headers/Public/React/React/RCTSliderManager.h new file mode 120000 index 000000000..94f51b2ac --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSliderManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSliderManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSourceCode.h b/ios/Pods/Headers/Public/React/React/RCTSourceCode.h new file mode 120000 index 000000000..5d9c5d2af --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSourceCode.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTSourceCode.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h b/ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h new file mode 120000 index 000000000..b112a8adc --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTStatusBarManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTStatusBarManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurface.h b/ios/Pods/Headers/Public/React/React/RCTSurface.h new file mode 120000 index 000000000..3469a1c0a --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurface.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurface.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h new file mode 120000 index 000000000..eab7fee52 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h new file mode 120000 index 000000000..742fcae79 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingProxyRootView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingProxyRootView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h new file mode 120000 index 000000000..4d7e1e54d --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceHostingView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceHostingView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h new file mode 120000 index 000000000..eb63c7bd6 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h new file mode 120000 index 000000000..15007b6de --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceRootShadowViewDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootShadowViewDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h new file mode 120000 index 000000000..b8384307e --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceRootView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceRootView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h new file mode 120000 index 000000000..7da0fa32d --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceSizeMeasureMode.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/SurfaceHostingView/RCTSurfaceSizeMeasureMode.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h new file mode 120000 index 000000000..066b638ab --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceStage.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceStage.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h new file mode 120000 index 000000000..9a1c0eb4b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceView+Internal.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView+Internal.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSurfaceView.h b/ios/Pods/Headers/Public/React/React/RCTSurfaceView.h new file mode 120000 index 000000000..87e50e431 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSurfaceView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/Surface/RCTSurfaceView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSwitch.h b/ios/Pods/Headers/Public/React/React/RCTSwitch.h new file mode 120000 index 000000000..c04332f66 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSwitch.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSwitch.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTSwitchManager.h b/ios/Pods/Headers/Public/React/React/RCTSwitchManager.h new file mode 120000 index 000000000..20ab2fcd2 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTSwitchManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTSwitchManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTabBar.h b/ios/Pods/Headers/Public/React/React/RCTTabBar.h new file mode 120000 index 000000000..63c56ac91 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTabBar.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBar.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTabBarItem.h b/ios/Pods/Headers/Public/React/React/RCTTabBarItem.h new file mode 120000 index 000000000..65c19c6b2 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTabBarItem.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBarItem.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTabBarItemManager.h b/ios/Pods/Headers/Public/React/React/RCTTabBarItemManager.h new file mode 120000 index 000000000..6db87be2d --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTabBarItemManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBarItemManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTabBarManager.h b/ios/Pods/Headers/Public/React/React/RCTTabBarManager.h new file mode 120000 index 000000000..db41d5cf0 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTabBarManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTabBarManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h b/ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h new file mode 120000 index 000000000..d1bb3cf62 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTextDecorationLineType.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTTextDecorationLineType.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTiming.h b/ios/Pods/Headers/Public/React/React/RCTTiming.h new file mode 120000 index 000000000..00772a3e6 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTiming.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTTiming.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTouchEvent.h b/ios/Pods/Headers/Public/React/React/RCTTouchEvent.h new file mode 120000 index 000000000..cde251e32 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTouchEvent.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTTouchEvent.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTTouchHandler.h b/ios/Pods/Headers/Public/React/React/RCTTouchHandler.h new file mode 120000 index 000000000..6c291d468 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTTouchHandler.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTTouchHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTUIManager.h b/ios/Pods/Headers/Public/React/React/RCTUIManager.h new file mode 120000 index 000000000..c238e758a --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTUIManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTUIManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h b/ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h new file mode 120000 index 000000000..1d1d3865c --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTUIManagerObserverCoordinator.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTUIManagerObserverCoordinator.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h b/ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h new file mode 120000 index 000000000..263788089 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTUIManagerUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Modules/RCTUIManagerUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTUIUtils.h b/ios/Pods/Headers/Public/React/React/RCTUIUtils.h new file mode 120000 index 000000000..42d725085 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTUIUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/UIUtils/RCTUIUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h b/ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h new file mode 120000 index 000000000..8c894605b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTURLRequestDelegate.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTURLRequestDelegate.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h b/ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h new file mode 120000 index 000000000..25629f6d1 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTURLRequestHandler.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTURLRequestHandler.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTUtils.h b/ios/Pods/Headers/Public/React/React/RCTUtils.h new file mode 120000 index 000000000..ae80f1188 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTUtils.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTUtils.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTVersion.h b/ios/Pods/Headers/Public/React/React/RCTVersion.h new file mode 120000 index 000000000..7294e6125 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTVersion.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Base/RCTVersion.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTView.h b/ios/Pods/Headers/Public/React/React/RCTView.h new file mode 120000 index 000000000..b4fe4565b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTViewManager.h b/ios/Pods/Headers/Public/React/React/RCTViewManager.h new file mode 120000 index 000000000..171cb696d --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTWKWebView.h b/ios/Pods/Headers/Public/React/React/RCTWKWebView.h new file mode 120000 index 000000000..c24938500 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTWKWebView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWKWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h b/ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h new file mode 120000 index 000000000..f4e857a97 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTWKWebViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWKWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTWebView.h b/ios/Pods/Headers/Public/React/React/RCTWebView.h new file mode 120000 index 000000000..b7f894c81 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTWebView.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWebView.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTWebViewManager.h b/ios/Pods/Headers/Public/React/React/RCTWebViewManager.h new file mode 120000 index 000000000..188c2c652 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTWebViewManager.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWebViewManager.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h b/ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h new file mode 120000 index 000000000..1d77dd80b --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/RCTWrapperViewController.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/RCTWrapperViewController.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/UIView+Private.h b/ios/Pods/Headers/Public/React/React/UIView+Private.h new file mode 120000 index 000000000..301891429 --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/UIView+Private.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/UIView+Private.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/React/React/UIView+React.h b/ios/Pods/Headers/Public/React/React/UIView+React.h new file mode 120000 index 000000000..2766d832c --- /dev/null +++ b/ios/Pods/Headers/Public/React/React/UIView+React.h @@ -0,0 +1 @@ +../../../../../../node_modules/react-native/React/Views/UIView+React.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/yoga/YGEnums.h b/ios/Pods/Headers/Public/yoga/YGEnums.h new file mode 120000 index 000000000..b10f9987a --- /dev/null +++ b/ios/Pods/Headers/Public/yoga/YGEnums.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGEnums.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/yoga/YGMacros.h b/ios/Pods/Headers/Public/yoga/YGMacros.h new file mode 120000 index 000000000..3c8ad5a31 --- /dev/null +++ b/ios/Pods/Headers/Public/yoga/YGMacros.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/YGMacros.h \ No newline at end of file diff --git a/ios/Pods/Headers/Public/yoga/Yoga.h b/ios/Pods/Headers/Public/yoga/Yoga.h new file mode 120000 index 000000000..d870fc6b7 --- /dev/null +++ b/ios/Pods/Headers/Public/yoga/Yoga.h @@ -0,0 +1 @@ +../../../../../node_modules/react-native/ReactCommon/yoga/yoga/Yoga.h \ No newline at end of file diff --git a/ios/Pods/Local Podspecs/BVLinearGradient.podspec.json b/ios/Pods/Local Podspecs/BVLinearGradient.podspec.json new file mode 100644 index 000000000..5226d7a27 --- /dev/null +++ b/ios/Pods/Local Podspecs/BVLinearGradient.podspec.json @@ -0,0 +1,30 @@ +{ + "name": "BVLinearGradient", + "version": "2.4.2", + "homepage": "https://github.com/brentvatne/react-native-linear-gradient", + "summary": "A component for react-native", + "license": "MIT", + "authors": { + "Brent Vatne": "brentvatne@gmail.com" + }, + "platforms": { + "ios": "7.0", + "tvos": "9.0" + }, + "source": { + "git": "https://github.com/brentvatne/react-native-linear-gradient.git", + "tag": "2.4.2" + }, + "source_files": "BVLinearGradient/*.{h,m}", + "preserve_paths": "**/*.js", + "frameworks": [ + "UIKit", + "QuartzCore", + "Foundation" + ], + "dependencies": { + "React": [ + + ] + } +} diff --git a/ios/Pods/Local Podspecs/React.podspec.json b/ios/Pods/Local Podspecs/React.podspec.json new file mode 100644 index 000000000..b4c236ed0 --- /dev/null +++ b/ios/Pods/Local Podspecs/React.podspec.json @@ -0,0 +1,528 @@ +{ + "name": "React", + "version": "0.57.1", + "summary": "A framework for building native apps using React", + "description": "React Native apps are built using the React JS\nframework, and render directly to native UIKit\nelements using a fully asynchronous architecture.\nThere is no browser and no HTML. We have picked what\nwe think is the best set of features from these and\nother technologies to build what we hope to become\nthe best product development framework available,\nwith an emphasis on iteration speed, developer\ndelight, continuity of technology, and absolutely\nbeautiful and fast products with no compromises in\nquality or capability.", + "homepage": "http://facebook.github.io/react-native/", + "license": "MIT", + "authors": "Facebook", + "source": { + "git": "https://github.com/facebook/react-native.git", + "tag": "v0.57.1" + }, + "default_subspecs": "Core", + "requires_arc": true, + "platforms": { + "ios": "9.0", + "tvos": "9.2" + }, + "pod_target_xcconfig": { + "CLANG_CXX_LANGUAGE_STANDARD": "c++14" + }, + "preserve_paths": [ + "package.json", + "LICENSE", + "LICENSE-docs" + ], + "cocoapods_version": ">= 1.2.0", + "subspecs": [ + { + "name": "Core", + "dependencies": { + "yoga": [ + "0.57.1.React" + ] + }, + "source_files": "React/**/*.{c,h,m,mm,S,cpp}", + "exclude_files": [ + "**/__tests__/*", + "IntegrationTests/*", + "React/DevSupport/*", + "React/Inspector/*", + "ReactCommon/yoga/*", + "React/Cxx*/*", + "React/Fabric/**/*" + ], + "ios": { + "exclude_files": "React/**/RCTTV*.*" + }, + "tvos": { + "exclude_files": [ + "React/Modules/RCTClipboard*", + "React/Views/RCTDatePicker*", + "React/Views/RCTPicker*", + "React/Views/RCTRefreshControl*", + "React/Views/RCTSlider*", + "React/Views/RCTSwitch*", + "React/Views/RCTWebView*" + ] + }, + "header_dir": "React", + "frameworks": "JavaScriptCore", + "libraries": "stdc++", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\"" + } + }, + { + "name": "CxxBridge", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ], + "React/Core": [ + + ], + "React/cxxreact": [ + + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "private_header_files": "React/Cxx*/*.h", + "source_files": "React/Cxx*/*.{h,m,mm}" + }, + { + "name": "DevSupport", + "dependencies": { + "React/Core": [ + + ], + "React/RCTWebSocket": [ + + ] + }, + "source_files": [ + "React/DevSupport/*", + "React/Inspector/*" + ] + }, + { + "name": "RCTFabric", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ], + "React/Core": [ + + ], + "React/fabric": [ + + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "React/Fabric/**/*.{c,h,m,mm,S,cpp}", + "exclude_files": "**/tests/*", + "header_dir": "React", + "frameworks": "JavaScriptCore", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\"" + } + }, + { + "name": "tvOS", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "React/**/RCTTV*.{h,m}" + }, + { + "name": "jschelpers", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ], + "React/PrivateDatabase": [ + + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/jschelpers/*.{cpp,h}", + "private_header_files": "ReactCommon/jschelpers/*.h", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\"" + }, + "frameworks": "JavaScriptCore" + }, + { + "name": "jsinspector", + "source_files": "ReactCommon/jsinspector/*.{cpp,h}", + "private_header_files": "ReactCommon/jsinspector/*.h", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\"" + } + }, + { + "name": "PrivateDatabase", + "source_files": "ReactCommon/privatedata/*.{cpp,h}", + "private_header_files": "ReactCommon/privatedata/*.h", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\"" + } + }, + { + "name": "cxxreact", + "dependencies": { + "React/jschelpers": [ + + ], + "React/jsinspector": [ + + ], + "boost-for-react-native": [ + "1.63.0" + ], + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/cxxreact/*.{cpp,h}", + "exclude_files": "ReactCommon/cxxreact/SampleCxxModule.*", + "private_header_files": "ReactCommon/cxxreact/*.h", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/boost-for-react-native\" \"$(PODS_ROOT)/DoubleConversion\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "fabric", + "subspecs": [ + { + "name": "activityindicator", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/activityindicator/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/activityindicator", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "attributedstring", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/attributedstring/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/attributedstring", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "core", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/core/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/core", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "debug", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/debug/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/debug", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "graphics", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/graphics/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/graphics", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "scrollview", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/scrollview/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/scrollview", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "text", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/text/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/text", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "textlayoutmanager", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/textlayoutmanager/**/*.{cpp,h,mm}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/textlayoutmanager", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "uimanager", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/uimanager/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/uimanager", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "view", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ], + "yoga": [ + + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/view/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/view", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + } + ] + }, + { + "name": "RCTFabricSample", + "dependencies": { + "Folly": [ + "2016.10.31.00" + ] + }, + "compiler_flags": "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1", + "source_files": "ReactCommon/fabric/sample/**/*.{cpp,h}", + "exclude_files": "**/tests/*", + "header_dir": "fabric/sample", + "pod_target_xcconfig": { + "HEADER_SEARCH_PATHS": "\"$(PODS_TARGET_SRCROOT)/ReactCommon\" \"$(PODS_ROOT)/Folly\"" + } + }, + { + "name": "ART", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/ART/**/*.{h,m}" + }, + { + "name": "RCTActionSheet", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/ActionSheetIOS/*.{h,m}" + }, + { + "name": "RCTAnimation", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/NativeAnimation/{Drivers/*,Nodes/*,*}.{h,m}", + "header_dir": "RCTAnimation" + }, + { + "name": "RCTBlob", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/Blob/*.{h,m,mm}", + "preserve_paths": "Libraries/Blob/*.js" + }, + { + "name": "RCTCameraRoll", + "dependencies": { + "React/Core": [ + + ], + "React/RCTImage": [ + + ] + }, + "source_files": "Libraries/CameraRoll/*.{h,m}" + }, + { + "name": "RCTGeolocation", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/Geolocation/*.{h,m}" + }, + { + "name": "RCTImage", + "dependencies": { + "React/Core": [ + + ], + "React/RCTNetwork": [ + + ] + }, + "source_files": "Libraries/Image/*.{h,m}" + }, + { + "name": "RCTNetwork", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/Network/*.{h,m,mm}" + }, + { + "name": "RCTPushNotification", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/PushNotificationIOS/*.{h,m}" + }, + { + "name": "RCTSettings", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/Settings/*.{h,m}" + }, + { + "name": "RCTText", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/Text/**/*.{h,m}" + }, + { + "name": "RCTVibration", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/Vibration/*.{h,m}" + }, + { + "name": "RCTWebSocket", + "dependencies": { + "React/Core": [ + + ], + "React/RCTBlob": [ + + ], + "React/fishhook": [ + + ] + }, + "source_files": "Libraries/WebSocket/*.{h,m}" + }, + { + "name": "fishhook", + "header_dir": "fishhook", + "source_files": "Libraries/fishhook/*.{h,c}" + }, + { + "name": "RCTLinkingIOS", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/LinkingIOS/*.{h,m}" + }, + { + "name": "RCTTest", + "dependencies": { + "React/Core": [ + + ] + }, + "source_files": "Libraries/RCTTest/**/*.{h,m}", + "frameworks": "XCTest" + }, + { + "name": "_ignore_me_subspec_for_linting_", + "dependencies": { + "React/Core": [ + + ], + "React/CxxBridge": [ + + ] + } + } + ] +} diff --git a/ios/Pods/Local Podspecs/Yoga.podspec.json b/ios/Pods/Local Podspecs/Yoga.podspec.json new file mode 100644 index 000000000..72d046f69 --- /dev/null +++ b/ios/Pods/Local Podspecs/Yoga.podspec.json @@ -0,0 +1,32 @@ +{ + "name": "yoga", + "version": "0.57.1.React", + "license": { + "type": "MIT" + }, + "homepage": "https://facebook.github.io/yoga/", + "documentation_url": "https://facebook.github.io/yoga/docs/api/c/", + "summary": "Yoga is a cross-platform layout engine which implements Flexbox.", + "description": "Yoga is a cross-platform layout engine enabling maximum collaboration within your team by implementing an API many designers are familiar with, and opening it up to developers across different platforms.", + "authors": "Facebook", + "source": { + "git": "https://github.com/facebook/react-native.git", + "tag": "v0.57.1" + }, + "module_name": "yoga", + "requires_arc": false, + "compiler_flags": [ + "-fno-omit-frame-pointer", + "-fexceptions", + "-Wall", + "-Werror", + "-std=c++1y", + "-fPIC" + ], + "platforms": { + "ios": "9.0", + "tvos": "9.2" + }, + "source_files": "yoga/**/*.{cpp,h}", + "public_header_files": "yoga/{Yoga,YGEnums,YGMacros}.h" +} diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock new file mode 100644 index 000000000..e714ceed8 --- /dev/null +++ b/ios/Pods/Manifest.lock @@ -0,0 +1,30 @@ +PODS: + - BVLinearGradient (2.4.2): + - React + - React (0.57.1): + - React/Core (= 0.57.1) + - React/Core (0.57.1): + - yoga (= 0.57.1.React) + - yoga (0.57.1.React) + +DEPENDENCIES: + - BVLinearGradient (from `../node_modules/react-native-linear-gradient`) + - React (from `../node_modules/react-native`) + - yoga (from `../node_modules/react-native/ReactCommon/yoga`) + +EXTERNAL SOURCES: + BVLinearGradient: + :path: "../node_modules/react-native-linear-gradient" + React: + :path: "../node_modules/react-native" + yoga: + :path: "../node_modules/react-native/ReactCommon/yoga" + +SPEC CHECKSUMS: + BVLinearGradient: 6d8909e3fc6b089defa4b89d967441fa6827a2ee + React: 1fe0eb13d90b625d94c3b117c274dcfd2e760e11 + yoga: b1ce48b6cf950b98deae82838f5173ea7cf89e85 + +PODFILE CHECKSUM: 6cf5a54161c04ed31b903db21b69d6068f842043 + +COCOAPODS: 1.5.3 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 000000000..bd52824bb --- /dev/null +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,2120 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 00714CC31DD01DF8B3618C3717FBF999 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C356D3BE0451D79DC4A557512E362E5 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 012B27E0AFD0B9FBBE0D40D1C2EF6AAA /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 73ACF5B7B0631CE0AE72E4C7C127A672 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01C15B4EFF018D7A4D24A6FE8416BB52 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E18482D32B8CA623BF90970125407EB /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 027727B68A76A3C171C8BE473FADEB39 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 64346D14B128B6E4EE49D42B0B779C11 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0308A118CDA42EDF349376834448557E /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 34C9AB281E5CB9014DACB78ABC24F76B /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04760E045FE06E20F712FEFCE58A0A44 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 44EF3CE3934684D9813B7C97EEC0BDED /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04A9871041EC6C877D826F8D458722DB /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 156AF72E85F03A38FB4AF38EC437823F /* RCTSafeAreaView.m */; }; + 04E0D930D85BCE06BA9D217397D75A51 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 344A7B31A1A60F8F3204ABAD20DE11FF /* RCTJSStackFrame.m */; }; + 061EDE5440854B33DF0644611B7CF33B /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = F35BC64ACB3A968A2EB91D4AA358BD23 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 092B3C2060C479D8F98ADC834A0AC097 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 01482791D20ABE6CA912827E61884EAC /* RCTRootContentView.m */; }; + 0BCBB35806921FE3B665CA8D30DA4C58 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C67140A7DFC000965F50C2E0BF9FE4 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CB4E0CBA48D72CF9E8FF5F929810718 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 5084C625C33834FCE30F9886A6320AC5 /* RCTBridge.m */; }; + 0D1456866CAD84D9D1546AAA8E633805 /* RCTExceptionsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A73C4E59991B2B803E9E1E1888F78C60 /* RCTExceptionsManager.m */; }; + 0F2C841972D7AE05F99FB6EF2AF0CA46 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A2729169F4F9844EE1F49681B76B0FFF /* RCTTouchHandler.m */; }; + 0F7B471E6D52D145D3B80369D7AB738C /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D2F29B622028B2A76AAE5D8A4C3453F /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FE83A8880EDE7BA47FD74C895B84D13 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 064868B642950C771947040380F7427E /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11ADC410EC9AF2F89F6A58929872CA60 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 51DA9BDCF70E293555C76CB355FB44EE /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 139352B997CF0DFF4E5E3B6CE529C13C /* BVLinearGradientManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A3A11E023EF3CD6DA165AB5EC8F4D93D /* BVLinearGradientManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1416ECC6494D02B35DFEADBE72CB7524 /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AC8CA3071C38B359580546B25D826E7 /* RCTStatusBarManager.m */; }; + 146442200F39BC167AA4FDDA33791BF7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = CB1C298409A8D5FBD2B4E46E25CAF558 /* RCTTiming.m */; }; + 14DF368BE959D7998202236E29BA1A47 /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 90B38F2A3F43314B5D6A5203505A492D /* RCTI18nManager.m */; }; + 162249204AAA247B04F1C8C069A5C6FD /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C392BE6703B65FD841615AA374B94A /* RCTSourceCode.m */; }; + 16E2B4016737116EB4AD225B4C7B856B /* RCTJSCSamplingProfiler.m in Sources */ = {isa = PBXBuildFile; fileRef = 85A11A52001B07F779E6F3E85DE49E10 /* RCTJSCSamplingProfiler.m */; }; + 1896843575DB5484AC4705B310017158 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EA14061147BAA725F92EC22605C0D7A /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19512177A635E8390BC6126F7D856AC3 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6035FB961061136941229AE74A3B5D05 /* RCTEventEmitter.m */; }; + 1958CF8525BE44D00EFCB69E96EA603E /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 456FEAA2295BF42788ABB8DFFF69E847 /* RCTModalHostViewController.m */; }; + 1ACD7582A377C266E325D78AC1553F5B /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D0F39E5F719D37CC80E27DBBAB839B3 /* RCTAlertManager.m */; }; + 1B09B8734E451B75C4750F436BC9CE64 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0105F7A11B2BC019C7BFFC009BABFB5B /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B0EE63239F9A91E62F05FFAA7E3CEC6 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 770C82846F9FDE4C8C873F510FBF6163 /* RCTRefreshControlManager.m */; }; + 1BA488410B5F4EABF45B329B0F7B67B2 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 831AB7B7A3CA4D0FD7564E6931F2D3A8 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BBEB24E846AF7712B3655E90A47C906 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF0A6E6F66B4B37D627FC750F962D30D /* RCTConvert+CoreLocation.m */; }; + 1DF188971F0F1B9D8BD5D6DB477A41F5 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = AE18E608670BB53BEED1214FEF31CA10 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1ED528BADCBBA5F5BD27BC564D2BDE3A /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 568A15D2BBF362263E769457DCA93BF3 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EEEC70090417355B54718002CBB17E8 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E16A4767BCEF01A5D958748812C48F8 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F4756779EC11A776ADB3D012C60C096 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EB27C95E21D2737075698EA4F753286A /* RCTScrollContentShadowView.m */; }; + 1F84B175E7AF143AB8C780C4EC8BFF0B /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = D88E037D35BED4A5D692FAA7E31476C4 /* RCTKeyboardObserver.m */; }; + 201461FB6E99DE219E0A449BC157EFF0 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 8F9CF27723A410810F629B5AEE3F2244 /* RCTProfileTrampoline-i386.S */; }; + 215E1B3C312A556CEBB2A63E588BF973 /* RCTTabBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 427C7ADB485A339F9C1C6A636E9B8B13 /* RCTTabBarItem.m */; }; + 22FED0C8F7BA5BD318682F34849A8F5B /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8E96BD5BF1BADBC68F628E92778E5B /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24B23AE274494A0B3B9FEEFCEF2816AD /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE1FD038B2A8D8CCCB009B42035965D /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2523828760D012BBEF4FF7EC2A72DE5A /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = B280748E52B511CB4802C4051911FAB3 /* RCTModuleMethod.mm */; }; + 254ACFE4F2BF5907C00FCA274265388B /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A7E40D38A8EAD7D4A4221D50A77D9F8C /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26A33AA4F34D0724E9635FF3A9C6D7DA /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = BE3E31D64D102D9211F162E12E267E79 /* RCTProfileTrampoline-arm64.S */; }; + 2A6C5468C8EDF903393BFAAAED66D0BD /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA1938105C7149E6967D5B19C5C7E951 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 2B0CEBE853664AD1AAD8FDF0FCE55ECE /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = CC56C0652E6CB22E038AD17C3CFE3450 /* RCTConvert+Transform.m */; }; + 2B1F16D6504BC7B672248C4287C3DF2E /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = A834A9C5A2701DBD576AB8B7ADCD4A4B /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B5AABB5E0991948A11862EBBC0F6FEB /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = AC7862503BBC10F338B37C9777205373 /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA396A1A2A4AB291A867AE3C28B04E5 /* RCTWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9625E6A8DD3B1C626958B2DA9AB9007C /* RCTWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BA74F36E6904AFB45BD7A8046586ECF /* RCTNavItemManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 618C73B2E7C75DC4BAA7D49F61322D4B /* RCTNavItemManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BB66C2CDC315CC62113FFDFF02DA7D1 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = D1D956CC0D7E331E6FA5B520B1F93EA0 /* RCTJavaScriptLoader.mm */; }; + 2C78DEB0834949B5F8260A64B4AAC6B7 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B342290B30392C882B32FA21A654468 /* RCTModalHostViewManager.m */; }; + 2D03A4EFF5F1A1E7E7D01C46D1E7812F /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = BE74E72EE49521B414064F2B4B9E1E13 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D65FF2A562F0C4B109870AB7EAC757D /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = EA6272C3AC96FB0C5D439C79BC5C710B /* RCTBorderDrawing.m */; }; + 2E7178300C884EFC96684E5784602D37 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 327619EE40FA4338690EC94CDA4FC0C2 /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EAFB6B0058DDBEA39EF09C8508A669F /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E84D8F69BF04F8C4B3EB22515EF47D0 /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F741A15BB1FCF1E255F4512260413F4 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BB46F503E3EA2EC59B5DCDC7514462E /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2FACA11EC4B717021BA3AC308432C7AD /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = FC7C6298D8DE0793944AFCD4D3F41957 /* RCTSwitch.m */; }; + 3155B1FAC1092DBA2F5676635E321603 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6812B66297A74D63B2A97B1075649167 /* RCTScrollContentView.m */; }; + 32ADE17BF09A5FAC7D5DA1975D047B97 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 679BA4707D4A9222352F4764E2263373 /* RCTSurfaceHostingProxyRootView.mm */; }; + 3320FD225549A7D2933237F3EE44CD7E /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = FEA5A5410F0F0C882DA3A44F0C88B921 /* RCTVersion.m */; }; + 3322AE73C48F9F48A1498E9C2674AAB0 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C26A8BB662CDAEB4D153632C2231641 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3365C90BF666972D3EC1538A64485947 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77F3E49EBC2A87F8B087420DFC19F3A9 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 34800FD796101BF3DC9BE412019F7B2F /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FB2C9A4E6281C6CAF0D1F4559A4CC39 /* RCTShadowView+Internal.m */; }; + 353A3604612CAA26B949A264DCCE58F5 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B78C808C36FF832C931286DAF6D4E8B8 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 35929B266035B640CDA36935CC0A1A02 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79E8696009CE894EDCE884337C3F7634 /* UIKit.framework */; }; + 35BE1C73BB80774FD4CB005C91E8FE9D /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 03E390E9798BE04BE5F475D4136C2DC0 /* RCTErrorInfo.m */; }; + 35F2AC07049B874F43EC7746EBA1F5A9 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 929BB20AC5A68B6B0E14C02BD8C4AD02 /* RCTAssert.m */; }; + 373D8609A9A719640FC184E207E2E1BA /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 14528F848DC19F844F8353DD803397A0 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 374F1CA3957E1FC88C8AB2E2DCB954D2 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B6A3DE612FB3492E4B40D951FDE6909 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 382E47EC58863AF87A0DB03C7623A215 /* RCTTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = CEFA9C6F6B2787E678D14B3C3EA54882 /* RCTTabBar.m */; }; + 3880934B5353971EB69677E04A70F6B4 /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A960E6092E6449B8A7FD1C38503F48C /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39ECC2269DEB157A8BA100EE52B437EC /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FEA2CC1153B60A0A7A5DA3AE246BD7D /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 3A96CBDF32585A83CCD595D13A2B8DC8 /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 96E81DFB027ADCE5162A815CDB1782AE /* RCTDisplayLink.m */; }; + 3B3CBD7906F064C125B88F474043674D /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1A17BF3F0FABA901D8AA07D0F1F8DF /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C7FB1062F90DF55A22520C6FCDA3289 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = D0E347452DC32485A49B9868349E4376 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CC215E437BE286899BBBC6ABAD1FF51 /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F438701E3FF31F71F8E32BF642F019B /* RCTAsyncLocalStorage.m */; }; + 3F025DD5D110242D460B888EDB1B2B40 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 96A63CAFA73F9AD7E2C2A87EEEB47F5B /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F38EF6630E598E8435623FC516D97EB /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 013223DBB7AF63257FE50EE09BC92B22 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FE69E39BAFB3279F10C40C3893F08BC /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C8DBE6323194E8891398F5CF6DD203B /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 419402BCFDA35C9F81BD9412FE30080F /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C553BBACFDF3919C914FFB1689026004 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C027E9A81EDCFBE309A35977ECE4AF /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = B0ECD566C2FCF19915A21493A43361C5 /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C3BF0B84091AADB645644E3A885531 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD5BF1C3CFFD22BD3995F2494B0C1FA /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 430BFEEEA9C7F3FC42A6919E740BBB87 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B850B032B16942ED7E069BA0A70BDA9 /* RCTPicker.m */; }; + 4363AD074117015CC6995BAE6FB86FCB /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D71AA051C6399C6E6D04AED9B106C8 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 438F700E947C12650E2696914C461E1B /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AEE47CD41ED34F3A09F7BC24D9EB9A5 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43B23E5EEA7147F84F94D15929AF9239 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 11E9E6980DC98D709385275E0C98E195 /* RCTAccessibilityManager.m */; }; + 43BD2C39F46B6DA55834459556730EEB /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A78A70D518C40B9D5A7B5B382C086DA /* RCTI18nUtil.m */; }; + 43EB7878A3009E39B0C9C8D91C1DF7FE /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C2A18CBAFB121761AC909A52FBAD8B5 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 440037BA145F3A2FFD3E0B91C592B5A2 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = B9E5C7E13AC06CAD1F94FCE4684AEB9C /* RCTProfileTrampoline-arm.S */; }; + 442844CE65C498C732372E305DC9D8A7 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = F5C913789E115A6CE5F9BB97F7C1A113 /* RCTFrameUpdate.m */; }; + 4474EDAC52508E0A1394D5A3428432A8 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E50921ED27F7B7991C5E7AECC5CFB5E /* RCTScrollContentViewManager.m */; }; + 462FF802BBB25C09E2DA2A31F1B32B5B /* RCTNavigator.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B0535189BAA55D5F8AFBF55D711F1E /* RCTNavigator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46449EBDC025804EA0D72D27550B06BB /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = B712E0CA50E02A1C2A04F74C49B24B90 /* RCTEventDispatcher.m */; }; + 46EC9A314052AEEE1899D415CA573E75 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 803B6A7EE0EF1F83242ED8C10F0E50BE /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4709B855D04A0DE0F6FF982A006ACEAE /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = C97AD280C4AF237203D6D0F3D06F8501 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4740A32A5D4F8FD33E585F7C79968BCF /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 562C273185EFD614111C6ABEB315313B /* RCTLayout.m */; }; + 47934B99DCCFFFB7FC5E6F3A38212586 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0047008CF545F17EF2CC96E676D20E99 /* RCTSurfaceView.mm */; }; + 481A920A64FABAF24E23868F936CD105 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = C27676FDAE5E4C743056A4435012BE71 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A41A3A9592F8A6817097FF47A0E5F89 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = D662E0069E5F87B5F4A7008CB97793F8 /* RCTFont.mm */; }; + 4A7BC3A12A1016DC2AC11344AE8715EB /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 37BE4D4EF9189E3D5591A0995A6B58F6 /* RCTSliderManager.m */; }; + 4C1821AD96487A60B1CB2216EEAD9C34 /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 6448D9829775E739C0F17CFA2212BB0F /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CAB098378BC0A4A24A65F99252DFBB3 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E4D02EC66C7AB23BF6404A8D328052A /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 506301A83758B47E13F590E5834A252E /* yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ADEE59222FFB1C333E92193ABEFCE54 /* yoga-dummy.m */; }; + 519523CF823319A2FC33E96B257DF1B4 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 91C06E2136F66692A251262178C15E2F /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519A6CE233C2CF50A6B022910C7B35EA /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 562F0F6FCEB5DD663BAF8799AC44769C /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5254107393BF9E1D59E6BE344F935E12 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DE0A16575313221F1999BAB5E9BDBE6 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5274F7935CFE80533458F96797E97287 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A4598792121340860A94502D52CF2C1 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 527DFC08CA8AC80FB58982D465CECE18 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = DBB8F03214BC5881193918D11AA7967E /* RCTUIUtils.m */; }; + 52969B63D836B12E6CFE13CC601CC263 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 4854A4B9559B3897028663AC2BB70B90 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52E11C5B531750ABA549725B8D11DA6B /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 972A03254B88070B4B665CB3EA2030FF /* RCTReloadCommand.m */; }; + 52FF33D6D25F961776F0557F3C4425F4 /* RCTTabBarItemManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B18957D441E4A69EC52A27C2C654BE4 /* RCTTabBarItemManager.m */; }; + 5326A36380FB8179662AE442F00F08D8 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = BCF4C7B1F0714CC7ACC8DF0E4B92A281 /* RCTSegmentedControl.m */; }; + 53369A61D8885B8ABB45AAD1434415A3 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 753546CD6B6ACE26BC74025936C4C006 /* RCTParserUtils.m */; }; + 53C5AE5D85D90B5B7CA53B43F5BA0F4F /* RCTNavItem.m in Sources */ = {isa = PBXBuildFile; fileRef = AAD0FB1693B43FBA8FAF943FA8B65232 /* RCTNavItem.m */; }; + 53E227A19F5122DC5C64BC85CE7A6368 /* RCTNavItemManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A5B66D935A28E07160CAFFC4516E8526 /* RCTNavItemManager.m */; }; + 545E95466996101605F19E55E5583086 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2002E71CF1EB9DBED4D435CC6B80350 /* RCTActivityIndicatorViewManager.m */; }; + 54B616BBE0067F2538975ABF0B72CFB9 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 81926DC6F60219C2F5102F65FDF8E25D /* RCTScrollViewManager.m */; }; + 54B659BDAA8258F78EC75AE4ABFA550D /* RCTTabBar.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1D439A98CDC436294084F869B80A80 /* RCTTabBar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54F886CDECE3499833B06334D23A0887 /* RCTWKWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = 966D2ACAC84B913F4987E51DD2F95E7A /* RCTWKWebView.m */; }; + 562AF4096C7E76042824FAA7B7E31439 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 106523174C4EA206A1B7840D964EF661 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57AB1A9E86D9CEA6500AF9B3657299E4 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = C162EC09F42EADC16FB10E2227E5F311 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 585BF4AF202FB0490670CB15F225BD56 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0630AC5D3771FB86C4057E25820D5E5E /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 589A6812E8DB459930F00BA292EFD177 /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = BB053FB4A0220EFDE14744ED5D6C977C /* RCTAppState.m */; }; + 5A07C04D8A99E4B586F946C1A6C3EAEB /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E82888B6A070E474E126429CBAF6F0 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A77265D623DFFE92F8AC1D80D9BB16B /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 940678DDB15EADF9561AE83BBBC6A736 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B1F5EBBA5E085F93CDBB74A4C02ABF2 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F5F54A5507FBAF1788329B1D9EBB179 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BDE7F1EDC9031E1857BB123EDD6DB8A /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACFAACBD208EB80A8CE770735527B36E /* RCTDatePickerManager.m */; }; + 5D469E1A051DC5BC48BA2D7C1DCC0CA2 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 74B0CADEEC15EE34388D2E56E4A3CE3A /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D9B87DFEF714929CB183D225DA49B6D /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D9F6698C10129EC6B104D5B249DB16E /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5DFA52AE118B60E802E8D8F176D17F28 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = A03FA2480DE3FCB879A3D5BB8DEA8C34 /* RCTSurfaceHostingView.mm */; }; + 5DFE41C66BA899918C76B97A750D58F1 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = C7DD8374FFEAB8E8BCD4DB2AACF7D036 /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EDA9F9308CD6608B43734BB4230BA2F /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8921F6704058CD3143ED5D438CAF017D /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EDEE68EF37AEF2B6AD619EE5FAF4BB6 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = D3AF80CA3BB7C375A9407DFA78E568B6 /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F116F54D80BC61EC5CEA30DD9FD2ED6 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5E604F6F2AEF1437B7B715EDAE71EFBE /* RCTUIManagerObserverCoordinator.mm */; }; + 6172B0C80007ED11FB3311B6EE974F90 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = EDA1B31EF1A1D9453D1628532BB4A791 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62158723E3E15AE1A15627FB17F81B18 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = EE7CFC7764D59E2F7133F4BA261EC268 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62F93649286F5A2E18BDD970B9679541 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 79591E1C5D8C542C9065A41240F64A71 /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63491F62F00E6B806C16116DF9962BED /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 316ED924EE209B49CC1D2083E028A954 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63779182D1DF52AB7E5EFFA49886B433 /* RCTWKWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B6F832F04994C72C95102274C90DE4EA /* RCTWKWebViewManager.m */; }; + 65297C5E17D54260A0304965E38C9CC3 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 97684A86BBAEE51342A85CF3D0D4C327 /* RCTRootView.m */; }; + 68C7C0D02423519F5B1B138F0A4BA0B4 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 28A3B4962AB988AD23D031BE57E2BD31 /* RCTSurfaceStage.m */; }; + 6A13A12A69E6E8B9EE0C47699F83FB51 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C8BB1A277DE5B3861E9A2461810B3DB /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B132EC395AA731C07D263A8929EC676 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B13E1847F47A6B4EDA7DF5F78B4DC7 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6BD2033B2EF258B9785BAA674FB56BF9 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 87C5CD6486D724D471A9DF8CBF6C3259 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C296685C0333EE354AEB09D0A7148A1 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E909C6E991A9B7A3BC6306728068FCF /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C61155C682576D66C730A97BE163ABE /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D560FC050DBCBDACDFF8151CCC00D0DD /* RCTSafeAreaViewManager.m */; }; + 6C9DC7EDA2340523518EEC5DF84640E9 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 66E6DE6D4F2D40AF8894B46854EC9A47 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D37C3AB0520A4F5FB81349B2A27DA52 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 16AC18AFDD4D5CA9C0E43E87A4BCB003 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D5EBB5C6FB66CB6649BDDC95F798C64 /* RCTTabBarItemManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E50F1CB8B612F5C044F1769A3B692DFB /* RCTTabBarItemManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DEDDE0C385BDAC490C7BBC424BA5409 /* RCTJSCSamplingProfiler.h in Headers */ = {isa = PBXBuildFile; fileRef = A48E5A1CD5B232DCBDB63A221D58D60A /* RCTJSCSamplingProfiler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70312E29D79721BC8248D5634A2C64E1 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = BEE9F4A9D08CFB710EEFE51EF02E55C0 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71751FD53B9B4740BF77F2F2406219F3 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 8172EF56D50531CA96599243361160F6 /* RCTImageSource.m */; }; + 72883D43D0575CF9B060B6E234357F0A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = ECDCCD4A20B8351B3D19ADE8271F522F /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72D762D5E669684EE9C5FCDBE05EA3D3 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DD7B6C5381D9F48B88FA097A9513917 /* RCTView.m */; }; + 73F0C1A1195CDC6547900B3B2757F158 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6DAA51949C6BD277E83FEE7474BE75 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74ED7AC0FEFE7C198382A43933CC8409 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF46810E1D076A8779087DE61D44F92 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7572F29A7AE5512679EED7699081C464 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = 28A9B0BBF0AAA9897CACD20B8B9006E4 /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7586E3105EE533A53734A192016BB191 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = CDC97938D03D9A8C1BD680378EF7CA91 /* RCTShadowView.m */; }; + 75AB4C5979B3C1EC438B610973F0DC00 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 106A9D25508A280E7CCE4DBF9F7120D3 /* RCTLayoutAnimationGroup.m */; }; + 75F57902FACB333BA47D22EB2AC8C5AC /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = D006B06FBC56DA5E98B829C64DE07029 /* RCTManagedPointer.mm */; }; + 773F358393CC5EBABA2436789BC1E595 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6AC72D13F63B00F7461F6C93C7A3078C /* Foundation.framework */; }; + 774713E28CDFE2B7F171401679F10749 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C10EAF2984009197083E36230A21D68 /* RCTSurfaceRootView.mm */; }; + 77DDF4D2E63BE3E5114F687B6E652789 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = EA657817720674CCE4998235B050EF77 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78CAE5751662BBE4DB33A031B67845FD /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 26773EBE0712A47E8503689CDBDEA029 /* RCTShadowView+Layout.m */; }; + 79E8FCE86AB6BBB4BC87F641204F631A /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ACA753FDF36FCE43E79E75A8636F9AC /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A7D958B6D1D9F5B2EFADEBAFC612D2C /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = BDB6A7D9707596155F56A1931D118AF7 /* RCTTouchEvent.m */; }; + 7C9BEC3792340710D8C61303C1DF2094 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 605D39C80D3BB9674E9ECC10ADB9C7BF /* RCTMultipartDataTask.m */; }; + 7F55BAD370227F129FA64C85A9E1035B /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C49F9843ED81EC53B23429191943A6C /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80D237471DDB6164E8278E9BADE8A411 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6858E4675AA20F1A270EFC511488B860 /* RCTModuleData.mm */; }; + 8105CFB6F4CDB74323F59B524F60B2EC /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D9CBEAFC3200170D031BA17999B38E1 /* RCTProgressViewManager.m */; }; + 81F3C86499387A069E979EB7ABA3E0A9 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 32C559825C4E0E05EFC65FB9537C9341 /* RCTRedBoxExtraDataViewController.m */; }; + 828D7E67D942060917026E5375D46165 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = C91BFFE2A7C9E8275D5E51639BB1B3EE /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84891CD7458F8F0D769F36FB5FA7A628 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 67C1AA4F5BDD62C1A59931F9318195AB /* RCTConvert.m */; }; + 86DA0299082D458981278ED79046EE13 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = ADCD7342624BBA2CB4CC07F79F5EB39D /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86DD4B22B09AA18D1E295FAD44351BF0 /* RCTNavigatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5767C3692B72BA779A7A103680D4F494 /* RCTNavigatorManager.m */; }; + 880AEEDA9A37028AC56C3CDD767EA700 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D6EDAA4FA5A2007525C91BEDC196678 /* JavaScriptCore.framework */; }; + 8992AAC877828B9174AF71543EBA72B6 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = A1FC18FD1BF8D5E7F05CDACDFF8BAF7C /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A91AEF4AD39CDADE6FA716B6FAD9573 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 295AFAA689AD527AC163481D95F25BD6 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AE74417FE35484A2E0CBE8DCD826CAA /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DDA49690787B0FB9B8DDF64B5901A85 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CDEE906BE49FD9C7A3A76F73E43692E /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = AE08EABDA386A6E5D84BE41484B8B438 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CEF3D9E3A67B2ED17410F45885E9791 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 76D1E7F1AF0A2F496963F8633A7A26D8 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D24D944CB8FDA3117E335CC1D3ED80F /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B4CCD3DD35600A198292CDC3E89A32 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DB9D3E99885C0E45381FD620BA20EE5 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 22F3474B627DB61C28B7A1E2697D2B6F /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E0464CC0873C61DA5E4B99542A81BE2 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 25C58427FB503B2605E95E018C660EA9 /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E1DFB7FE8EE62976F4435599D022E75 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 256709A44E2AE2AC3C00DB5D02B99432 /* RCTSurface.mm */; }; + 8F3F911D1A17E08B893EAB2DCDB306AD /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 0364310F5DB019BCF0249D171D55D469 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FB9DB2155E28A2A1472B0AD387AF749 /* RCTWKWebView.h in Headers */ = {isa = PBXBuildFile; fileRef = 36980F82FD5E99609854B8AB23EFCFD4 /* RCTWKWebView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FF8D50E7CBF674231E7F90820E013AC /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5479AE8B9359A5777A1544A21703E05E /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 909FA5FB4436F73187B8E72266E3C019 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD40EAD0B38B034CB153A4BBE53B753D /* RCTModalManager.m */; }; + 94D68A156DDB5BD67F656FF6BD06E69C /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = F83B67E89F0B6890718E60C252443575 /* RCTRootShadowView.m */; }; + 952A174A5B92883C0B9BD02948501D21 /* BVLinearGradient.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B0E30D6423BBF6F1F3D4947845C2958 /* BVLinearGradient.m */; }; + 95E8026B965D828048A7ABC55C60FB82 /* RCTWKWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B9203F09FFD8AEBEDDA1A36F93C97D /* RCTWKWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9610BB4D34BB8ED91221FC89886B47B4 /* Pods-esteem-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C7DFC0774BCC6A9E6362EBC8B30B378 /* Pods-esteem-dummy.m */; }; + 9632150BFE03BCFC837B445A2116DBE9 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F1B955D2593AF20D05F5A85524432611 /* RCTPickerManager.m */; }; + 966AB629F69BA6A0957E4DA34FEDCD7E /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C275F32503BEA6A5CCD36C74CC29C6 /* RCTScrollView.m */; }; + 968D207F1E702F203240BF2EDD30F422 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = EF61EF8EB6D88E27218306C91810BDC0 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 995833C5113E840998994B57AA39DEA0 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F91C3792C5E87BF55BACF1382D850E /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99E790D445F1BFADF7241B125F13FEED /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D99360DD85F6ACA318999581FB265A2 /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 99F3E5A6D45620625F3D8747E457F1DA /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F0A5F8C8E36001557F16D23DEACFE58 /* QuartzCore.framework */; }; + 9AD0CAE6CB3ADD6FE94BB31F22EFCF48 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 12D2D71CBD7D5B62425A468C71DC742B /* RCTProfileTrampoline-x86_64.S */; }; + 9B156B131D1E5C239A05A140CC82D9EB /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E9847A4938CB401CDB8902297A7AD4A /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BC4B191023683CB8DCB8248BD00A7D7 /* RCTNavItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F8C49836B5E6DFCEE455D24AF9EE85A /* RCTNavItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CFAEE7C29E2689CAEC0D3CCD137DEB7 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 434F798AC03702617EBF8FA2BA5B4D07 /* RCTComponentData.m */; }; + 9D38A4AEEAC166E366B2F7CB23F04ADA /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7FB6DD741F6B6833CC20DFAA8D98E0 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D578DE3AE362C7C4FF3C0083766449B /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = E8F27B6C0D713F424433D250CF745E20 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EB645D7C7CA615063A1350034EC8344 /* BVLinearGradient-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 01F109116D0DC0AC6F83F2AFCA18812D /* BVLinearGradient-dummy.m */; }; + 9F866183D35D302665519F9D738F2BB7 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = AED744457819235F8D9D2E9E83AC1028 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9FA38CA1BB9A8905467831CCC66D1DE3 /* RCTTabBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3AAE2474B0020A3671C4F3ADFFE12A4D /* RCTTabBarManager.m */; }; + 9FC65B7AF648E7CD17303F7B352ACB70 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 16991F490F0E576CBEC168A35568D169 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0DE2156773EB2E7A544F37747882C34 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8272DCBDF85DC70DB8B4BF6F5AC8AFB3 /* RCTMaskedView.m */; }; + A0ED3D84824A5157A49DC08658ED9A73 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D8228181868F411B7D7578C2025BF6 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A14F400BDF7433C636392F0A4195E921 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 122DB8EA30BDD254DBAEDEB47BBC541E /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A18192281C3E4234530FEB45586D1B2B /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 90D844AF959C33A85E1C0ECD2FF5FC40 /* RCTDatePicker.m */; }; + A271C1B71708B38AFB719F58E1E83174 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8E3579F3924FF3BB4AFE5AF6161676E2 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + A3F6169F2C9DE040A690448E4066887D /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD02A75ACCBFFFFD52F6F00888FF813 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A65CC99D58451896EFA77D3370C11445 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 18439682C4C28CC0A15128CA9EAFC1BD /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A79D5E4C366CC277311481A95E64F654 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DC743CB2AB29AFCD8501363308783589 /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A804AADB50AD69B7AD7371DCB1E78A1B /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 94336249A8ED5A467780EE2ECC861BBD /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A95DA0B0BC019D7B45C720FEB7F36774 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = E204CB7F8FDBF7EAF90900A4EAA2E236 /* RCTSlider.m */; }; + A9BB4CD1A8C74514B89884905E3E02C2 /* BVLinearGradientLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE551C7BF66B87574EF0F4C698AF8D6 /* BVLinearGradientLayer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA63D91201705FC43363234E29357C13 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B651D54F6D940D63C84660E14DDC18B /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AABA32E1419677410AAC74E1B3F5DB07 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1FF5FA45F1DDD56AAB687871885012 /* RCTUtils.m */; }; + AAE60A68186D44A9DA0C111A3C88330B /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F52F445223F2016FEB5FCD5ED8FCF1E /* RCTProfile.m */; }; + AB194563E62B1EC7BF871C21AFED26EC /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E2EF7EFDB865CE15546F03787B48528 /* RCTSwitchManager.m */; }; + AD140906178C000C7189ECF806702F7B /* RCTJSCErrorHandling.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B8FC0AD524EC76A7B641FDD4EFE1FCE /* RCTJSCErrorHandling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD6594F303DD21B0F46DD99C9FED323D /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 48E919E51C285368B3175F0FCAD391D1 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADD82BA35770C0D326DF61777E8F63B4 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C5050537A5B0525E95518E78424C3D8B /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + AF343D941B0DA62A876FCF1EBD7D9B80 /* RCTWebView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5691328BBD59A64C840CD28D3F2AD0C /* RCTWebView.m */; }; + AF78E9C764F1CB27472D39F89CB79524 /* BVLinearGradientLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6114E05C30BAAA573EDF9267F11DFE /* BVLinearGradientLayer.m */; }; + B005B0A2249864BEACB455E6EB8627A3 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 83175E0E4963F7129BD5A81ABCDCFEA3 /* RCTRefreshControl.m */; }; + B040C297A4EDBA4EA66AFB458449F865 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BA59EC191579E01477C6F268DB3C1A9 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B062B11EABF8AFBE2D28D677AC0517A2 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4AE0B0A1AB712975E98608F8DA1A6E30 /* RCTDevSettings.mm */; }; + B071B8ACFFAE750CF3F0EF119193DB6C /* BVLinearGradientManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5FDCD87152455E83B8C8F8329E46E5 /* BVLinearGradientManager.m */; }; + B16CC872E6C13B371678AE96F001C5ED /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E9E702EA5AD443BE80AC1D2660F893 /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F7AD5AE11D85E330C4C65671A130E8 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3C680DF1A04C957B7C4D8D5226C3970 /* RCTSegmentedControlManager.m */; }; + B56AF592FA17AE23FFC9BFAEC12631E8 /* RCTNavigator.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F0AC7B9FE9CACBE9BC459C40D371C01 /* RCTNavigator.m */; }; + B6238392D5AE89F7FDB2B19248B32C62 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F98448F30765ECFC66B992045A7A10D3 /* RCTModalHostView.m */; }; + B65FCC519311711268CF2BB46E1AB983 /* YGFloatOptional.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4224C245F377072F6D64B40B369BB84 /* YGFloatOptional.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B7192A15AA96E8687EEA2224B10224AB /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B2F0F598CFE2EAC167B80B1EAE6178F /* RCTMaskedViewManager.m */; }; + B7750E6A836D5ABB336BBB05BE675C15 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E510E144E4CE14F7FD061EAAB391CDA8 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B81AC0DA6D2B4B45E466F40AA4E3E949 /* RCTTabBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D11F13D3D0DFCFC7A702DF0551542BBA /* RCTTabBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB96E2D6ED05597E9590D2315EF58FEC /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A3397A7E9B1F51332D43F60B23615D85 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBD9EA5A8D70CF5B827A8225F4390AF4 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = B1A97B93020BF92BE36A20C53AC48715 /* RCTSurfaceSizeMeasureMode.mm */; }; + BC5B75227675694D704096681ADBE4C8 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AFC9C206BDF7DD29517DE7603B72DBA /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE37DFBF27B2F94F0E54FAC37B569A17 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = C5795DADBA43535A4EC49F7923032EA5 /* RCTSafeAreaViewLocalData.m */; }; + BF68568AF36D7DB06DCA5B931286002C /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 19064FA28C6F5AD802AE9A722EF7BD08 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0349C0E8F110C90801EF9F0948CCD0F /* RCTWebViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 59929D7B4C058D6155E96F047267AE0B /* RCTWebViewManager.m */; }; + C03E9734EBC19739025BFADB79C3B145 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B803EA9E1801490845EF6B4E674F08 /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C04950A14360ED17325AACFAD599E8EE /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B1BD9909977C500764DF2303C20D2F /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C141A6623290B2BE5DBDC3240573E1EF /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 51BE4B2115DA06032F182DFE8C0F497B /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C166E0FB98D898AB43A970D6BE9CEEB6 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA3D357CCC037DBFCFA134EF775F032 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1F57A862D7FA3E802A86EA8EB437FF5 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = CFC236B8E3D230E378E730715D379295 /* RCTClipboard.m */; }; + C247C3087444F4024EF319D5B66666AF /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ACB428CC4D05535622DCA6639FD1F42 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C27E14187D338ADA9D4A384540E4DCFA /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 6BD5A8E8B8A503CAB4553DBF336A623A /* RCTDeviceInfo.m */; }; + C39D075A4E6B305CAE87EC21E433D805 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 11EF622674CD8DEB100BC5579A0DD382 /* RCTLog.mm */; }; + C4C06A3832AE8F8B24168F6607ED52CE /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 44F9EEC3D5CC88085130FAC40E37BEA5 /* RCTSurfaceRootShadowView.m */; }; + C4C93BA008514CD416F70777B14B53BA /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AEC2B06390AF68529A0C53530E2BFA /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C71903888CE3A15DD10BD0191C8E3CE2 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = FE4ECAA054A8090771563538445D9194 /* RCTFPSGraph.m */; }; + C9B91F63E78CA5F4898522C27B8809E8 /* RCTJSCErrorHandling.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2339E3585B3C76D8B95BE95760D73768 /* RCTJSCErrorHandling.mm */; }; + CA430C0F0A87C7CEBD036BE7CC1C6169 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E7370097D471CC15458C3A94059050C9 /* RCTSafeAreaShadowView.m */; }; + CA553EDD438796AE4FF35EDD104B6387 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D4C1AA3F0132806D6D2E8C862807756A /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBFDEAD7DD2AB0E84EFCF4171205900A /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = A21C93D6713E8D40CC0F4E609D3505A7 /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE273DF5665FF5C856A8DADBB15DEF6C /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 27C6D48004E5DD48B6AFFCA855B6CF0F /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1F99B18AD9C917DD3E94AF128A815A0 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A572B8DA7D421CF1D51D960B06A09C3C /* RCTWrapperViewController.m */; }; + D2D50888E5CD7A42972EAF37AD0D69F9 /* RCTTabBarItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CEC8D62F3717ABEE4DB9ECC445D1CDE /* RCTTabBarItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3AD0B1AAED583CC24A3819F7B9FBB7D /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 78FC48092A0617496FF799402FAF7169 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4F18FE92CD2677B0E642F0C5B8AF12E /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 391B736C37E9C11A563CDB18FC725339 /* RCTActivityIndicatorView.m */; }; + D7CCAF4E11263BA45291D62D3C242856 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B7E00630673012E6CA215F36FA753BB /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D87ABFE12CCF8BFD0341C65C6F422BB4 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DCEFB75F6BCD92867BDC2D2CAC5ED147 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB23D37BD5D0C1CA7C567C7282F4365B /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 067BC631405E5DC7C5F348EE7938500B /* RCTUIManager.m */; }; + DBEA7F2E1B97DD9304A8B9D9D7F834CC /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B225FDACD43B2D4F08B9F8F3B238A2A /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC250A3C5AE5A1EC674DE1A29C658309 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7D1A63EDCEF56B0FB56361B2C2AB16 /* UIView+React.m */; }; + DD59D02938A955DDA857B160B37DF3E1 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A43239F6C9BE68207685E6D131AEDAF /* RCTRedBox.m */; }; + DDA48482571C2700F10B0B772B4356B4 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE1E25BB33E0CEA0DEE0EEA26D5636E9 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDEDAFF928812075BED93BD3078D0FAB /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA286D04AC74BF3DE38479A7183D964A /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE3278D0450D9717A3B246DB1E9279FD /* React-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FE1030C04A8704F5081558F9D31F98BC /* React-dummy.m */; }; + DF8008121E5BDCAF6688C688A40A779D /* RCTPlatform.m in Sources */ = {isa = PBXBuildFile; fileRef = 90D194973BE0708A147B404F6E108A04 /* RCTPlatform.m */; }; + E0A49F04A3A2C80BA688A9E7E32D7736 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F46D72488CBA085DDDD8A516700777D /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FE4D339E32D68A0C35B320B3E3A4B3 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FE0BA80ECBD3CF3A83093AF7F4A1AE9B /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E33A5A9F0924D70676CD397B8575F060 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = FD26DD072BCE6222C4B0562405739848 /* RCTLayoutAnimation.m */; }; + E43A5B39A19AD9422BF9CBA17EC39B9A /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 6AEB671192D4121B1D03EBD705DA9051 /* RCTKeyCommands.m */; }; + E55AA445AC601238A9B0A9E83542F79D /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DC0F1B9238E823CDB9D113ACE3FE5F8 /* RCTCxxConvert.m */; }; + E62BE06F781F6DCE2252E2ECBC810EC1 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 97CCB8000CA727BB060422605FBCE7A6 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E828B6C457D6D220F770278B1EF3B3A5 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 722E40C614C1BB65B5C72B7933C2DAD0 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC295AF1B20B87DD2F3F5861C49D8F1F /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C6AD99010E39216D0A60ADE4C6AB89D9 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDFB28098F4F471390AEA58A8A2D3BC1 /* BVLinearGradient.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B096E2047C6C0D9E70B0B6CA0A133D7 /* BVLinearGradient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0CCA4535EE94DFC54D3700CB83A30FF /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 00774C06A35D0336289BC7DE1775D805 /* RCTBundleURLProvider.m */; }; + F1495961BADFF9BD9E413E69FD60EBAB /* RCTNavigatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9965D1C9F48ED46FA9C3884A53A95510 /* RCTNavigatorManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3A6D9C3781901EAF3B86CE5C38EEE9A /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 0556474C35265A44587162FDD56FB821 /* RCTUIManagerUtils.m */; }; + F410A1B92B0B903C933B95A2C9390060 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 70DFDD486BC9A424ABD12E92AB3ACD40 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F45D7E2EA88E78229588D3208633800E /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = D43961128D76062AA9D8FFC42599A49C /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4C1A77A578B5E0F8BFD11E470CE245C /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E13C7A14B418D1485C479369552F7557 /* RCTViewManager.m */; }; + F537261E40626E0811ECF39FA4A6534F /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DA4BB77B5B4FFCD73FDDBED01D959F6 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F718102713366187452E69626F56088F /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BAFFFEDF7904D92200D72DF5F8C8F7 /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7CFA00D3028E3F49C769CEA1DF6BB91 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 4360270A3FCB6EA5692E08283DB70D45 /* RCTPerfMonitor.m */; }; + F7F10058C53376F570F69E312B05EA0A /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = C371588199B2592CEE9CC9B119AAA151 /* RCTPerformanceLogger.m */; }; + FAC03886AB578D221D95A4AD90229923 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FEF728C2968FEDAACDE40AF32D0677A2 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB39997EDAAE93CEFADF8C36159042AF /* RCTWebViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DE20080ECE77B4D767D749B0336514C4 /* RCTWebViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB5F2BA31D631B00F198E1C8BE0EB9E2 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = E3411E359B40E9D6EEBA4C6D3AED613F /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB86311D51F54FF1C94568B7B3878B98 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = E9E6914015E3F3C31BC3E3C600926671 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC3C1134CE37AE7CCA87B61B62A338FF /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 73F01EBE513733B99D604971DE49431E /* RCTMultipartStreamReader.m */; }; + FC7B2930C2D6AEC734334776A47D99B4 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F70264EDA2E707DA69D32BB5C70CC7 /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDAC0F03156F67201C76E8A5A35DAB85 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A668B3184EA3E295B1DF098E0CF548C /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE8EC0B56F45205A7D742DF299458174 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2859E336B26A809241508DB13B13FB6E /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 1A6B2B29BE703D7B818A5BA31C63CE5C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C6787D8BBC8846B565CE4282545F18; + remoteInfo = React; + }; + 1D603DE0866265B7C5419AFFAD947A75 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 652189E0CF99981374331B88A1C1E748; + remoteInfo = BVLinearGradient; + }; + 30B3105D6BB86B42D9AF7B0FE708D84E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = C0AA92AFE2DA0718E5E474B006C02A3C; + remoteInfo = yoga; + }; + 44E52B6595EA534184FB3546D854D42F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 01C6787D8BBC8846B565CE4282545F18; + remoteInfo = React; + }; + CB045180462AB777BAD9CC9F181CE04E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = C0AA92AFE2DA0718E5E474B006C02A3C; + remoteInfo = yoga; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0047008CF545F17EF2CC96E676D20E99 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; + 00774C06A35D0336289BC7DE1775D805 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; + 0105F7A11B2BC019C7BFFC009BABFB5B /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; + 013223DBB7AF63257FE50EE09BC92B22 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; + 01482791D20ABE6CA912827E61884EAC /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; + 01F109116D0DC0AC6F83F2AFCA18812D /* BVLinearGradient-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "BVLinearGradient-dummy.m"; sourceTree = ""; }; + 0364310F5DB019BCF0249D171D55D469 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; + 03E390E9798BE04BE5F475D4136C2DC0 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; + 0556474C35265A44587162FDD56FB821 /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; + 0630AC5D3771FB86C4057E25820D5E5E /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; + 064868B642950C771947040380F7427E /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; + 067BC631405E5DC7C5F348EE7938500B /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; + 06D8228181868F411B7D7578C2025BF6 /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; + 07D71AA051C6399C6E6D04AED9B106C8 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; + 07E6E7222094F670FDD8375D770AF3AB /* Pods-esteem-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-esteem-acknowledgements.markdown"; sourceTree = ""; }; + 0A4598792121340860A94502D52CF2C1 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; + 0AFC9C206BDF7DD29517DE7603B72DBA /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; + 0B6A3DE612FB3492E4B40D951FDE6909 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTExceptionsManager.h; sourceTree = ""; }; + 0BBC037FCCF4113A9988E0BA98E7C738 /* Pods-esteem-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-esteem-resources.sh"; sourceTree = ""; }; + 0C49F9843ED81EC53B23429191943A6C /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; + 0D9CBEAFC3200170D031BA17999B38E1 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; + 0DD7B6C5381D9F48B88FA097A9513917 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; + 0DE0A16575313221F1999BAB5E9BDBE6 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; + 0E84D8F69BF04F8C4B3EB22515EF47D0 /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; + 106523174C4EA206A1B7840D964EF661 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; + 106A9D25508A280E7CCE4DBF9F7120D3 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; + 11E9E6980DC98D709385275E0C98E195 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; + 11EF622674CD8DEB100BC5579A0DD382 /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; + 122DB8EA30BDD254DBAEDEB47BBC541E /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; + 12D2D71CBD7D5B62425A468C71DC742B /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; + 14528F848DC19F844F8353DD803397A0 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; + 156AF72E85F03A38FB4AF38EC437823F /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; + 16991F490F0E576CBEC168A35568D169 /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; + 16AC18AFDD4D5CA9C0E43E87A4BCB003 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; + 18439682C4C28CC0A15128CA9EAFC1BD /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; + 19064FA28C6F5AD802AE9A722EF7BD08 /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; + 1A48F72BE0267EE2ED6C54A64A0B6FCA /* libPods-esteem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-esteem.a"; path = "libPods-esteem.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1A668B3184EA3E295B1DF098E0CF548C /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; + 1ACB428CC4D05535622DCA6639FD1F42 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; + 1B18957D441E4A69EC52A27C2C654BE4 /* RCTTabBarItemManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItemManager.m; sourceTree = ""; }; + 1B2F0F598CFE2EAC167B80B1EAE6178F /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; + 1BB46F503E3EA2EC59B5DCDC7514462E /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; + 1C10EAF2984009197083E36230A21D68 /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; + 1C8DBE6323194E8891398F5CF6DD203B /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; + 1CB1DFCAC7226ABF38F80FEB497E3BEC /* yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = yoga.xcconfig; sourceTree = ""; }; + 1D99360DD85F6ACA318999581FB265A2 /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; + 1DC0F1B9238E823CDB9D113ACE3FE5F8 /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; + 1DDA49690787B0FB9B8DDF64B5901A85 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; + 1F0A5F8C8E36001557F16D23DEACFE58 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; + 1F46D72488CBA085DDDD8A516700777D /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; + 2007F18903DA74CB83BB958116C079E7 /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReact.a; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 2285F683405D960977E7054700E6C61F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 22F3474B627DB61C28B7A1E2697D2B6F /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; + 2339E3585B3C76D8B95BE95760D73768 /* RCTJSCErrorHandling.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJSCErrorHandling.mm; sourceTree = ""; }; + 256709A44E2AE2AC3C00DB5D02B99432 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; + 25C58427FB503B2605E95E018C660EA9 /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; + 26773EBE0712A47E8503689CDBDEA029 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; + 27C6D48004E5DD48B6AFFCA855B6CF0F /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; + 2859E336B26A809241508DB13B13FB6E /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; + 289442D63DA4B2467DF6120755902E51 /* yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "yoga-prefix.pch"; sourceTree = ""; }; + 28A3B4962AB988AD23D031BE57E2BD31 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; + 28A9B0BBF0AAA9897CACD20B8B9006E4 /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; + 295AFAA689AD527AC163481D95F25BD6 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; + 2A43239F6C9BE68207685E6D131AEDAF /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; + 2A78A70D518C40B9D5A7B5B382C086DA /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; + 2B1A17BF3F0FABA901D8AA07D0F1F8DF /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; + 2BA59EC191579E01477C6F268DB3C1A9 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; + 2C7DFC0774BCC6A9E6362EBC8B30B378 /* Pods-esteem-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-esteem-dummy.m"; sourceTree = ""; }; + 2D9F6698C10129EC6B104D5B249DB16E /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; + 2EF51843E4CC60DBD3A3BEB4F2D3E0EF /* React-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-prefix.pch"; sourceTree = ""; }; + 2FEA2CC1153B60A0A7A5DA3AE246BD7D /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; + 316ED924EE209B49CC1D2083E028A954 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; + 3247374C33578EFED73976A0D34761CA /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = React.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 327619EE40FA4338690EC94CDA4FC0C2 /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; + 32C559825C4E0E05EFC65FB9537C9341 /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; + 344A7B31A1A60F8F3204ABAD20DE11FF /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; + 34B13E1847F47A6B4EDA7DF5F78B4DC7 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; + 34C9AB281E5CB9014DACB78ABC24F76B /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; + 36980F82FD5E99609854B8AB23EFCFD4 /* RCTWKWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebView.h; sourceTree = ""; }; + 37BE4D4EF9189E3D5591A0995A6B58F6 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; + 391B736C37E9C11A563CDB18FC725339 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; + 3AAE2474B0020A3671C4F3ADFFE12A4D /* RCTTabBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarManager.m; sourceTree = ""; }; + 3AD5BF1C3CFFD22BD3995F2494B0C1FA /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; + 3AEE47CD41ED34F3A09F7BC24D9EB9A5 /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; + 3B7E00630673012E6CA215F36FA753BB /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; + 3C2A18CBAFB121761AC909A52FBAD8B5 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; + 3D0F39E5F719D37CC80E27DBBAB839B3 /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; + 3E9847A4938CB401CDB8902297A7AD4A /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; + 3F0AC7B9FE9CACBE9BC459C40D371C01 /* RCTNavigator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavigator.m; sourceTree = ""; }; + 3F438701E3FF31F71F8E32BF642F019B /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; + 3F5F54A5507FBAF1788329B1D9EBB179 /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; + 3FB2C9A4E6281C6CAF0D1F4559A4CC39 /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; + 427C7ADB485A339F9C1C6A636E9B8B13 /* RCTTabBarItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBarItem.m; sourceTree = ""; }; + 42B9203F09FFD8AEBEDDA1A36F93C97D /* RCTWKWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWKWebViewManager.h; sourceTree = ""; }; + 434F798AC03702617EBF8FA2BA5B4D07 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; + 4360270A3FCB6EA5692E08283DB70D45 /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; + 44EF3CE3934684D9813B7C97EEC0BDED /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; + 44F9EEC3D5CC88085130FAC40E37BEA5 /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; + 456FEAA2295BF42788ABB8DFFF69E847 /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; + 46B0535189BAA55D5F8AFBF55D711F1E /* RCTNavigator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavigator.h; sourceTree = ""; }; + 46B1BD9909977C500764DF2303C20D2F /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; + 47E82888B6A070E474E126429CBAF6F0 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; + 47E9E702EA5AD443BE80AC1D2660F893 /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; + 4854A4B9559B3897028663AC2BB70B90 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; + 48E919E51C285368B3175F0FCAD391D1 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; + 4A960E6092E6449B8A7FD1C38503F48C /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; + 4ADEE59222FFB1C333E92193ABEFCE54 /* yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "yoga-dummy.m"; sourceTree = ""; }; + 4AE0B0A1AB712975E98608F8DA1A6E30 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; + 4B0E30D6423BBF6F1F3D4947845C2958 /* BVLinearGradient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradient.m; path = BVLinearGradient/BVLinearGradient.m; sourceTree = ""; }; + 4B342290B30392C882B32FA21A654468 /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; + 4F6E5C7CA227C00CD2631521348EBF8F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 4F8C49836B5E6DFCEE455D24AF9EE85A /* RCTNavItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavItem.h; sourceTree = ""; }; + 5084C625C33834FCE30F9886A6320AC5 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; + 51BE4B2115DA06032F182DFE8C0F497B /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; + 51DA9BDCF70E293555C76CB355FB44EE /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; + 5479AE8B9359A5777A1544A21703E05E /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; + 562C273185EFD614111C6ABEB315313B /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; + 562F0F6FCEB5DD663BAF8799AC44769C /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; + 568A15D2BBF362263E769457DCA93BF3 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; + 5767C3692B72BA779A7A103680D4F494 /* RCTNavigatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavigatorManager.m; sourceTree = ""; }; + 57C392BE6703B65FD841615AA374B94A /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; + 587A2829E6BD40F0D6176AEEEE6448BF /* Pods-esteem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-esteem.release.xcconfig"; sourceTree = ""; }; + 58F70264EDA2E707DA69D32BB5C70CC7 /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; + 59929D7B4C058D6155E96F047267AE0B /* RCTWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebViewManager.m; sourceTree = ""; }; + 5B096E2047C6C0D9E70B0B6CA0A133D7 /* BVLinearGradient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradient.h; path = BVLinearGradient/BVLinearGradient.h; sourceTree = ""; }; + 5D6EDAA4FA5A2007525C91BEDC196678 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; + 5DD2ADD36FCE6F72052957D550B15054 /* Pods-esteem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-esteem.debug.xcconfig"; sourceTree = ""; }; + 5E604F6F2AEF1437B7B715EDAE71EFBE /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; + 5F52F445223F2016FEB5FCD5ED8FCF1E /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; + 6035FB961061136941229AE74A3B5D05 /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; + 605D39C80D3BB9674E9ECC10ADB9C7BF /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; + 60AEC2B06390AF68529A0C53530E2BFA /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; + 618C73B2E7C75DC4BAA7D49F61322D4B /* RCTNavItemManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavItemManager.h; sourceTree = ""; }; + 61A67F52DBDE572E81A2D2F852F4A5BE /* libBVLinearGradient.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libBVLinearGradient.a; path = libBVLinearGradient.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 64030E91645F82952357BD77B022C784 /* libyoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libyoga.a; path = libyoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 64346D14B128B6E4EE49D42B0B779C11 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; + 6448D9829775E739C0F17CFA2212BB0F /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; + 66B4CCD3DD35600A198292CDC3E89A32 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; + 66E6DE6D4F2D40AF8894B46854EC9A47 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; + 679BA4707D4A9222352F4764E2263373 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; + 67C1AA4F5BDD62C1A59931F9318195AB /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; + 6812B66297A74D63B2A97B1075649167 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; + 6858E4675AA20F1A270EFC511488B860 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; + 6AC72D13F63B00F7461F6C93C7A3078C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 6AE551C7BF66B87574EF0F4C698AF8D6 /* BVLinearGradientLayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradientLayer.h; path = BVLinearGradient/BVLinearGradientLayer.h; sourceTree = ""; }; + 6AEB671192D4121B1D03EBD705DA9051 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; + 6B225FDACD43B2D4F08B9F8F3B238A2A /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; + 6BD5A8E8B8A503CAB4553DBF336A623A /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; + 6E4D02EC66C7AB23BF6404A8D328052A /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; + 70DFDD486BC9A424ABD12E92AB3ACD40 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; + 71C67140A7DFC000965F50C2E0BF9FE4 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; + 722E40C614C1BB65B5C72B7933C2DAD0 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; + 73ACF5B7B0631CE0AE72E4C7C127A672 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; + 73F01EBE513733B99D604971DE49431E /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; + 74B0CADEEC15EE34388D2E56E4A3CE3A /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; + 753546CD6B6ACE26BC74025936C4C006 /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; + 76D1E7F1AF0A2F496963F8633A7A26D8 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; + 770C82846F9FDE4C8C873F510FBF6163 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; + 77F3E49EBC2A87F8B087420DFC19F3A9 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; + 78F91C3792C5E87BF55BACF1382D850E /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; + 78FC48092A0617496FF799402FAF7169 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; + 79591E1C5D8C542C9065A41240F64A71 /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; + 79E8696009CE894EDCE884337C3F7634 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + 7B850B032B16942ED7E069BA0A70BDA9 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; + 7DA4BB77B5B4FFCD73FDDBED01D959F6 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; + 7E16A4767BCEF01A5D958748812C48F8 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; + 7E18482D32B8CA623BF90970125407EB /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; + 7E7219952D5D64A94677F145DFDF2AAF /* BVLinearGradient.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = BVLinearGradient.xcconfig; sourceTree = ""; }; + 7E909C6E991A9B7A3BC6306728068FCF /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; + 7F7D5BCB8696A7A589867A052132600F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 803B6A7EE0EF1F83242ED8C10F0E50BE /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; + 80A2A15F85D0BD6CE65BF7E0B63E41B7 /* yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = yoga.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8172EF56D50531CA96599243361160F6 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; + 81926DC6F60219C2F5102F65FDF8E25D /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; + 820DAE2B543A20E7D30BEBB6C111FD38 /* Pods-esteem-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-esteem-acknowledgements.plist"; sourceTree = ""; }; + 8272DCBDF85DC70DB8B4BF6F5AC8AFB3 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; + 83175E0E4963F7129BD5A81ABCDCFEA3 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; + 831AB7B7A3CA4D0FD7564E6931F2D3A8 /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; + 83B803EA9E1801490845EF6B4E674F08 /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; + 85A11A52001B07F779E6F3E85DE49E10 /* RCTJSCSamplingProfiler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSCSamplingProfiler.m; sourceTree = ""; }; + 87C5CD6486D724D471A9DF8CBF6C3259 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; + 8921F6704058CD3143ED5D438CAF017D /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; + 8AC8CA3071C38B359580546B25D826E7 /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; + 8B8FC0AD524EC76A7B641FDD4EFE1FCE /* RCTJSCErrorHandling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSCErrorHandling.h; sourceTree = ""; }; + 8C356D3BE0451D79DC4A557512E362E5 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; + 8C8BB1A277DE5B3861E9A2461810B3DB /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPlatform.h; sourceTree = ""; }; + 8CEC8D62F3717ABEE4DB9ECC445D1CDE /* RCTTabBarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItem.h; sourceTree = ""; }; + 8D2F29B622028B2A76AAE5D8A4C3453F /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; + 8E3579F3924FF3BB4AFE5AF6161676E2 /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; + 8E50921ED27F7B7991C5E7AECC5CFB5E /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; + 8EA14061147BAA725F92EC22605C0D7A /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; + 8F9CF27723A410810F629B5AEE3F2244 /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; + 90B38F2A3F43314B5D6A5203505A492D /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; + 90D194973BE0708A147B404F6E108A04 /* RCTPlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPlatform.m; sourceTree = ""; }; + 90D844AF959C33A85E1C0ECD2FF5FC40 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; + 91C06E2136F66692A251262178C15E2F /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; + 929BB20AC5A68B6B0E14C02BD8C4AD02 /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 940678DDB15EADF9561AE83BBBC6A736 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; + 94336249A8ED5A467780EE2ECC861BBD /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; + 9625E6A8DD3B1C626958B2DA9AB9007C /* RCTWebView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebView.h; sourceTree = ""; }; + 966D2ACAC84B913F4987E51DD2F95E7A /* RCTWKWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebView.m; sourceTree = ""; }; + 96A63CAFA73F9AD7E2C2A87EEEB47F5B /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; + 96E81DFB027ADCE5162A815CDB1782AE /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; + 972A03254B88070B4B665CB3EA2030FF /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; + 97684A86BBAEE51342A85CF3D0D4C327 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; + 97CCB8000CA727BB060422605FBCE7A6 /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; + 9965D1C9F48ED46FA9C3884A53A95510 /* RCTNavigatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNavigatorManager.h; sourceTree = ""; }; + 9ACA753FDF36FCE43E79E75A8636F9AC /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; + 9B651D54F6D940D63C84660E14DDC18B /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; + 9C26A8BB662CDAEB4D153632C2231641 /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; + 9E2EF7EFDB865CE15546F03787B48528 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; + 9E7FB6DD741F6B6833CC20DFAA8D98E0 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; + 9E8E96BD5BF1BADBC68F628E92778E5B /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; + A03FA2480DE3FCB879A3D5BB8DEA8C34 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; + A1FC18FD1BF8D5E7F05CDACDFF8BAF7C /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; + A21C93D6713E8D40CC0F4E609D3505A7 /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; + A2729169F4F9844EE1F49681B76B0FFF /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; + A3397A7E9B1F51332D43F60B23615D85 /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; + A3A11E023EF3CD6DA165AB5EC8F4D93D /* BVLinearGradientManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BVLinearGradientManager.h; path = BVLinearGradient/BVLinearGradientManager.h; sourceTree = ""; }; + A4224C245F377072F6D64B40B369BB84 /* YGFloatOptional.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGFloatOptional.cpp; path = yoga/YGFloatOptional.cpp; sourceTree = ""; }; + A48E5A1CD5B232DCBDB63A221D58D60A /* RCTJSCSamplingProfiler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSCSamplingProfiler.h; sourceTree = ""; }; + A572B8DA7D421CF1D51D960B06A09C3C /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; + A5B66D935A28E07160CAFFC4516E8526 /* RCTNavItemManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavItemManager.m; sourceTree = ""; }; + A73C4E59991B2B803E9E1E1888F78C60 /* RCTExceptionsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTExceptionsManager.m; sourceTree = ""; }; + A7E40D38A8EAD7D4A4221D50A77D9F8C /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; + A834A9C5A2701DBD576AB8B7ADCD4A4B /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; + AA1FF5FA45F1DDD56AAB687871885012 /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; + AAD0FB1693B43FBA8FAF943FA8B65232 /* RCTNavItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNavItem.m; sourceTree = ""; }; + AC7862503BBC10F338B37C9777205373 /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; + ACFAACBD208EB80A8CE770735527B36E /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; + ADCD7342624BBA2CB4CC07F79F5EB39D /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; + AE08EABDA386A6E5D84BE41484B8B438 /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; + AE18E608670BB53BEED1214FEF31CA10 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; + AED744457819235F8D9D2E9E83AC1028 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; + AF6DAA51949C6BD277E83FEE7474BE75 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; + B0ECD566C2FCF19915A21493A43361C5 /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; + B1A97B93020BF92BE36A20C53AC48715 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; + B280748E52B511CB4802C4051911FAB3 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; + B47948524A25CFA21E69F6917E055F85 /* Pods-esteem-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-esteem-frameworks.sh"; sourceTree = ""; }; + B5691328BBD59A64C840CD28D3F2AD0C /* RCTWebView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWebView.m; sourceTree = ""; }; + B6F832F04994C72C95102274C90DE4EA /* RCTWKWebViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWKWebViewManager.m; sourceTree = ""; }; + B712E0CA50E02A1C2A04F74C49B24B90 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; + B78C808C36FF832C931286DAF6D4E8B8 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; + B7C275F32503BEA6A5CCD36C74CC29C6 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; + B969A47D966D3B57E63D9034134A6A2A /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; + B9E5C7E13AC06CAD1F94FCE4684AEB9C /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; + BB053FB4A0220EFDE14744ED5D6C977C /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; + BCF4C7B1F0714CC7ACC8DF0E4B92A281 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; + BDB6A7D9707596155F56A1931D118AF7 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; + BE3E31D64D102D9211F162E12E267E79 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; + BE74E72EE49521B414064F2B4B9E1E13 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; + BEE9F4A9D08CFB710EEFE51EF02E55C0 /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; + C162EC09F42EADC16FB10E2227E5F311 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; + C27676FDAE5E4C743056A4435012BE71 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; + C371588199B2592CEE9CC9B119AAA151 /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; + C5050537A5B0525E95518E78424C3D8B /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; + C553BBACFDF3919C914FFB1689026004 /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; + C5795DADBA43535A4EC49F7923032EA5 /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; + C6AD99010E39216D0A60ADE4C6AB89D9 /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; + C776D0B30AF1DB1BAD50559F97798037 /* BVLinearGradient-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "BVLinearGradient-prefix.pch"; sourceTree = ""; }; + C7DD8374FFEAB8E8BCD4DB2AACF7D036 /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; + C91BFFE2A7C9E8275D5E51639BB1B3EE /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; + C97AD280C4AF237203D6D0F3D06F8501 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; + CA286D04AC74BF3DE38479A7183D964A /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; + CA6114E05C30BAAA573EDF9267F11DFE /* BVLinearGradientLayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradientLayer.m; path = BVLinearGradient/BVLinearGradientLayer.m; sourceTree = ""; }; + CB1C298409A8D5FBD2B4E46E25CAF558 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; + CC56C0652E6CB22E038AD17C3CFE3450 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; + CD40EAD0B38B034CB153A4BBE53B753D /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; + CDC97938D03D9A8C1BD680378EF7CA91 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; + CEFA9C6F6B2787E678D14B3C3EA54882 /* RCTTabBar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTabBar.m; sourceTree = ""; }; + CFC236B8E3D230E378E730715D379295 /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; + CFD02A75ACCBFFFFD52F6F00888FF813 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; + CFF46810E1D076A8779087DE61D44F92 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; + D006B06FBC56DA5E98B829C64DE07029 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; + D0E347452DC32485A49B9868349E4376 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; + D11F13D3D0DFCFC7A702DF0551542BBA /* RCTTabBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarManager.h; sourceTree = ""; }; + D1D956CC0D7E331E6FA5B520B1F93EA0 /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; + D2002E71CF1EB9DBED4D435CC6B80350 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; + D3AF80CA3BB7C375A9407DFA78E568B6 /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; + D3C680DF1A04C957B7C4D8D5226C3970 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; + D43961128D76062AA9D8FFC42599A49C /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; + D4C1AA3F0132806D6D2E8C862807756A /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; + D560FC050DBCBDACDFF8151CCC00D0DD /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; + D5FFA43791F2A50714AD500B152F8F1F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + D662E0069E5F87B5F4A7008CB97793F8 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; + D88E037D35BED4A5D692FAA7E31476C4 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; + DA7D1A63EDCEF56B0FB56361B2C2AB16 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; + DBB8F03214BC5881193918D11AA7967E /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; + DC743CB2AB29AFCD8501363308783589 /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; + DCEFB75F6BCD92867BDC2D2CAC5ED147 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; + DE20080ECE77B4D767D749B0336514C4 /* RCTWebViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWebViewManager.h; sourceTree = ""; }; + DF0A6E6F66B4B37D627FC750F962D30D /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; + E13C7A14B418D1485C479369552F7557 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; + E1BAFFFEDF7904D92200D72DF5F8C8F7 /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; + E204CB7F8FDBF7EAF90900A4EAA2E236 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; + E3411E359B40E9D6EEBA4C6D3AED613F /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; + E50F1CB8B612F5C044F1769A3B692DFB /* RCTTabBarItemManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBarItemManager.h; sourceTree = ""; }; + E510E144E4CE14F7FD061EAAB391CDA8 /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; + E7370097D471CC15458C3A94059050C9 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; + E8F27B6C0D713F424433D250CF745E20 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; + E9E6914015E3F3C31BC3E3C600926671 /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; + EA6272C3AC96FB0C5D439C79BC5C710B /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; + EA657817720674CCE4998235B050EF77 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; + EB27C95E21D2737075698EA4F753286A /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; + ECDCCD4A20B8351B3D19ADE8271F522F /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; + EDA1B31EF1A1D9453D1628532BB4A791 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; + EDE369E875060CFB3C3A8B25720BDEB0 /* BVLinearGradient.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = BVLinearGradient.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + EE7CFC7764D59E2F7133F4BA261EC268 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; + EEA3D357CCC037DBFCFA134EF775F032 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; + EF61EF8EB6D88E27218306C91810BDC0 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; + F1B955D2593AF20D05F5A85524432611 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; + F35BC64ACB3A968A2EB91D4AA358BD23 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; + F5C913789E115A6CE5F9BB97F7C1A113 /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; + F83B67E89F0B6890718E60C252443575 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; + F98448F30765ECFC66B992045A7A10D3 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; + FA1938105C7149E6967D5B19C5C7E951 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; + FBE1FD038B2A8D8CCCB009B42035965D /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; + FC7C6298D8DE0793944AFCD4D3F41957 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; + FD1D439A98CDC436294084F869B80A80 /* RCTTabBar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTabBar.h; sourceTree = ""; }; + FD26DD072BCE6222C4B0562405739848 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; + FD5FDCD87152455E83B8C8F8329E46E5 /* BVLinearGradientManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BVLinearGradientManager.m; path = BVLinearGradient/BVLinearGradientManager.m; sourceTree = ""; }; + FE0BA80ECBD3CF3A83093AF7F4A1AE9B /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; + FE1030C04A8704F5081558F9D31F98BC /* React-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-dummy.m"; sourceTree = ""; }; + FE1E25BB33E0CEA0DEE0EEA26D5636E9 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; + FE4ECAA054A8090771563538445D9194 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; + FEA5A5410F0F0C882DA3A44F0C88B921 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; + FEF728C2968FEDAACDE40AF32D0677A2 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 22CDB6F100B66A6705FB2DA48F2C1D7A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 57D777F2639C42D338DACC055657F457 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 880AEEDA9A37028AC56C3CDD767EA700 /* JavaScriptCore.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F663816BB7E9453AB9DE79371153A2BE /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 773F358393CC5EBABA2436789BC1E595 /* Foundation.framework in Frameworks */, + 99F3E5A6D45620625F3D8747E457F1DA /* QuartzCore.framework in Frameworks */, + 35929B266035B640CDA36935CC0A1A02 /* UIKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F7E527123C70A7293BCC009D88556B6E /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 040C5E9124BED1BF54D0A1B918313C7A /* Core */ = { + isa = PBXGroup; + children = ( + 162BA6B3E17C56ABDEBC652E11945E17 /* Base */, + 41564F2A436BA06589BAE91273074E0B /* Modules */, + D1681247C2EF0C0918D5F37BEACEFC22 /* Profiler */, + 9462F8A0DBA87ABF3B4D4C7B5B8CE77A /* UIUtils */, + 33947AE3C209BC44F1D6BE94A445F94A /* Views */, + ); + name = Core; + sourceTree = ""; + }; + 0F122215B71B1739839987CCB92B122F /* SafeAreaView */ = { + isa = PBXGroup; + children = ( + 58F70264EDA2E707DA69D32BB5C70CC7 /* RCTSafeAreaShadowView.h */, + E7370097D471CC15458C3A94059050C9 /* RCTSafeAreaShadowView.m */, + E1BAFFFEDF7904D92200D72DF5F8C8F7 /* RCTSafeAreaView.h */, + 156AF72E85F03A38FB4AF38EC437823F /* RCTSafeAreaView.m */, + 9C26A8BB662CDAEB4D153632C2231641 /* RCTSafeAreaViewLocalData.h */, + C5795DADBA43535A4EC49F7923032EA5 /* RCTSafeAreaViewLocalData.m */, + 27C6D48004E5DD48B6AFFCA855B6CF0F /* RCTSafeAreaViewManager.h */, + D560FC050DBCBDACDFF8151CCC00D0DD /* RCTSafeAreaViewManager.m */, + ); + name = SafeAreaView; + path = SafeAreaView; + sourceTree = ""; + }; + 1051922F66B081CC9C6409E8F0AA123F /* Support Files */ = { + isa = PBXGroup; + children = ( + B969A47D966D3B57E63D9034134A6A2A /* React.xcconfig */, + FE1030C04A8704F5081558F9D31F98BC /* React-dummy.m */, + 2EF51843E4CC60DBD3A3BEB4F2D3E0EF /* React-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/React"; + sourceTree = ""; + }; + 14B8B9B15ECBE87983FF987239AB2D7B /* Frameworks */ = { + isa = PBXGroup; + children = ( + C4A3E8C1DD4149CE9A923126A207F47C /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + 162BA6B3E17C56ABDEBC652E11945E17 /* Base */ = { + isa = PBXGroup; + children = ( + C7DD8374FFEAB8E8BCD4DB2AACF7D036 /* RCTAssert.h */, + 929BB20AC5A68B6B0E14C02BD8C4AD02 /* RCTAssert.m */, + EDA1B31EF1A1D9453D1628532BB4A791 /* RCTBridge.h */, + 5084C625C33834FCE30F9886A6320AC5 /* RCTBridge.m */, + BEE9F4A9D08CFB710EEFE51EF02E55C0 /* RCTBridge+Private.h */, + 562F0F6FCEB5DD663BAF8799AC44769C /* RCTBridgeDelegate.h */, + 51BE4B2115DA06032F182DFE8C0F497B /* RCTBridgeMethod.h */, + 7E909C6E991A9B7A3BC6306728068FCF /* RCTBridgeModule.h */, + 16991F490F0E576CBEC168A35568D169 /* RCTBundleURLProvider.h */, + 00774C06A35D0336289BC7DE1775D805 /* RCTBundleURLProvider.m */, + 91C06E2136F66692A251262178C15E2F /* RCTConvert.h */, + 67C1AA4F5BDD62C1A59931F9318195AB /* RCTConvert.m */, + 1BB46F503E3EA2EC59B5DCDC7514462E /* RCTCxxConvert.h */, + 1DC0F1B9238E823CDB9D113ACE3FE5F8 /* RCTCxxConvert.m */, + BE74E72EE49521B414064F2B4B9E1E13 /* RCTDefines.h */, + 71C67140A7DFC000965F50C2E0BF9FE4 /* RCTDisplayLink.h */, + 96E81DFB027ADCE5162A815CDB1782AE /* RCTDisplayLink.m */, + 940678DDB15EADF9561AE83BBBC6A736 /* RCTErrorCustomizer.h */, + 064868B642950C771947040380F7427E /* RCTErrorInfo.h */, + 03E390E9798BE04BE5F475D4136C2DC0 /* RCTErrorInfo.m */, + 70DFDD486BC9A424ABD12E92AB3ACD40 /* RCTEventDispatcher.h */, + B712E0CA50E02A1C2A04F74C49B24B90 /* RCTEventDispatcher.m */, + C97AD280C4AF237203D6D0F3D06F8501 /* RCTFrameUpdate.h */, + F5C913789E115A6CE5F9BB97F7C1A113 /* RCTFrameUpdate.m */, + CFD02A75ACCBFFFFD52F6F00888FF813 /* RCTImageSource.h */, + 8172EF56D50531CA96599243361160F6 /* RCTImageSource.m */, + 3B7E00630673012E6CA215F36FA753BB /* RCTInvalidating.h */, + 97CCB8000CA727BB060422605FBCE7A6 /* RCTJavaScriptExecutor.h */, + EA657817720674CCE4998235B050EF77 /* RCTJavaScriptLoader.h */, + D1D956CC0D7E331E6FA5B520B1F93EA0 /* RCTJavaScriptLoader.mm */, + 8B8FC0AD524EC76A7B641FDD4EFE1FCE /* RCTJSCErrorHandling.h */, + 2339E3585B3C76D8B95BE95760D73768 /* RCTJSCErrorHandling.mm */, + EF61EF8EB6D88E27218306C91810BDC0 /* RCTJSStackFrame.h */, + 344A7B31A1A60F8F3204ABAD20DE11FF /* RCTJSStackFrame.m */, + 8D2F29B622028B2A76AAE5D8A4C3453F /* RCTKeyCommands.h */, + 6AEB671192D4121B1D03EBD705DA9051 /* RCTKeyCommands.m */, + ADCD7342624BBA2CB4CC07F79F5EB39D /* RCTLog.h */, + 11EF622674CD8DEB100BC5579A0DD382 /* RCTLog.mm */, + 106523174C4EA206A1B7840D964EF661 /* RCTManagedPointer.h */, + D006B06FBC56DA5E98B829C64DE07029 /* RCTManagedPointer.mm */, + 47E9E702EA5AD443BE80AC1D2660F893 /* RCTModuleData.h */, + 6858E4675AA20F1A270EFC511488B860 /* RCTModuleData.mm */, + 47E82888B6A070E474E126429CBAF6F0 /* RCTModuleMethod.h */, + B280748E52B511CB4802C4051911FAB3 /* RCTModuleMethod.mm */, + 831AB7B7A3CA4D0FD7564E6931F2D3A8 /* RCTMultipartDataTask.h */, + 605D39C80D3BB9674E9ECC10ADB9C7BF /* RCTMultipartDataTask.m */, + E9E6914015E3F3C31BC3E3C600926671 /* RCTMultipartStreamReader.h */, + 73F01EBE513733B99D604971DE49431E /* RCTMultipartStreamReader.m */, + AF6DAA51949C6BD277E83FEE7474BE75 /* RCTNullability.h */, + 46B1BD9909977C500764DF2303C20D2F /* RCTParserUtils.h */, + 753546CD6B6ACE26BC74025936C4C006 /* RCTParserUtils.m */, + A1FC18FD1BF8D5E7F05CDACDFF8BAF7C /* RCTPerformanceLogger.h */, + C371588199B2592CEE9CC9B119AAA151 /* RCTPerformanceLogger.m */, + 8C8BB1A277DE5B3861E9A2461810B3DB /* RCTPlatform.h */, + 90D194973BE0708A147B404F6E108A04 /* RCTPlatform.m */, + 295AFAA689AD527AC163481D95F25BD6 /* RCTReloadCommand.h */, + 972A03254B88070B4B665CB3EA2030FF /* RCTReloadCommand.m */, + 34B13E1847F47A6B4EDA7DF5F78B4DC7 /* RCTRootContentView.h */, + 01482791D20ABE6CA912827E61884EAC /* RCTRootContentView.m */, + 0630AC5D3771FB86C4057E25820D5E5E /* RCTRootView.h */, + 97684A86BBAEE51342A85CF3D0D4C327 /* RCTRootView.m */, + 2859E336B26A809241508DB13B13FB6E /* RCTRootViewDelegate.h */, + 7E16A4767BCEF01A5D958748812C48F8 /* RCTRootViewInternal.h */, + 803B6A7EE0EF1F83242ED8C10F0E50BE /* RCTTouchEvent.h */, + BDB6A7D9707596155F56A1931D118AF7 /* RCTTouchEvent.m */, + 0C49F9843ED81EC53B23429191943A6C /* RCTTouchHandler.h */, + A2729169F4F9844EE1F49681B76B0FFF /* RCTTouchHandler.m */, + 4854A4B9559B3897028663AC2BB70B90 /* RCTURLRequestDelegate.h */, + FBE1FD038B2A8D8CCCB009B42035965D /* RCTURLRequestHandler.h */, + C553BBACFDF3919C914FFB1689026004 /* RCTUtils.h */, + AA1FF5FA45F1DDD56AAB687871885012 /* RCTUtils.m */, + AE08EABDA386A6E5D84BE41484B8B438 /* RCTVersion.h */, + FEA5A5410F0F0C882DA3A44F0C88B921 /* RCTVersion.m */, + 8C2646E00B78C4C65D86F9F98F4E3BD2 /* Surface */, + ); + name = Base; + path = React/Base; + sourceTree = ""; + }; + 19DFEBEF2A2A7421A139A54B12145A54 /* Pod */ = { + isa = PBXGroup; + children = ( + 80A2A15F85D0BD6CE65BF7E0B63E41B7 /* yoga.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + 33947AE3C209BC44F1D6BE94A445F94A /* Views */ = { + isa = PBXGroup; + children = ( + C162EC09F42EADC16FB10E2227E5F311 /* RCTActivityIndicatorView.h */, + 391B736C37E9C11A563CDB18FC725339 /* RCTActivityIndicatorView.m */, + 7DA4BB77B5B4FFCD73FDDBED01D959F6 /* RCTActivityIndicatorViewManager.h */, + D2002E71CF1EB9DBED4D435CC6B80350 /* RCTActivityIndicatorViewManager.m */, + 74B0CADEEC15EE34388D2E56E4A3CE3A /* RCTAnimationType.h */, + 3F5F54A5507FBAF1788329B1D9EBB179 /* RCTAutoInsetsProtocol.h */, + 06D8228181868F411B7D7578C2025BF6 /* RCTBorderDrawing.h */, + EA6272C3AC96FB0C5D439C79BC5C710B /* RCTBorderDrawing.m */, + B0ECD566C2FCF19915A21493A43361C5 /* RCTBorderStyle.h */, + 8C356D3BE0451D79DC4A557512E362E5 /* RCTComponent.h */, + 4A960E6092E6449B8A7FD1C38503F48C /* RCTComponentData.h */, + 434F798AC03702617EBF8FA2BA5B4D07 /* RCTComponentData.m */, + 013223DBB7AF63257FE50EE09BC92B22 /* RCTConvert+CoreLocation.h */, + DF0A6E6F66B4B37D627FC750F962D30D /* RCTConvert+CoreLocation.m */, + 0364310F5DB019BCF0249D171D55D469 /* RCTConvert+Transform.h */, + CC56C0652E6CB22E038AD17C3CFE3450 /* RCTConvert+Transform.m */, + A21C93D6713E8D40CC0F4E609D3505A7 /* RCTDatePicker.h */, + 90D844AF959C33A85E1C0ECD2FF5FC40 /* RCTDatePicker.m */, + 25C58427FB503B2605E95E018C660EA9 /* RCTDatePickerManager.h */, + ACFAACBD208EB80A8CE770735527B36E /* RCTDatePickerManager.m */, + AC7862503BBC10F338B37C9777205373 /* RCTFont.h */, + D662E0069E5F87B5F4A7008CB97793F8 /* RCTFont.mm */, + 3AEE47CD41ED34F3A09F7BC24D9EB9A5 /* RCTLayout.h */, + 562C273185EFD614111C6ABEB315313B /* RCTLayout.m */, + 9E7FB6DD741F6B6833CC20DFAA8D98E0 /* RCTMaskedView.h */, + 8272DCBDF85DC70DB8B4BF6F5AC8AFB3 /* RCTMaskedView.m */, + 83B803EA9E1801490845EF6B4E674F08 /* RCTMaskedViewManager.h */, + 1B2F0F598CFE2EAC167B80B1EAE6178F /* RCTMaskedViewManager.m */, + 2BA59EC191579E01477C6F268DB3C1A9 /* RCTModalHostView.h */, + F98448F30765ECFC66B992045A7A10D3 /* RCTModalHostView.m */, + 6B225FDACD43B2D4F08B9F8F3B238A2A /* RCTModalHostViewController.h */, + 456FEAA2295BF42788ABB8DFFF69E847 /* RCTModalHostViewController.m */, + 07D71AA051C6399C6E6D04AED9B106C8 /* RCTModalHostViewManager.h */, + 4B342290B30392C882B32FA21A654468 /* RCTModalHostViewManager.m */, + FE0BA80ECBD3CF3A83093AF7F4A1AE9B /* RCTModalManager.h */, + CD40EAD0B38B034CB153A4BBE53B753D /* RCTModalManager.m */, + 46B0535189BAA55D5F8AFBF55D711F1E /* RCTNavigator.h */, + 3F0AC7B9FE9CACBE9BC459C40D371C01 /* RCTNavigator.m */, + 9965D1C9F48ED46FA9C3884A53A95510 /* RCTNavigatorManager.h */, + 5767C3692B72BA779A7A103680D4F494 /* RCTNavigatorManager.m */, + 4F8C49836B5E6DFCEE455D24AF9EE85A /* RCTNavItem.h */, + AAD0FB1693B43FBA8FAF943FA8B65232 /* RCTNavItem.m */, + 618C73B2E7C75DC4BAA7D49F61322D4B /* RCTNavItemManager.h */, + A5B66D935A28E07160CAFFC4516E8526 /* RCTNavItemManager.m */, + AED744457819235F8D9D2E9E83AC1028 /* RCTPicker.h */, + 7B850B032B16942ED7E069BA0A70BDA9 /* RCTPicker.m */, + 34C9AB281E5CB9014DACB78ABC24F76B /* RCTPickerManager.h */, + F1B955D2593AF20D05F5A85524432611 /* RCTPickerManager.m */, + A834A9C5A2701DBD576AB8B7ADCD4A4B /* RCTPointerEvents.h */, + EEA3D357CCC037DBFCFA134EF775F032 /* RCTProgressViewManager.h */, + 0D9CBEAFC3200170D031BA17999B38E1 /* RCTProgressViewManager.m */, + C27676FDAE5E4C743056A4435012BE71 /* RCTRefreshControl.h */, + 83175E0E4963F7129BD5A81ABCDCFEA3 /* RCTRefreshControl.m */, + 16AC18AFDD4D5CA9C0E43E87A4BCB003 /* RCTRefreshControlManager.h */, + 770C82846F9FDE4C8C873F510FBF6163 /* RCTRefreshControlManager.m */, + CA286D04AC74BF3DE38479A7183D964A /* RCTRootShadowView.h */, + F83B67E89F0B6890718E60C252443575 /* RCTRootShadowView.m */, + 8EA14061147BAA725F92EC22605C0D7A /* RCTSegmentedControl.h */, + BCF4C7B1F0714CC7ACC8DF0E4B92A281 /* RCTSegmentedControl.m */, + 1ACB428CC4D05535622DCA6639FD1F42 /* RCTSegmentedControlManager.h */, + D3C680DF1A04C957B7C4D8D5226C3970 /* RCTSegmentedControlManager.m */, + ECDCCD4A20B8351B3D19ADE8271F522F /* RCTShadowView.h */, + CDC97938D03D9A8C1BD680378EF7CA91 /* RCTShadowView.m */, + 0DE0A16575313221F1999BAB5E9BDBE6 /* RCTShadowView+Internal.h */, + 3FB2C9A4E6281C6CAF0D1F4559A4CC39 /* RCTShadowView+Internal.m */, + 79591E1C5D8C542C9065A41240F64A71 /* RCTShadowView+Layout.h */, + 26773EBE0712A47E8503689CDBDEA029 /* RCTShadowView+Layout.m */, + E8F27B6C0D713F424433D250CF745E20 /* RCTSlider.h */, + E204CB7F8FDBF7EAF90900A4EAA2E236 /* RCTSlider.m */, + DC743CB2AB29AFCD8501363308783589 /* RCTSliderManager.h */, + 37BE4D4EF9189E3D5591A0995A6B58F6 /* RCTSliderManager.m */, + 1F46D72488CBA085DDDD8A516700777D /* RCTSwitch.h */, + FC7C6298D8DE0793944AFCD4D3F41957 /* RCTSwitch.m */, + A3397A7E9B1F51332D43F60B23615D85 /* RCTSwitchManager.h */, + 9E2EF7EFDB865CE15546F03787B48528 /* RCTSwitchManager.m */, + FD1D439A98CDC436294084F869B80A80 /* RCTTabBar.h */, + CEFA9C6F6B2787E678D14B3C3EA54882 /* RCTTabBar.m */, + 8CEC8D62F3717ABEE4DB9ECC445D1CDE /* RCTTabBarItem.h */, + 427C7ADB485A339F9C1C6A636E9B8B13 /* RCTTabBarItem.m */, + E50F1CB8B612F5C044F1769A3B692DFB /* RCTTabBarItemManager.h */, + 1B18957D441E4A69EC52A27C2C654BE4 /* RCTTabBarItemManager.m */, + D11F13D3D0DFCFC7A702DF0551542BBA /* RCTTabBarManager.h */, + 3AAE2474B0020A3671C4F3ADFFE12A4D /* RCTTabBarManager.m */, + 8921F6704058CD3143ED5D438CAF017D /* RCTTextDecorationLineType.h */, + 9ACA753FDF36FCE43E79E75A8636F9AC /* RCTView.h */, + 0DD7B6C5381D9F48B88FA097A9513917 /* RCTView.m */, + 568A15D2BBF362263E769457DCA93BF3 /* RCTViewManager.h */, + E13C7A14B418D1485C479369552F7557 /* RCTViewManager.m */, + 9625E6A8DD3B1C626958B2DA9AB9007C /* RCTWebView.h */, + B5691328BBD59A64C840CD28D3F2AD0C /* RCTWebView.m */, + DE20080ECE77B4D767D749B0336514C4 /* RCTWebViewManager.h */, + 59929D7B4C058D6155E96F047267AE0B /* RCTWebViewManager.m */, + 36980F82FD5E99609854B8AB23EFCFD4 /* RCTWKWebView.h */, + 966D2ACAC84B913F4987E51DD2F95E7A /* RCTWKWebView.m */, + 42B9203F09FFD8AEBEDDA1A36F93C97D /* RCTWKWebViewManager.h */, + B6F832F04994C72C95102274C90DE4EA /* RCTWKWebViewManager.m */, + C91BFFE2A7C9E8275D5E51639BB1B3EE /* RCTWrapperViewController.h */, + A572B8DA7D421CF1D51D960B06A09C3C /* RCTWrapperViewController.m */, + 48E919E51C285368B3175F0FCAD391D1 /* UIView+Private.h */, + D43961128D76062AA9D8FFC42599A49C /* UIView+React.h */, + DA7D1A63EDCEF56B0FB56361B2C2AB16 /* UIView+React.m */, + 0F122215B71B1739839987CCB92B122F /* SafeAreaView */, + E02EBD8A717F74875A0B76BD8B617A6E /* ScrollView */, + ); + name = Views; + path = React/Views; + sourceTree = ""; + }; + 356C87A7D175352A30D6F758623954AF /* SurfaceHostingView */ = { + isa = PBXGroup; + children = ( + 722E40C614C1BB65B5C72B7933C2DAD0 /* RCTSurfaceHostingProxyRootView.h */, + 679BA4707D4A9222352F4764E2263373 /* RCTSurfaceHostingProxyRootView.mm */, + 96A63CAFA73F9AD7E2C2A87EEEB47F5B /* RCTSurfaceHostingView.h */, + A03FA2480DE3FCB879A3D5BB8DEA8C34 /* RCTSurfaceHostingView.mm */, + 78F91C3792C5E87BF55BACF1382D850E /* RCTSurfaceSizeMeasureMode.h */, + B1A97B93020BF92BE36A20C53AC48715 /* RCTSurfaceSizeMeasureMode.mm */, + ); + name = SurfaceHostingView; + path = SurfaceHostingView; + sourceTree = ""; + }; + 3FB41126D5FD4EE6A5027ABBBA53578D /* Development Pods */ = { + isa = PBXGroup; + children = ( + 604790E28601FBC256015E62230D8317 /* BVLinearGradient */, + 777D6D9C7C28474D46775AE0E267F8E6 /* React */, + 5CDAEE1BAB9577214DF49022E7942893 /* yoga */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + 41564F2A436BA06589BAE91273074E0B /* Modules */ = { + isa = PBXGroup; + children = ( + FE1E25BB33E0CEA0DEE0EEA26D5636E9 /* RCTAccessibilityManager.h */, + 11E9E6980DC98D709385275E0C98E195 /* RCTAccessibilityManager.m */, + 60AEC2B06390AF68529A0C53530E2BFA /* RCTAlertManager.h */, + 3D0F39E5F719D37CC80E27DBBAB839B3 /* RCTAlertManager.m */, + 64346D14B128B6E4EE49D42B0B779C11 /* RCTAppState.h */, + BB053FB4A0220EFDE14744ED5D6C977C /* RCTAppState.m */, + 94336249A8ED5A467780EE2ECC861BBD /* RCTAsyncLocalStorage.h */, + 3F438701E3FF31F71F8E32BF642F019B /* RCTAsyncLocalStorage.m */, + 1C8DBE6323194E8891398F5CF6DD203B /* RCTClipboard.h */, + CFC236B8E3D230E378E730715D379295 /* RCTClipboard.m */, + 76D1E7F1AF0A2F496963F8633A7A26D8 /* RCTDeviceInfo.h */, + 6BD5A8E8B8A503CAB4553DBF336A623A /* RCTDeviceInfo.m */, + 0AFC9C206BDF7DD29517DE7603B72DBA /* RCTDevSettings.h */, + 4AE0B0A1AB712975E98608F8DA1A6E30 /* RCTDevSettings.mm */, + 3AD5BF1C3CFFD22BD3995F2494B0C1FA /* RCTEventEmitter.h */, + 6035FB961061136941229AE74A3B5D05 /* RCTEventEmitter.m */, + 0B6A3DE612FB3492E4B40D951FDE6909 /* RCTExceptionsManager.h */, + A73C4E59991B2B803E9E1E1888F78C60 /* RCTExceptionsManager.m */, + 2B1A17BF3F0FABA901D8AA07D0F1F8DF /* RCTI18nManager.h */, + 90B38F2A3F43314B5D6A5203505A492D /* RCTI18nManager.m */, + 73ACF5B7B0631CE0AE72E4C7C127A672 /* RCTI18nUtil.h */, + 2A78A70D518C40B9D5A7B5B382C086DA /* RCTI18nUtil.m */, + A48E5A1CD5B232DCBDB63A221D58D60A /* RCTJSCSamplingProfiler.h */, + 85A11A52001B07F779E6F3E85DE49E10 /* RCTJSCSamplingProfiler.m */, + 0E84D8F69BF04F8C4B3EB22515EF47D0 /* RCTKeyboardObserver.h */, + D88E037D35BED4A5D692FAA7E31476C4 /* RCTKeyboardObserver.m */, + 19064FA28C6F5AD802AE9A722EF7BD08 /* RCTLayoutAnimation.h */, + FD26DD072BCE6222C4B0562405739848 /* RCTLayoutAnimation.m */, + 3C2A18CBAFB121761AC909A52FBAD8B5 /* RCTLayoutAnimationGroup.h */, + 106A9D25508A280E7CCE4DBF9F7120D3 /* RCTLayoutAnimationGroup.m */, + EE7CFC7764D59E2F7133F4BA261EC268 /* RCTRedBox.h */, + 2A43239F6C9BE68207685E6D131AEDAF /* RCTRedBox.m */, + 78FC48092A0617496FF799402FAF7169 /* RCTRedBoxExtraDataViewController.h */, + 32C559825C4E0E05EFC65FB9537C9341 /* RCTRedBoxExtraDataViewController.m */, + 2D9F6698C10129EC6B104D5B249DB16E /* RCTSourceCode.h */, + 57C392BE6703B65FD841615AA374B94A /* RCTSourceCode.m */, + CFF46810E1D076A8779087DE61D44F92 /* RCTStatusBarManager.h */, + 8AC8CA3071C38B359580546B25D826E7 /* RCTStatusBarManager.m */, + 1A668B3184EA3E295B1DF098E0CF548C /* RCTTiming.h */, + CB1C298409A8D5FBD2B4E46E25CAF558 /* RCTTiming.m */, + DCEFB75F6BCD92867BDC2D2CAC5ED147 /* RCTUIManager.h */, + 067BC631405E5DC7C5F348EE7938500B /* RCTUIManager.m */, + 14528F848DC19F844F8353DD803397A0 /* RCTUIManagerObserverCoordinator.h */, + 5E604F6F2AEF1437B7B715EDAE71EFBE /* RCTUIManagerObserverCoordinator.mm */, + FEF728C2968FEDAACDE40AF32D0677A2 /* RCTUIManagerUtils.h */, + 0556474C35265A44587162FDD56FB821 /* RCTUIManagerUtils.m */, + ); + name = Modules; + path = React/Modules; + sourceTree = ""; + }; + 441F5560697D3962E4B50EF298D7887A /* Pod */ = { + isa = PBXGroup; + children = ( + EDE369E875060CFB3C3A8B25720BDEB0 /* BVLinearGradient.podspec */, + 2285F683405D960977E7054700E6C61F /* LICENSE */, + D5FFA43791F2A50714AD500B152F8F1F /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + 5CDAEE1BAB9577214DF49022E7942893 /* yoga */ = { + isa = PBXGroup; + children = ( + C5050537A5B0525E95518E78424C3D8B /* Utils.cpp */, + 0105F7A11B2BC019C7BFFC009BABFB5B /* Utils.h */, + 1D99360DD85F6ACA318999581FB265A2 /* YGConfig.cpp */, + 44EF3CE3934684D9813B7C97EEC0BDED /* YGConfig.h */, + B78C808C36FF832C931286DAF6D4E8B8 /* YGEnums.cpp */, + AE18E608670BB53BEED1214FEF31CA10 /* YGEnums.h */, + A4224C245F377072F6D64B40B369BB84 /* YGFloatOptional.cpp */, + 9E8E96BD5BF1BADBC68F628E92778E5B /* YGFloatOptional.h */, + 2FEA2CC1153B60A0A7A5DA3AE246BD7D /* YGLayout.cpp */, + 327619EE40FA4338690EC94CDA4FC0C2 /* YGLayout.h */, + 1DDA49690787B0FB9B8DDF64B5901A85 /* YGMacros.h */, + 7E18482D32B8CA623BF90970125407EB /* YGNode.cpp */, + 0A4598792121340860A94502D52CF2C1 /* YGNode.h */, + 77F3E49EBC2A87F8B087420DFC19F3A9 /* YGNodePrint.cpp */, + 9B651D54F6D940D63C84660E14DDC18B /* YGNodePrint.h */, + 8E3579F3924FF3BB4AFE5AF6161676E2 /* YGStyle.cpp */, + A7E40D38A8EAD7D4A4221D50A77D9F8C /* YGStyle.h */, + FA1938105C7149E6967D5B19C5C7E951 /* Yoga.cpp */, + 6448D9829775E739C0F17CFA2212BB0F /* Yoga.h */, + 6E4D02EC66C7AB23BF6404A8D328052A /* Yoga-internal.h */, + 19DFEBEF2A2A7421A139A54B12145A54 /* Pod */, + 78BF3CE07B3E91BA1FDD913F6C3ADCF4 /* Support Files */, + ); + name = yoga; + path = "../../node_modules/react-native/ReactCommon/yoga"; + sourceTree = ""; + }; + 604790E28601FBC256015E62230D8317 /* BVLinearGradient */ = { + isa = PBXGroup; + children = ( + 5B096E2047C6C0D9E70B0B6CA0A133D7 /* BVLinearGradient.h */, + 4B0E30D6423BBF6F1F3D4947845C2958 /* BVLinearGradient.m */, + 6AE551C7BF66B87574EF0F4C698AF8D6 /* BVLinearGradientLayer.h */, + CA6114E05C30BAAA573EDF9267F11DFE /* BVLinearGradientLayer.m */, + A3A11E023EF3CD6DA165AB5EC8F4D93D /* BVLinearGradientManager.h */, + FD5FDCD87152455E83B8C8F8329E46E5 /* BVLinearGradientManager.m */, + 441F5560697D3962E4B50EF298D7887A /* Pod */, + C0C7FFBFF52C64E19461D7CE559EB87C /* Support Files */, + ); + name = BVLinearGradient; + path = "../../node_modules/react-native-linear-gradient"; + sourceTree = ""; + }; + 777D6D9C7C28474D46775AE0E267F8E6 /* React */ = { + isa = PBXGroup; + children = ( + 040C5E9124BED1BF54D0A1B918313C7A /* Core */, + AB7DE837B25710B6620376EC981C799A /* Pod */, + 1051922F66B081CC9C6409E8F0AA123F /* Support Files */, + ); + name = React; + path = "../../node_modules/react-native"; + sourceTree = ""; + }; + 78BF3CE07B3E91BA1FDD913F6C3ADCF4 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1CB1DFCAC7226ABF38F80FEB497E3BEC /* yoga.xcconfig */, + 4ADEE59222FFB1C333E92193ABEFCE54 /* yoga-dummy.m */, + 289442D63DA4B2467DF6120755902E51 /* yoga-prefix.pch */, + ); + name = "Support Files"; + path = "../../../../ios/Pods/Target Support Files/yoga"; + sourceTree = ""; + }; + 7DB346D0F39D3F0E887471402A8071AB = { + isa = PBXGroup; + children = ( + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + 3FB41126D5FD4EE6A5027ABBBA53578D /* Development Pods */, + 14B8B9B15ECBE87983FF987239AB2D7B /* Frameworks */, + 7DBC158D84401FE49BDE7E907A3E3A29 /* Products */, + DA9417971BDD3CB09575BAEBCD60A7EA /* Targets Support Files */, + ); + sourceTree = ""; + }; + 7DBC158D84401FE49BDE7E907A3E3A29 /* Products */ = { + isa = PBXGroup; + children = ( + 61A67F52DBDE572E81A2D2F852F4A5BE /* libBVLinearGradient.a */, + 1A48F72BE0267EE2ED6C54A64A0B6FCA /* libPods-esteem.a */, + 2007F18903DA74CB83BB958116C079E7 /* libReact.a */, + 64030E91645F82952357BD77B022C784 /* libyoga.a */, + ); + name = Products; + sourceTree = ""; + }; + 8C2646E00B78C4C65D86F9F98F4E3BD2 /* Surface */ = { + isa = PBXGroup; + children = ( + 66E6DE6D4F2D40AF8894B46854EC9A47 /* RCTSurface.h */, + 256709A44E2AE2AC3C00DB5D02B99432 /* RCTSurface.mm */, + C6AD99010E39216D0A60ADE4C6AB89D9 /* RCTSurfaceDelegate.h */, + D4C1AA3F0132806D6D2E8C862807756A /* RCTSurfaceRootShadowView.h */, + 44F9EEC3D5CC88085130FAC40E37BEA5 /* RCTSurfaceRootShadowView.m */, + 22F3474B627DB61C28B7A1E2697D2B6F /* RCTSurfaceRootShadowViewDelegate.h */, + 18439682C4C28CC0A15128CA9EAFC1BD /* RCTSurfaceRootView.h */, + 1C10EAF2984009197083E36230A21D68 /* RCTSurfaceRootView.mm */, + D3AF80CA3BB7C375A9407DFA78E568B6 /* RCTSurfaceStage.h */, + 28A3B4962AB988AD23D031BE57E2BD31 /* RCTSurfaceStage.m */, + D0E347452DC32485A49B9868349E4376 /* RCTSurfaceView.h */, + 0047008CF545F17EF2CC96E676D20E99 /* RCTSurfaceView.mm */, + 51DA9BDCF70E293555C76CB355FB44EE /* RCTSurfaceView+Internal.h */, + 356C87A7D175352A30D6F758623954AF /* SurfaceHostingView */, + ); + name = Surface; + path = Surface; + sourceTree = ""; + }; + 9462F8A0DBA87ABF3B4D4C7B5B8CE77A /* UIUtils */ = { + isa = PBXGroup; + children = ( + 5479AE8B9359A5777A1544A21703E05E /* RCTUIUtils.h */, + DBB8F03214BC5881193918D11AA7967E /* RCTUIUtils.m */, + ); + name = UIUtils; + path = React/UIUtils; + sourceTree = ""; + }; + AB7DE837B25710B6620376EC981C799A /* Pod */ = { + isa = PBXGroup; + children = ( + 4F6E5C7CA227C00CD2631521348EBF8F /* LICENSE */, + 3247374C33578EFED73976A0D34761CA /* React.podspec */, + 7F7D5BCB8696A7A589867A052132600F /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + C0C7FFBFF52C64E19461D7CE559EB87C /* Support Files */ = { + isa = PBXGroup; + children = ( + 7E7219952D5D64A94677F145DFDF2AAF /* BVLinearGradient.xcconfig */, + 01F109116D0DC0AC6F83F2AFCA18812D /* BVLinearGradient-dummy.m */, + C776D0B30AF1DB1BAD50559F97798037 /* BVLinearGradient-prefix.pch */, + ); + name = "Support Files"; + path = "../../ios/Pods/Target Support Files/BVLinearGradient"; + sourceTree = ""; + }; + C4A3E8C1DD4149CE9A923126A207F47C /* iOS */ = { + isa = PBXGroup; + children = ( + 6AC72D13F63B00F7461F6C93C7A3078C /* Foundation.framework */, + 5D6EDAA4FA5A2007525C91BEDC196678 /* JavaScriptCore.framework */, + 1F0A5F8C8E36001557F16D23DEACFE58 /* QuartzCore.framework */, + 79E8696009CE894EDCE884337C3F7634 /* UIKit.framework */, + ); + name = iOS; + sourceTree = ""; + }; + CBE6C9225100D8333FB9A3642F44ADF1 /* Pods-esteem */ = { + isa = PBXGroup; + children = ( + 07E6E7222094F670FDD8375D770AF3AB /* Pods-esteem-acknowledgements.markdown */, + 820DAE2B543A20E7D30BEBB6C111FD38 /* Pods-esteem-acknowledgements.plist */, + 2C7DFC0774BCC6A9E6362EBC8B30B378 /* Pods-esteem-dummy.m */, + B47948524A25CFA21E69F6917E055F85 /* Pods-esteem-frameworks.sh */, + 0BBC037FCCF4113A9988E0BA98E7C738 /* Pods-esteem-resources.sh */, + 5DD2ADD36FCE6F72052957D550B15054 /* Pods-esteem.debug.xcconfig */, + 587A2829E6BD40F0D6176AEEEE6448BF /* Pods-esteem.release.xcconfig */, + ); + name = "Pods-esteem"; + path = "Target Support Files/Pods-esteem"; + sourceTree = ""; + }; + D1681247C2EF0C0918D5F37BEACEFC22 /* Profiler */ = { + isa = PBXGroup; + children = ( + 28A9B0BBF0AAA9897CACD20B8B9006E4 /* RCTFPSGraph.h */, + FE4ECAA054A8090771563538445D9194 /* RCTFPSGraph.m */, + 3E9847A4938CB401CDB8902297A7AD4A /* RCTMacros.h */, + 4360270A3FCB6EA5692E08283DB70D45 /* RCTPerfMonitor.m */, + E3411E359B40E9D6EEBA4C6D3AED613F /* RCTProfile.h */, + 5F52F445223F2016FEB5FCD5ED8FCF1E /* RCTProfile.m */, + B9E5C7E13AC06CAD1F94FCE4684AEB9C /* RCTProfileTrampoline-arm.S */, + BE3E31D64D102D9211F162E12E267E79 /* RCTProfileTrampoline-arm64.S */, + 8F9CF27723A410810F629B5AEE3F2244 /* RCTProfileTrampoline-i386.S */, + 12D2D71CBD7D5B62425A468C71DC742B /* RCTProfileTrampoline-x86_64.S */, + ); + name = Profiler; + path = React/Profiler; + sourceTree = ""; + }; + DA9417971BDD3CB09575BAEBCD60A7EA /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + CBE6C9225100D8333FB9A3642F44ADF1 /* Pods-esteem */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + E02EBD8A717F74875A0B76BD8B617A6E /* ScrollView */ = { + isa = PBXGroup; + children = ( + 66B4CCD3DD35600A198292CDC3E89A32 /* RCTScrollableProtocol.h */, + 87C5CD6486D724D471A9DF8CBF6C3259 /* RCTScrollContentShadowView.h */, + EB27C95E21D2737075698EA4F753286A /* RCTScrollContentShadowView.m */, + 122DB8EA30BDD254DBAEDEB47BBC541E /* RCTScrollContentView.h */, + 6812B66297A74D63B2A97B1075649167 /* RCTScrollContentView.m */, + 316ED924EE209B49CC1D2083E028A954 /* RCTScrollContentViewManager.h */, + 8E50921ED27F7B7991C5E7AECC5CFB5E /* RCTScrollContentViewManager.m */, + F35BC64ACB3A968A2EB91D4AA358BD23 /* RCTScrollView.h */, + B7C275F32503BEA6A5CCD36C74CC29C6 /* RCTScrollView.m */, + E510E144E4CE14F7FD061EAAB391CDA8 /* RCTScrollViewManager.h */, + 81926DC6F60219C2F5102F65FDF8E25D /* RCTScrollViewManager.m */, + ); + name = ScrollView; + path = ScrollView; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 78C1F2222379D02FEB9B8A82D668AC0D /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DDA48482571C2700F10B0B772B4356B4 /* RCTAccessibilityManager.h in Headers */, + 57AB1A9E86D9CEA6500AF9B3657299E4 /* RCTActivityIndicatorView.h in Headers */, + F537261E40626E0811ECF39FA4A6534F /* RCTActivityIndicatorViewManager.h in Headers */, + C4C93BA008514CD416F70777B14B53BA /* RCTAlertManager.h in Headers */, + 5D469E1A051DC5BC48BA2D7C1DCC0CA2 /* RCTAnimationType.h in Headers */, + 027727B68A76A3C171C8BE473FADEB39 /* RCTAppState.h in Headers */, + 5DFE41C66BA899918C76B97A750D58F1 /* RCTAssert.h in Headers */, + A804AADB50AD69B7AD7371DCB1E78A1B /* RCTAsyncLocalStorage.h in Headers */, + 5B1F5EBBA5E085F93CDBB74A4C02ABF2 /* RCTAutoInsetsProtocol.h in Headers */, + A0ED3D84824A5157A49DC08658ED9A73 /* RCTBorderDrawing.h in Headers */, + 42C027E9A81EDCFBE309A35977ECE4AF /* RCTBorderStyle.h in Headers */, + 70312E29D79721BC8248D5634A2C64E1 /* RCTBridge+Private.h in Headers */, + 6172B0C80007ED11FB3311B6EE974F90 /* RCTBridge.h in Headers */, + 519A6CE233C2CF50A6B022910C7B35EA /* RCTBridgeDelegate.h in Headers */, + C141A6623290B2BE5DBDC3240573E1EF /* RCTBridgeMethod.h in Headers */, + 6C296685C0333EE354AEB09D0A7148A1 /* RCTBridgeModule.h in Headers */, + 9FC65B7AF648E7CD17303F7B352ACB70 /* RCTBundleURLProvider.h in Headers */, + 3FE69E39BAFB3279F10C40C3893F08BC /* RCTClipboard.h in Headers */, + 00714CC31DD01DF8B3618C3717FBF999 /* RCTComponent.h in Headers */, + 3880934B5353971EB69677E04A70F6B4 /* RCTComponentData.h in Headers */, + 3F38EF6630E598E8435623FC516D97EB /* RCTConvert+CoreLocation.h in Headers */, + 8F3F911D1A17E08B893EAB2DCDB306AD /* RCTConvert+Transform.h in Headers */, + 519523CF823319A2FC33E96B257DF1B4 /* RCTConvert.h in Headers */, + 2F741A15BB1FCF1E255F4512260413F4 /* RCTCxxConvert.h in Headers */, + CBFDEAD7DD2AB0E84EFCF4171205900A /* RCTDatePicker.h in Headers */, + 8E0464CC0873C61DA5E4B99542A81BE2 /* RCTDatePickerManager.h in Headers */, + 2D03A4EFF5F1A1E7E7D01C46D1E7812F /* RCTDefines.h in Headers */, + 8CEF3D9E3A67B2ED17410F45885E9791 /* RCTDeviceInfo.h in Headers */, + BC5B75227675694D704096681ADBE4C8 /* RCTDevSettings.h in Headers */, + 0BCBB35806921FE3B665CA8D30DA4C58 /* RCTDisplayLink.h in Headers */, + 5A77265D623DFFE92F8AC1D80D9BB16B /* RCTErrorCustomizer.h in Headers */, + 0FE83A8880EDE7BA47FD74C895B84D13 /* RCTErrorInfo.h in Headers */, + F410A1B92B0B903C933B95A2C9390060 /* RCTEventDispatcher.h in Headers */, + 42C3BF0B84091AADB645644E3A885531 /* RCTEventEmitter.h in Headers */, + 374F1CA3957E1FC88C8AB2E2DCB954D2 /* RCTExceptionsManager.h in Headers */, + 2B5AABB5E0991948A11862EBBC0F6FEB /* RCTFont.h in Headers */, + 7572F29A7AE5512679EED7699081C464 /* RCTFPSGraph.h in Headers */, + 4709B855D04A0DE0F6FF982A006ACEAE /* RCTFrameUpdate.h in Headers */, + 3B3CBD7906F064C125B88F474043674D /* RCTI18nManager.h in Headers */, + 012B27E0AFD0B9FBBE0D40D1C2EF6AAA /* RCTI18nUtil.h in Headers */, + A3F6169F2C9DE040A690448E4066887D /* RCTImageSource.h in Headers */, + D7CCAF4E11263BA45291D62D3C242856 /* RCTInvalidating.h in Headers */, + E62BE06F781F6DCE2252E2ECBC810EC1 /* RCTJavaScriptExecutor.h in Headers */, + 77DDF4D2E63BE3E5114F687B6E652789 /* RCTJavaScriptLoader.h in Headers */, + AD140906178C000C7189ECF806702F7B /* RCTJSCErrorHandling.h in Headers */, + 6DEDDE0C385BDAC490C7BBC424BA5409 /* RCTJSCSamplingProfiler.h in Headers */, + 968D207F1E702F203240BF2EDD30F422 /* RCTJSStackFrame.h in Headers */, + 2EAFB6B0058DDBEA39EF09C8508A669F /* RCTKeyboardObserver.h in Headers */, + 0F7B471E6D52D145D3B80369D7AB738C /* RCTKeyCommands.h in Headers */, + 438F700E947C12650E2696914C461E1B /* RCTLayout.h in Headers */, + BF68568AF36D7DB06DCA5B931286002C /* RCTLayoutAnimation.h in Headers */, + 43EB7878A3009E39B0C9C8D91C1DF7FE /* RCTLayoutAnimationGroup.h in Headers */, + 86DA0299082D458981278ED79046EE13 /* RCTLog.h in Headers */, + 9B156B131D1E5C239A05A140CC82D9EB /* RCTMacros.h in Headers */, + 562AF4096C7E76042824FAA7B7E31439 /* RCTManagedPointer.h in Headers */, + 9D38A4AEEAC166E366B2F7CB23F04ADA /* RCTMaskedView.h in Headers */, + C03E9734EBC19739025BFADB79C3B145 /* RCTMaskedViewManager.h in Headers */, + B040C297A4EDBA4EA66AFB458449F865 /* RCTModalHostView.h in Headers */, + DBEA7F2E1B97DD9304A8B9D9D7F834CC /* RCTModalHostViewController.h in Headers */, + 4363AD074117015CC6995BAE6FB86FCB /* RCTModalHostViewManager.h in Headers */, + E0FE4D339E32D68A0C35B320B3E3A4B3 /* RCTModalManager.h in Headers */, + B16CC872E6C13B371678AE96F001C5ED /* RCTModuleData.h in Headers */, + 5A07C04D8A99E4B586F946C1A6C3EAEB /* RCTModuleMethod.h in Headers */, + 1BA488410B5F4EABF45B329B0F7B67B2 /* RCTMultipartDataTask.h in Headers */, + FB86311D51F54FF1C94568B7B3878B98 /* RCTMultipartStreamReader.h in Headers */, + 462FF802BBB25C09E2DA2A31F1B32B5B /* RCTNavigator.h in Headers */, + F1495961BADFF9BD9E413E69FD60EBAB /* RCTNavigatorManager.h in Headers */, + 9BC4B191023683CB8DCB8248BD00A7D7 /* RCTNavItem.h in Headers */, + 2BA74F36E6904AFB45BD7A8046586ECF /* RCTNavItemManager.h in Headers */, + 73F0C1A1195CDC6547900B3B2757F158 /* RCTNullability.h in Headers */, + C04950A14360ED17325AACFAD599E8EE /* RCTParserUtils.h in Headers */, + 8992AAC877828B9174AF71543EBA72B6 /* RCTPerformanceLogger.h in Headers */, + 9F866183D35D302665519F9D738F2BB7 /* RCTPicker.h in Headers */, + 0308A118CDA42EDF349376834448557E /* RCTPickerManager.h in Headers */, + 6A13A12A69E6E8B9EE0C47699F83FB51 /* RCTPlatform.h in Headers */, + 2B1F16D6504BC7B672248C4287C3DF2E /* RCTPointerEvents.h in Headers */, + FB5F2BA31D631B00F198E1C8BE0EB9E2 /* RCTProfile.h in Headers */, + C166E0FB98D898AB43A970D6BE9CEEB6 /* RCTProgressViewManager.h in Headers */, + 62158723E3E15AE1A15627FB17F81B18 /* RCTRedBox.h in Headers */, + D3AD0B1AAED583CC24A3819F7B9FBB7D /* RCTRedBoxExtraDataViewController.h in Headers */, + 481A920A64FABAF24E23868F936CD105 /* RCTRefreshControl.h in Headers */, + 6D37C3AB0520A4F5FB81349B2A27DA52 /* RCTRefreshControlManager.h in Headers */, + 8A91AEF4AD39CDADE6FA716B6FAD9573 /* RCTReloadCommand.h in Headers */, + 6B132EC395AA731C07D263A8929EC676 /* RCTRootContentView.h in Headers */, + DDEDAFF928812075BED93BD3078D0FAB /* RCTRootShadowView.h in Headers */, + 585BF4AF202FB0490670CB15F225BD56 /* RCTRootView.h in Headers */, + FE8EC0B56F45205A7D742DF299458174 /* RCTRootViewDelegate.h in Headers */, + 1EEEC70090417355B54718002CBB17E8 /* RCTRootViewInternal.h in Headers */, + FC7B2930C2D6AEC734334776A47D99B4 /* RCTSafeAreaShadowView.h in Headers */, + F718102713366187452E69626F56088F /* RCTSafeAreaView.h in Headers */, + 3322AE73C48F9F48A1498E9C2674AAB0 /* RCTSafeAreaViewLocalData.h in Headers */, + CE273DF5665FF5C856A8DADBB15DEF6C /* RCTSafeAreaViewManager.h in Headers */, + 8D24D944CB8FDA3117E335CC1D3ED80F /* RCTScrollableProtocol.h in Headers */, + 6BD2033B2EF258B9785BAA674FB56BF9 /* RCTScrollContentShadowView.h in Headers */, + A14F400BDF7433C636392F0A4195E921 /* RCTScrollContentView.h in Headers */, + 63491F62F00E6B806C16116DF9962BED /* RCTScrollContentViewManager.h in Headers */, + 061EDE5440854B33DF0644611B7CF33B /* RCTScrollView.h in Headers */, + B7750E6A836D5ABB336BBB05BE675C15 /* RCTScrollViewManager.h in Headers */, + 1896843575DB5484AC4705B310017158 /* RCTSegmentedControl.h in Headers */, + C247C3087444F4024EF319D5B66666AF /* RCTSegmentedControlManager.h in Headers */, + 5254107393BF9E1D59E6BE344F935E12 /* RCTShadowView+Internal.h in Headers */, + 62F93649286F5A2E18BDD970B9679541 /* RCTShadowView+Layout.h in Headers */, + 72883D43D0575CF9B060B6E234357F0A /* RCTShadowView.h in Headers */, + 9D578DE3AE362C7C4FF3C0083766449B /* RCTSlider.h in Headers */, + A79D5E4C366CC277311481A95E64F654 /* RCTSliderManager.h in Headers */, + 5D9B87DFEF714929CB183D225DA49B6D /* RCTSourceCode.h in Headers */, + 74ED7AC0FEFE7C198382A43933CC8409 /* RCTStatusBarManager.h in Headers */, + 6C9DC7EDA2340523518EEC5DF84640E9 /* RCTSurface.h in Headers */, + EC295AF1B20B87DD2F3F5861C49D8F1F /* RCTSurfaceDelegate.h in Headers */, + E828B6C457D6D220F770278B1EF3B3A5 /* RCTSurfaceHostingProxyRootView.h in Headers */, + 3F025DD5D110242D460B888EDB1B2B40 /* RCTSurfaceHostingView.h in Headers */, + CA553EDD438796AE4FF35EDD104B6387 /* RCTSurfaceRootShadowView.h in Headers */, + 8DB9D3E99885C0E45381FD620BA20EE5 /* RCTSurfaceRootShadowViewDelegate.h in Headers */, + A65CC99D58451896EFA77D3370C11445 /* RCTSurfaceRootView.h in Headers */, + 995833C5113E840998994B57AA39DEA0 /* RCTSurfaceSizeMeasureMode.h in Headers */, + 5EDEE68EF37AEF2B6AD619EE5FAF4BB6 /* RCTSurfaceStage.h in Headers */, + 11ADC410EC9AF2F89F6A58929872CA60 /* RCTSurfaceView+Internal.h in Headers */, + 3C7FB1062F90DF55A22520C6FCDA3289 /* RCTSurfaceView.h in Headers */, + E0A49F04A3A2C80BA688A9E7E32D7736 /* RCTSwitch.h in Headers */, + BB96E2D6ED05597E9590D2315EF58FEC /* RCTSwitchManager.h in Headers */, + 54B659BDAA8258F78EC75AE4ABFA550D /* RCTTabBar.h in Headers */, + D2D50888E5CD7A42972EAF37AD0D69F9 /* RCTTabBarItem.h in Headers */, + 6D5EBB5C6FB66CB6649BDDC95F798C64 /* RCTTabBarItemManager.h in Headers */, + B81AC0DA6D2B4B45E466F40AA4E3E949 /* RCTTabBarManager.h in Headers */, + 5EDA9F9308CD6608B43734BB4230BA2F /* RCTTextDecorationLineType.h in Headers */, + FDAC0F03156F67201C76E8A5A35DAB85 /* RCTTiming.h in Headers */, + 46EC9A314052AEEE1899D415CA573E75 /* RCTTouchEvent.h in Headers */, + 7F55BAD370227F129FA64C85A9E1035B /* RCTTouchHandler.h in Headers */, + D87ABFE12CCF8BFD0341C65C6F422BB4 /* RCTUIManager.h in Headers */, + 373D8609A9A719640FC184E207E2E1BA /* RCTUIManagerObserverCoordinator.h in Headers */, + FAC03886AB578D221D95A4AD90229923 /* RCTUIManagerUtils.h in Headers */, + 8FF8D50E7CBF674231E7F90820E013AC /* RCTUIUtils.h in Headers */, + 52969B63D836B12E6CFE13CC601CC263 /* RCTURLRequestDelegate.h in Headers */, + 24B23AE274494A0B3B9FEEFCEF2816AD /* RCTURLRequestHandler.h in Headers */, + 419402BCFDA35C9F81BD9412FE30080F /* RCTUtils.h in Headers */, + 8CDEE906BE49FD9C7A3A76F73E43692E /* RCTVersion.h in Headers */, + 79E8FCE86AB6BBB4BC87F641204F631A /* RCTView.h in Headers */, + 1ED528BADCBBA5F5BD27BC564D2BDE3A /* RCTViewManager.h in Headers */, + 2BA396A1A2A4AB291A867AE3C28B04E5 /* RCTWebView.h in Headers */, + FB39997EDAAE93CEFADF8C36159042AF /* RCTWebViewManager.h in Headers */, + 8FB9DB2155E28A2A1472B0AD387AF749 /* RCTWKWebView.h in Headers */, + 95E8026B965D828048A7ABC55C60FB82 /* RCTWKWebViewManager.h in Headers */, + 828D7E67D942060917026E5375D46165 /* RCTWrapperViewController.h in Headers */, + AD6594F303DD21B0F46DD99C9FED323D /* UIView+Private.h in Headers */, + F45D7E2EA88E78229588D3208633800E /* UIView+React.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DCC5ABC47B04A0E6CE189CDE2B02D000 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1B09B8734E451B75C4750F436BC9CE64 /* Utils.h in Headers */, + 04760E045FE06E20F712FEFCE58A0A44 /* YGConfig.h in Headers */, + 1DF188971F0F1B9D8BD5D6DB477A41F5 /* YGEnums.h in Headers */, + 22FED0C8F7BA5BD318682F34849A8F5B /* YGFloatOptional.h in Headers */, + 2E7178300C884EFC96684E5784602D37 /* YGLayout.h in Headers */, + 8AE74417FE35484A2E0CBE8DCD826CAA /* YGMacros.h in Headers */, + 5274F7935CFE80533458F96797E97287 /* YGNode.h in Headers */, + AA63D91201705FC43363234E29357C13 /* YGNodePrint.h in Headers */, + 254ACFE4F2BF5907C00FCA274265388B /* YGStyle.h in Headers */, + 4CAB098378BC0A4A24A65F99252DFBB3 /* Yoga-internal.h in Headers */, + 4C1821AD96487A60B1CB2216EEAD9C34 /* Yoga.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F38C7E5CC2C604593BD86E6CB6037B73 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + EDFB28098F4F471390AEA58A8A2D3BC1 /* BVLinearGradient.h in Headers */, + A9BB4CD1A8C74514B89884905E3E02C2 /* BVLinearGradientLayer.h in Headers */, + 139352B997CF0DFF4E5E3B6CE529C13C /* BVLinearGradientManager.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 01C6787D8BBC8846B565CE4282545F18 /* React */ = { + isa = PBXNativeTarget; + buildConfigurationList = 44F739548EC1DA047F38B64445FF066B /* Build configuration list for PBXNativeTarget "React" */; + buildPhases = ( + 07031C95EE6838E722F8EBBCF5AA6862 /* Sources */, + 57D777F2639C42D338DACC055657F457 /* Frameworks */, + 78C1F2222379D02FEB9B8A82D668AC0D /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 506F6B7D1FA0B2729EEAF2C1C1855B16 /* PBXTargetDependency */, + ); + name = React; + productName = React; + productReference = 2007F18903DA74CB83BB958116C079E7 /* libReact.a */; + productType = "com.apple.product-type.library.static"; + }; + 0C83F8610BA13C1E899C6A474A216C1A /* Pods-esteem */ = { + isa = PBXNativeTarget; + buildConfigurationList = B656ED677CF76DE9E8C0C200274C9D69 /* Build configuration list for PBXNativeTarget "Pods-esteem" */; + buildPhases = ( + 1C853AB52E20D3957EE83035FFFD2F38 /* Sources */, + F7E527123C70A7293BCC009D88556B6E /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + 52A1C468FCCD0495B5AA0167DCD0C3BA /* PBXTargetDependency */, + 1D2DF6AFD7A5D24A35178F5EBDBFFEFA /* PBXTargetDependency */, + 4B038304C26581ACFDD37CB119E44A80 /* PBXTargetDependency */, + ); + name = "Pods-esteem"; + productName = "Pods-esteem"; + productReference = 1A48F72BE0267EE2ED6C54A64A0B6FCA /* libPods-esteem.a */; + productType = "com.apple.product-type.library.static"; + }; + 652189E0CF99981374331B88A1C1E748 /* BVLinearGradient */ = { + isa = PBXNativeTarget; + buildConfigurationList = 608E6FD6CAFCD81C256D78705A3FF4F2 /* Build configuration list for PBXNativeTarget "BVLinearGradient" */; + buildPhases = ( + 3E7C621101A1A2A45F2A226BA7626718 /* Sources */, + F663816BB7E9453AB9DE79371153A2BE /* Frameworks */, + F38C7E5CC2C604593BD86E6CB6037B73 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + D612307F9111CA0E274F189F4157186E /* PBXTargetDependency */, + ); + name = BVLinearGradient; + productName = BVLinearGradient; + productReference = 61A67F52DBDE572E81A2D2F852F4A5BE /* libBVLinearGradient.a */; + productType = "com.apple.product-type.library.static"; + }; + C0AA92AFE2DA0718E5E474B006C02A3C /* yoga */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2133E5C85A53F1835482C9B1709ED99F /* Build configuration list for PBXNativeTarget "yoga" */; + buildPhases = ( + 8B229A90598F4C83514ACC1DB7596C13 /* Sources */, + 22CDB6F100B66A6705FB2DA48F2C1D7A /* Frameworks */, + DCC5ABC47B04A0E6CE189CDE2B02D000 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = yoga; + productName = yoga; + productReference = 64030E91645F82952357BD77B022C784 /* libyoga.a */; + productType = "com.apple.product-type.library.static"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0930; + LastUpgradeCheck = 0930; + }; + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; + productRefGroup = 7DBC158D84401FE49BDE7E907A3E3A29 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 652189E0CF99981374331B88A1C1E748 /* BVLinearGradient */, + 0C83F8610BA13C1E899C6A474A216C1A /* Pods-esteem */, + 01C6787D8BBC8846B565CE4282545F18 /* React */, + C0AA92AFE2DA0718E5E474B006C02A3C /* yoga */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 07031C95EE6838E722F8EBBCF5AA6862 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 43B23E5EEA7147F84F94D15929AF9239 /* RCTAccessibilityManager.m in Sources */, + D4F18FE92CD2677B0E642F0C5B8AF12E /* RCTActivityIndicatorView.m in Sources */, + 545E95466996101605F19E55E5583086 /* RCTActivityIndicatorViewManager.m in Sources */, + 1ACD7582A377C266E325D78AC1553F5B /* RCTAlertManager.m in Sources */, + 589A6812E8DB459930F00BA292EFD177 /* RCTAppState.m in Sources */, + 35F2AC07049B874F43EC7746EBA1F5A9 /* RCTAssert.m in Sources */, + 3CC215E437BE286899BBBC6ABAD1FF51 /* RCTAsyncLocalStorage.m in Sources */, + 2D65FF2A562F0C4B109870AB7EAC757D /* RCTBorderDrawing.m in Sources */, + 0CB4E0CBA48D72CF9E8FF5F929810718 /* RCTBridge.m in Sources */, + F0CCA4535EE94DFC54D3700CB83A30FF /* RCTBundleURLProvider.m in Sources */, + C1F57A862D7FA3E802A86EA8EB437FF5 /* RCTClipboard.m in Sources */, + 9CFAEE7C29E2689CAEC0D3CCD137DEB7 /* RCTComponentData.m in Sources */, + 1BBEB24E846AF7712B3655E90A47C906 /* RCTConvert+CoreLocation.m in Sources */, + 2B0CEBE853664AD1AAD8FDF0FCE55ECE /* RCTConvert+Transform.m in Sources */, + 84891CD7458F8F0D769F36FB5FA7A628 /* RCTConvert.m in Sources */, + E55AA445AC601238A9B0A9E83542F79D /* RCTCxxConvert.m in Sources */, + A18192281C3E4234530FEB45586D1B2B /* RCTDatePicker.m in Sources */, + 5BDE7F1EDC9031E1857BB123EDD6DB8A /* RCTDatePickerManager.m in Sources */, + C27E14187D338ADA9D4A384540E4DCFA /* RCTDeviceInfo.m in Sources */, + B062B11EABF8AFBE2D28D677AC0517A2 /* RCTDevSettings.mm in Sources */, + 3A96CBDF32585A83CCD595D13A2B8DC8 /* RCTDisplayLink.m in Sources */, + 35BE1C73BB80774FD4CB005C91E8FE9D /* RCTErrorInfo.m in Sources */, + 46449EBDC025804EA0D72D27550B06BB /* RCTEventDispatcher.m in Sources */, + 19512177A635E8390BC6126F7D856AC3 /* RCTEventEmitter.m in Sources */, + 0D1456866CAD84D9D1546AAA8E633805 /* RCTExceptionsManager.m in Sources */, + 4A41A3A9592F8A6817097FF47A0E5F89 /* RCTFont.mm in Sources */, + C71903888CE3A15DD10BD0191C8E3CE2 /* RCTFPSGraph.m in Sources */, + 442844CE65C498C732372E305DC9D8A7 /* RCTFrameUpdate.m in Sources */, + 14DF368BE959D7998202236E29BA1A47 /* RCTI18nManager.m in Sources */, + 43BD2C39F46B6DA55834459556730EEB /* RCTI18nUtil.m in Sources */, + 71751FD53B9B4740BF77F2F2406219F3 /* RCTImageSource.m in Sources */, + 2BB66C2CDC315CC62113FFDFF02DA7D1 /* RCTJavaScriptLoader.mm in Sources */, + C9B91F63E78CA5F4898522C27B8809E8 /* RCTJSCErrorHandling.mm in Sources */, + 16E2B4016737116EB4AD225B4C7B856B /* RCTJSCSamplingProfiler.m in Sources */, + 04E0D930D85BCE06BA9D217397D75A51 /* RCTJSStackFrame.m in Sources */, + 1F84B175E7AF143AB8C780C4EC8BFF0B /* RCTKeyboardObserver.m in Sources */, + E43A5B39A19AD9422BF9CBA17EC39B9A /* RCTKeyCommands.m in Sources */, + 4740A32A5D4F8FD33E585F7C79968BCF /* RCTLayout.m in Sources */, + E33A5A9F0924D70676CD397B8575F060 /* RCTLayoutAnimation.m in Sources */, + 75AB4C5979B3C1EC438B610973F0DC00 /* RCTLayoutAnimationGroup.m in Sources */, + C39D075A4E6B305CAE87EC21E433D805 /* RCTLog.mm in Sources */, + 75F57902FACB333BA47D22EB2AC8C5AC /* RCTManagedPointer.mm in Sources */, + A0DE2156773EB2E7A544F37747882C34 /* RCTMaskedView.m in Sources */, + B7192A15AA96E8687EEA2224B10224AB /* RCTMaskedViewManager.m in Sources */, + B6238392D5AE89F7FDB2B19248B32C62 /* RCTModalHostView.m in Sources */, + 1958CF8525BE44D00EFCB69E96EA603E /* RCTModalHostViewController.m in Sources */, + 2C78DEB0834949B5F8260A64B4AAC6B7 /* RCTModalHostViewManager.m in Sources */, + 909FA5FB4436F73187B8E72266E3C019 /* RCTModalManager.m in Sources */, + 80D237471DDB6164E8278E9BADE8A411 /* RCTModuleData.mm in Sources */, + 2523828760D012BBEF4FF7EC2A72DE5A /* RCTModuleMethod.mm in Sources */, + 7C9BEC3792340710D8C61303C1DF2094 /* RCTMultipartDataTask.m in Sources */, + FC3C1134CE37AE7CCA87B61B62A338FF /* RCTMultipartStreamReader.m in Sources */, + B56AF592FA17AE23FFC9BFAEC12631E8 /* RCTNavigator.m in Sources */, + 86DD4B22B09AA18D1E295FAD44351BF0 /* RCTNavigatorManager.m in Sources */, + 53C5AE5D85D90B5B7CA53B43F5BA0F4F /* RCTNavItem.m in Sources */, + 53E227A19F5122DC5C64BC85CE7A6368 /* RCTNavItemManager.m in Sources */, + 53369A61D8885B8ABB45AAD1434415A3 /* RCTParserUtils.m in Sources */, + F7CFA00D3028E3F49C769CEA1DF6BB91 /* RCTPerfMonitor.m in Sources */, + F7F10058C53376F570F69E312B05EA0A /* RCTPerformanceLogger.m in Sources */, + 430BFEEEA9C7F3FC42A6919E740BBB87 /* RCTPicker.m in Sources */, + 9632150BFE03BCFC837B445A2116DBE9 /* RCTPickerManager.m in Sources */, + DF8008121E5BDCAF6688C688A40A779D /* RCTPlatform.m in Sources */, + AAE60A68186D44A9DA0C111A3C88330B /* RCTProfile.m in Sources */, + 440037BA145F3A2FFD3E0B91C592B5A2 /* RCTProfileTrampoline-arm.S in Sources */, + 26A33AA4F34D0724E9635FF3A9C6D7DA /* RCTProfileTrampoline-arm64.S in Sources */, + 201461FB6E99DE219E0A449BC157EFF0 /* RCTProfileTrampoline-i386.S in Sources */, + 9AD0CAE6CB3ADD6FE94BB31F22EFCF48 /* RCTProfileTrampoline-x86_64.S in Sources */, + 8105CFB6F4CDB74323F59B524F60B2EC /* RCTProgressViewManager.m in Sources */, + DD59D02938A955DDA857B160B37DF3E1 /* RCTRedBox.m in Sources */, + 81F3C86499387A069E979EB7ABA3E0A9 /* RCTRedBoxExtraDataViewController.m in Sources */, + B005B0A2249864BEACB455E6EB8627A3 /* RCTRefreshControl.m in Sources */, + 1B0EE63239F9A91E62F05FFAA7E3CEC6 /* RCTRefreshControlManager.m in Sources */, + 52E11C5B531750ABA549725B8D11DA6B /* RCTReloadCommand.m in Sources */, + 092B3C2060C479D8F98ADC834A0AC097 /* RCTRootContentView.m in Sources */, + 94D68A156DDB5BD67F656FF6BD06E69C /* RCTRootShadowView.m in Sources */, + 65297C5E17D54260A0304965E38C9CC3 /* RCTRootView.m in Sources */, + CA430C0F0A87C7CEBD036BE7CC1C6169 /* RCTSafeAreaShadowView.m in Sources */, + 04A9871041EC6C877D826F8D458722DB /* RCTSafeAreaView.m in Sources */, + BE37DFBF27B2F94F0E54FAC37B569A17 /* RCTSafeAreaViewLocalData.m in Sources */, + 6C61155C682576D66C730A97BE163ABE /* RCTSafeAreaViewManager.m in Sources */, + 1F4756779EC11A776ADB3D012C60C096 /* RCTScrollContentShadowView.m in Sources */, + 3155B1FAC1092DBA2F5676635E321603 /* RCTScrollContentView.m in Sources */, + 4474EDAC52508E0A1394D5A3428432A8 /* RCTScrollContentViewManager.m in Sources */, + 966AB629F69BA6A0957E4DA34FEDCD7E /* RCTScrollView.m in Sources */, + 54B616BBE0067F2538975ABF0B72CFB9 /* RCTScrollViewManager.m in Sources */, + 5326A36380FB8179662AE442F00F08D8 /* RCTSegmentedControl.m in Sources */, + B2F7AD5AE11D85E330C4C65671A130E8 /* RCTSegmentedControlManager.m in Sources */, + 34800FD796101BF3DC9BE412019F7B2F /* RCTShadowView+Internal.m in Sources */, + 78CAE5751662BBE4DB33A031B67845FD /* RCTShadowView+Layout.m in Sources */, + 7586E3105EE533A53734A192016BB191 /* RCTShadowView.m in Sources */, + A95DA0B0BC019D7B45C720FEB7F36774 /* RCTSlider.m in Sources */, + 4A7BC3A12A1016DC2AC11344AE8715EB /* RCTSliderManager.m in Sources */, + 162249204AAA247B04F1C8C069A5C6FD /* RCTSourceCode.m in Sources */, + 1416ECC6494D02B35DFEADBE72CB7524 /* RCTStatusBarManager.m in Sources */, + 8E1DFB7FE8EE62976F4435599D022E75 /* RCTSurface.mm in Sources */, + 32ADE17BF09A5FAC7D5DA1975D047B97 /* RCTSurfaceHostingProxyRootView.mm in Sources */, + 5DFA52AE118B60E802E8D8F176D17F28 /* RCTSurfaceHostingView.mm in Sources */, + C4C06A3832AE8F8B24168F6607ED52CE /* RCTSurfaceRootShadowView.m in Sources */, + 774713E28CDFE2B7F171401679F10749 /* RCTSurfaceRootView.mm in Sources */, + BBD9EA5A8D70CF5B827A8225F4390AF4 /* RCTSurfaceSizeMeasureMode.mm in Sources */, + 68C7C0D02423519F5B1B138F0A4BA0B4 /* RCTSurfaceStage.m in Sources */, + 47934B99DCCFFFB7FC5E6F3A38212586 /* RCTSurfaceView.mm in Sources */, + 2FACA11EC4B717021BA3AC308432C7AD /* RCTSwitch.m in Sources */, + AB194563E62B1EC7BF871C21AFED26EC /* RCTSwitchManager.m in Sources */, + 382E47EC58863AF87A0DB03C7623A215 /* RCTTabBar.m in Sources */, + 215E1B3C312A556CEBB2A63E588BF973 /* RCTTabBarItem.m in Sources */, + 52FF33D6D25F961776F0557F3C4425F4 /* RCTTabBarItemManager.m in Sources */, + 9FA38CA1BB9A8905467831CCC66D1DE3 /* RCTTabBarManager.m in Sources */, + 146442200F39BC167AA4FDDA33791BF7 /* RCTTiming.m in Sources */, + 7A7D958B6D1D9F5B2EFADEBAFC612D2C /* RCTTouchEvent.m in Sources */, + 0F2C841972D7AE05F99FB6EF2AF0CA46 /* RCTTouchHandler.m in Sources */, + DB23D37BD5D0C1CA7C567C7282F4365B /* RCTUIManager.m in Sources */, + 5F116F54D80BC61EC5CEA30DD9FD2ED6 /* RCTUIManagerObserverCoordinator.mm in Sources */, + F3A6D9C3781901EAF3B86CE5C38EEE9A /* RCTUIManagerUtils.m in Sources */, + 527DFC08CA8AC80FB58982D465CECE18 /* RCTUIUtils.m in Sources */, + AABA32E1419677410AAC74E1B3F5DB07 /* RCTUtils.m in Sources */, + 3320FD225549A7D2933237F3EE44CD7E /* RCTVersion.m in Sources */, + 72D762D5E669684EE9C5FCDBE05EA3D3 /* RCTView.m in Sources */, + F4C1A77A578B5E0F8BFD11E470CE245C /* RCTViewManager.m in Sources */, + AF343D941B0DA62A876FCF1EBD7D9B80 /* RCTWebView.m in Sources */, + C0349C0E8F110C90801EF9F0948CCD0F /* RCTWebViewManager.m in Sources */, + 54F886CDECE3499833B06334D23A0887 /* RCTWKWebView.m in Sources */, + 63779182D1DF52AB7E5EFFA49886B433 /* RCTWKWebViewManager.m in Sources */, + D1F99B18AD9C917DD3E94AF128A815A0 /* RCTWrapperViewController.m in Sources */, + DE3278D0450D9717A3B246DB1E9279FD /* React-dummy.m in Sources */, + DC250A3C5AE5A1EC674DE1A29C658309 /* UIView+React.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 1C853AB52E20D3957EE83035FFFD2F38 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9610BB4D34BB8ED91221FC89886B47B4 /* Pods-esteem-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 3E7C621101A1A2A45F2A226BA7626718 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9EB645D7C7CA615063A1350034EC8344 /* BVLinearGradient-dummy.m in Sources */, + 952A174A5B92883C0B9BD02948501D21 /* BVLinearGradient.m in Sources */, + AF78E9C764F1CB27472D39F89CB79524 /* BVLinearGradientLayer.m in Sources */, + B071B8ACFFAE750CF3F0EF119193DB6C /* BVLinearGradientManager.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 8B229A90598F4C83514ACC1DB7596C13 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ADD82BA35770C0D326DF61777E8F63B4 /* Utils.cpp in Sources */, + 99E790D445F1BFADF7241B125F13FEED /* YGConfig.cpp in Sources */, + 353A3604612CAA26B949A264DCCE58F5 /* YGEnums.cpp in Sources */, + B65FCC519311711268CF2BB46E1AB983 /* YGFloatOptional.cpp in Sources */, + 39ECC2269DEB157A8BA100EE52B437EC /* YGLayout.cpp in Sources */, + 01C15B4EFF018D7A4D24A6FE8416BB52 /* YGNode.cpp in Sources */, + 3365C90BF666972D3EC1538A64485947 /* YGNodePrint.cpp in Sources */, + A271C1B71708B38AFB719F58E1E83174 /* YGStyle.cpp in Sources */, + 506301A83758B47E13F590E5834A252E /* yoga-dummy.m in Sources */, + 2A6C5468C8EDF903393BFAAAED66D0BD /* Yoga.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 1D2DF6AFD7A5D24A35178F5EBDBFFEFA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 01C6787D8BBC8846B565CE4282545F18 /* React */; + targetProxy = 44E52B6595EA534184FB3546D854D42F /* PBXContainerItemProxy */; + }; + 4B038304C26581ACFDD37CB119E44A80 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = yoga; + target = C0AA92AFE2DA0718E5E474B006C02A3C /* yoga */; + targetProxy = CB045180462AB777BAD9CC9F181CE04E /* PBXContainerItemProxy */; + }; + 506F6B7D1FA0B2729EEAF2C1C1855B16 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = yoga; + target = C0AA92AFE2DA0718E5E474B006C02A3C /* yoga */; + targetProxy = 30B3105D6BB86B42D9AF7B0FE708D84E /* PBXContainerItemProxy */; + }; + 52A1C468FCCD0495B5AA0167DCD0C3BA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = BVLinearGradient; + target = 652189E0CF99981374331B88A1C1E748 /* BVLinearGradient */; + targetProxy = 1D603DE0866265B7C5419AFFAD947A75 /* PBXContainerItemProxy */; + }; + D612307F9111CA0E274F189F4157186E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = React; + target = 01C6787D8BBC8846B565CE4282545F18 /* React */; + targetProxy = 1A6B2B29BE703D7B818A5BA31C63CE5C /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 0B8ADFB770900267B342FDCECCE78271 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1CB1DFCAC7226ABF38F80FEB497E3BEC /* 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; + }; + 199D972A13F2B4C56847F7A89CCA83BC /* Debug */ = { + 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; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=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 = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 9CC1BF5BEF9875E4CA5308FB7E4D2BD6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1CB1DFCAC7226ABF38F80FEB497E3BEC /* yoga.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = "iPhone Developer"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + GCC_PREFIX_HEADER = "Target Support Files/yoga/yoga-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = yoga; + PRODUCT_NAME = yoga; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + A362F19D8A9D2DC4D397835A177E7B2A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7E7219952D5D64A94677F145DFDF2AAF /* BVLinearGradient.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/BVLinearGradient/BVLinearGradient-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = BVLinearGradient; + PRODUCT_NAME = BVLinearGradient; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + A54DFCD153C226CC094C7601BB99D346 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5DD2ADD36FCE6F72052957D550B15054 /* Pods-esteem.debug.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"; + }; + name = Debug; + }; + AB476817F853AEE6939AC0687C5835FC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 587A2829E6BD40F0D6176AEEEE6448BF /* Pods-esteem.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; + }; + C74F08B5933E025DDFB628B93A86AEF1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B969A47D966D3B57E63D9034134A6A2A /* React.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/React-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = React; + PRODUCT_NAME = React; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E07CA8528ED66CD7B89A6B3DABC409C6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7E7219952D5D64A94677F145DFDF2AAF /* BVLinearGradient.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/BVLinearGradient/BVLinearGradient-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 7.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = BVLinearGradient; + PRODUCT_NAME = BVLinearGradient; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + EC55CA26E4D289CD26E4EE86DCE1F61F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = B969A47D966D3B57E63D9034134A6A2A /* React.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/React-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRIVATE_HEADERS_FOLDER_PATH = ""; + PRODUCT_MODULE_NAME = React; + PRODUCT_NAME = React; + PUBLIC_HEADERS_FOLDER_PATH = ""; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + FDB2FC4A1E5891381CD9D922145497F1 /* 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; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + 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; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2133E5C85A53F1835482C9B1709ED99F /* Build configuration list for PBXNativeTarget "yoga" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 0B8ADFB770900267B342FDCECCE78271 /* Debug */, + 9CC1BF5BEF9875E4CA5308FB7E4D2BD6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 199D972A13F2B4C56847F7A89CCA83BC /* Debug */, + FDB2FC4A1E5891381CD9D922145497F1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 44F739548EC1DA047F38B64445FF066B /* Build configuration list for PBXNativeTarget "React" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EC55CA26E4D289CD26E4EE86DCE1F61F /* Debug */, + C74F08B5933E025DDFB628B93A86AEF1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 608E6FD6CAFCD81C256D78705A3FF4F2 /* Build configuration list for PBXNativeTarget "BVLinearGradient" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A362F19D8A9D2DC4D397835A177E7B2A /* Debug */, + E07CA8528ED66CD7B89A6B3DABC409C6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B656ED677CF76DE9E8C0C200274C9D69 /* Build configuration list for PBXNativeTarget "Pods-esteem" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A54DFCD153C226CC094C7601BB99D346 /* Debug */, + AB476817F853AEE6939AC0687C5835FC /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; +} diff --git a/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-dummy.m b/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-dummy.m new file mode 100644 index 000000000..390a7c667 --- /dev/null +++ b/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_BVLinearGradient : NSObject +@end +@implementation PodsDummy_BVLinearGradient +@end diff --git a/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-prefix.pch b/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient-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/BVLinearGradient/BVLinearGradient.xcconfig b/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient.xcconfig new file mode 100644 index 000000000..1279ce8b8 --- /dev/null +++ b/ios/Pods/Target Support Files/BVLinearGradient/BVLinearGradient.xcconfig @@ -0,0 +1,11 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BVLinearGradient +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/BVLinearGradient" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BVLinearGradient" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/yoga" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = -framework "Foundation" -framework "QuartzCore" -framework "UIKit" +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-linear-gradient +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-acknowledgements.markdown new file mode 100644 index 000000000..86894d25a --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-acknowledgements.markdown @@ -0,0 +1,53 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## BVLinearGradient + +MIT License + +Copyright (c) 2016 React Native Community + +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. + + +## React + +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-esteem/Pods-esteem-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-acknowledgements.plist new file mode 100644 index 000000000..b0f351211 --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-acknowledgements.plist @@ -0,0 +1,91 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + MIT License + +Copyright (c) 2016 React Native Community + +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 + BVLinearGradient + 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 + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-dummy.m b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-dummy.m new file mode 100644 index 000000000..6d6552ec0 --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_esteem : NSObject +@end +@implementation PodsDummy_Pods_esteem +@end diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-frameworks.sh b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-frameworks.sh new file mode 100755 index 000000000..08e3eaaca --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-frameworks.sh @@ -0,0 +1,146 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + if [ -r "$source" ]; then + # Copy the dSYM into a the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .framework.dSYM "$source")" + binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then + strip_invalid_archs "$binary" + fi + + if [[ $STRIP_BINARY_RETVAL == 1 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" + fi + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + STRIP_BINARY_RETVAL=0 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=1 +} + +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-resources.sh b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-resources.sh new file mode 100755 index 000000000..345301f2c --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem-resources.sh @@ -0,0 +1,118 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then + # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy + # resources to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +case "${TARGETED_DEVICE_FAMILY:-}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "${PODS_ROOT}*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + else + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" + fi +fi diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig new file mode 100644 index 000000000..b7bc1c319 --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig @@ -0,0 +1,9 @@ +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BVLinearGradient" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/yoga" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BVLinearGradient" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BVLinearGradient" -isystem "${PODS_ROOT}/Headers/Public/React" -isystem "${PODS_ROOT}/Headers/Public/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BVLinearGradient" -l"React" -l"stdc++" -l"yoga" -framework "Foundation" -framework "JavaScriptCore" -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}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig new file mode 100644 index 000000000..b7bc1c319 --- /dev/null +++ b/ios/Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig @@ -0,0 +1,9 @@ +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/BVLinearGradient" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/yoga" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/BVLinearGradient" "${PODS_CONFIGURATION_BUILD_DIR}/React" "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/BVLinearGradient" -isystem "${PODS_ROOT}/Headers/Public/React" -isystem "${PODS_ROOT}/Headers/Public/yoga" +OTHER_LDFLAGS = $(inherited) -ObjC -l"BVLinearGradient" -l"React" -l"stdc++" -l"yoga" -framework "Foundation" -framework "JavaScriptCore" -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}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/ios/Pods/Target Support Files/React/React-dummy.m b/ios/Pods/Target Support Files/React/React-dummy.m new file mode 100644 index 000000000..c68c3ec38 --- /dev/null +++ b/ios/Pods/Target Support Files/React/React-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_React : NSObject +@end +@implementation PodsDummy_React +@end diff --git a/ios/Pods/Target Support Files/React/React-prefix.pch b/ios/Pods/Target Support Files/React/React-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/React/React-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/React.xcconfig b/ios/Pods/Target Support Files/React/React.xcconfig new file mode 100644 index 000000000..e7686f7dd --- /dev/null +++ b/ios/Pods/Target Support Files/React/React.xcconfig @@ -0,0 +1,12 @@ +CLANG_CXX_LANGUAGE_STANDARD = c++14 +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/React +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/React" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/React" "${PODS_ROOT}/Headers/Public/yoga" "$(PODS_TARGET_SRCROOT)/ReactCommon" +LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/yoga" +OTHER_LDFLAGS = -l"stdc++" -framework "JavaScriptCore" +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 +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/Pods/Target Support Files/yoga/yoga-dummy.m b/ios/Pods/Target Support Files/yoga/yoga-dummy.m new file mode 100644 index 000000000..927d0603f --- /dev/null +++ b/ios/Pods/Target Support Files/yoga/yoga-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_yoga : NSObject +@end +@implementation PodsDummy_yoga +@end diff --git a/ios/Pods/Target Support Files/yoga/yoga-prefix.pch b/ios/Pods/Target Support Files/yoga/yoga-prefix.pch new file mode 100644 index 000000000..beb2a2441 --- /dev/null +++ b/ios/Pods/Target Support Files/yoga/yoga-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/yoga/yoga.xcconfig b/ios/Pods/Target Support Files/yoga/yoga.xcconfig new file mode 100644 index 000000000..1641d0b9c --- /dev/null +++ b/ios/Pods/Target Support Files/yoga/yoga.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/yoga +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/yoga" "${PODS_ROOT}/Headers/Public" "${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/ReactCommon/yoga +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/ios/eSteem.xcodeproj/project.pbxproj b/ios/eSteem.xcodeproj/project.pbxproj index 269f7881d..3a6ef4642 100644 --- a/ios/eSteem.xcodeproj/project.pbxproj +++ b/ios/eSteem.xcodeproj/project.pbxproj @@ -53,6 +53,7 @@ 97CB68E330134B99813CBD33 /* rubicon-icon-font.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 33B668A778474146B48EDDE5 /* rubicon-icon-font.ttf */; }; A6DF774BBBDE4E23B12B44C3 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 59E40ABFB56F45A98B48C5FD /* Ionicons.ttf */; }; A6E164CB71ED44DBA8C55262 /* Ionicons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5A18EE681BAC4D9EA0E3FFC9 /* Ionicons.ttf */; }; + A81CB2A034F70E89E26C4E24 /* libPods-esteem.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 643A180C70346210DBCDA844 /* libPods-esteem.a */; }; A934B5C810C74463BFCED137 /* SimpleLineIcons.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 33377B2C788442ADAB844DB0 /* SimpleLineIcons.ttf */; }; ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; }; B17E55AEEBBA46B7AEEA359D /* Zocial.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 7608A479E5884AD6A4F0F31A /* Zocial.ttf */; }; @@ -435,6 +436,7 @@ 5A18EE681BAC4D9EA0E3FFC9 /* Ionicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Ionicons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Ionicons.ttf"; sourceTree = ""; }; 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; 635D32A58E2D4779AAFA7F9B /* Roboto.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Roboto.ttf; path = "../node_modules/native-base/Fonts/Roboto.ttf"; sourceTree = ""; }; + 643A180C70346210DBCDA844 /* libPods-esteem.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-esteem.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 69526F6E067C4B44BA2C7C8D /* Feather.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Feather.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Feather.ttf"; sourceTree = ""; }; 6CC37929F8C54DEFB4495E7A /* Zocial.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Zocial.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Zocial.ttf"; sourceTree = ""; }; 74B4DB231C864C1396DE4B66 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/native-base/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; @@ -448,10 +450,12 @@ 9A1426DF5C664771BF295A7D /* MaterialIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialIcons.ttf; path = "../node_modules/native-base/Fonts/MaterialIcons.ttf"; sourceTree = ""; }; A186A45E59AD4BBA92512EF2 /* libRNVectorIcons.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libRNVectorIcons.a; sourceTree = ""; }; ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = ""; }; + AED18AA05E7532F7C965FA52 /* Pods-esteem.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-esteem.debug.xcconfig"; path = "Pods/Target Support Files/Pods-esteem/Pods-esteem.debug.xcconfig"; sourceTree = ""; }; AF77DA3E98A04D22A1B088D5 /* Roboto_medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Roboto_medium.ttf; path = "../node_modules/native-base/Fonts/Roboto_medium.ttf"; sourceTree = ""; }; B9A39F8F2F40473BB249771F /* libFastImage.a */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = archive.ar; path = libFastImage.a; sourceTree = ""; }; C1D174678B2A4F12B73C1E7C /* Octicons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Octicons.ttf; path = "../node_modules/native-base/Fonts/Octicons.ttf"; sourceTree = ""; }; C36C465DAD1C4AEAB4F1FE6B /* Entypo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = Entypo.ttf; path = "../node_modules/react-native-vector-icons/Fonts/Entypo.ttf"; sourceTree = ""; }; + CA44C4EC4262D54579EED531 /* Pods-esteem.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-esteem.release.xcconfig"; path = "Pods/Target Support Files/Pods-esteem/Pods-esteem.release.xcconfig"; sourceTree = ""; }; D33F2E4718E34D19B7A36B39 /* MaterialCommunityIcons.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = MaterialCommunityIcons.ttf; path = "../node_modules/react-native-vector-icons/Fonts/MaterialCommunityIcons.ttf"; sourceTree = ""; }; EA62574B8DBC4594AC311B63 /* RNVectorIcons.xcodeproj */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = "wrapper.pb-project"; name = RNVectorIcons.xcodeproj; path = "../node_modules/react-native-vector-icons/RNVectorIcons.xcodeproj"; sourceTree = ""; }; EF6E0E3A9DF745BCB81EA5FF /* FontAwesome.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = FontAwesome.ttf; path = "../node_modules/native-base/Fonts/FontAwesome.ttf"; sourceTree = ""; }; @@ -491,6 +495,7 @@ E6C781EF62F7404A85D6B5EA /* libFastImage.a in Frameworks */, 8C72986AA22D4EEF991D46D5 /* libBVLinearGradient.a in Frameworks */, CDB5D95490BC4A75BBC7469A /* libRCTRestart.a in Frameworks */, + A81CB2A034F70E89E26C4E24 /* libPods-esteem.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -696,6 +701,7 @@ 2D16E6891FA4F8E400B85C8A /* libReact.a */, 4371B88E2945482286042D1E /* libc++.tbd */, 3DAB0E6639244A6C8D97614E /* libz.tbd */, + 643A180C70346210DBCDA844 /* libPods-esteem.a */, ); name = Frameworks; sourceTree = ""; @@ -741,6 +747,15 @@ name = Resources; sourceTree = ""; }; + 752EEB6B66E826D283732FB7 /* Pods */ = { + isa = PBXGroup; + children = ( + AED18AA05E7532F7C965FA52 /* Pods-esteem.debug.xcconfig */, + CA44C4EC4262D54579EED531 /* Pods-esteem.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; 78C398B11ACF4ADC00677621 /* Products */ = { isa = PBXGroup; children = ( @@ -793,6 +808,7 @@ 2D16E6871FA4F8E400B85C8A /* Frameworks */, 0CE14523216D06AD00282CD6 /* Recovered References */, 681A1AAA651F4CB2A3B79D72 /* Resources */, + 752EEB6B66E826D283732FB7 /* Pods */, ); indentWidth = 2; sourceTree = ""; @@ -844,6 +860,7 @@ isa = PBXNativeTarget; buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "esteem" */; buildPhases = ( + 6BC228D7B794720B30C8AE63 /* [CP] Check Pods Manifest.lock */, 13B07F871A680F5B00A75B9A /* Sources */, 13B07F8C1A680F5B00A75B9A /* Frameworks */, 13B07F8E1A680F5B00A75B9A /* Resources */, @@ -921,7 +938,7 @@ }; }; }; - buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "esteem" */; + buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "eSteem" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; @@ -1404,6 +1421,24 @@ shellPath = /bin/sh; shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; }; + 6BC228D7B794720B30C8AE63 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-esteem-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -1542,6 +1577,7 @@ }; 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = AED18AA05E7532F7C965FA52 /* Pods-esteem.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; @@ -1570,6 +1606,7 @@ }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = CA44C4EC4262D54579EED531 /* Pods-esteem.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; @@ -1899,7 +1936,7 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "esteem" */ = { + 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "eSteem" */ = { isa = XCConfigurationList; buildConfigurations = ( 83CBBA201A601CBA00E9B192 /* Debug */, diff --git a/ios/eSteem.xcworkspace/contents.xcworkspacedata b/ios/eSteem.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..09f977a0c --- /dev/null +++ b/ios/eSteem.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/components/header/view/headerView.js b/src/components/header/view/headerView.js index 0567c7e92..b8326bd0c 100644 --- a/src/components/header/view/headerView.js +++ b/src/components/header/view/headerView.js @@ -35,9 +35,16 @@ class HeaderView extends Component { return (