diff --git a/.gitignore b/.gitignore index 321956a79c..e1badf7c36 100644 --- a/.gitignore +++ b/.gitignore @@ -62,4 +62,4 @@ fastlane/Preview.html fastlane/screenshots # CocoaPods -/ios/Pods/ +ios/Pods diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ab27aaaee..ed19d3e461 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -24,20 +24,20 @@ ## [1.192.0] - 2019-06-25 ### Fix -- CalendarProvider - Fix for warning on Image 'source' type. -- ExpandableCalendar - Fix shadow/elevation style. +- CalendarProvider - fix for warning on Image 'source' type. +- ExpandableCalendar - fix shadow/elevation style. ## [1.193.0] - 2019-06-26 ### Bug Fix - ExpandableCalendar - fix for week paddings. Changing knob container height and weekDays style. -- CalendarList/item - limit headerStyle to horizontal only. +- CalendarList/item - limit 'headerStyle' to horizontal only. ## [1.194.0] - 2019-06-30 ### Added - CalendarProvider - 'onMonthChange' event returning date object and updateSource. ## [1.195.0] - 2019-07-04 -### Change +### Changed - Components' props comment format. ## [1.196.0] - 2019-07-04 @@ -58,10 +58,10 @@ ## [1.200.0] - 2019-07-18 ### Added -- ExpandableCalendar - adding testID for knob. +- ExpandableCalendar - adding 'testID' for knob. ## [1.201.0] - 2019-07-25 -### Change +### Changed - eslint - updating to version 6.1.0. - lodash - importing library instead of sub-libraries. @@ -94,13 +94,110 @@ ## [1.208.0] - 2019-08-15 ### Added - CalendarProvider - today button size for tablet. - Passing style prop to a container View. + Passing style prop to a container View. - ExpandableCalendar - adjusting vertical mode open height for tablet in both orientations. ## [1.209.0] - 2019-08-20 ### Fix -- CalendarProvider - Fix for children wrapper view. +- CalendarProvider - fix for children wrapper view. ## [1.213.0] - 2019-11-13 ### Changed - Upgrading react-native to version 61.4.0. + +## [1.214.0] - 2019-12-12 +### Fix +- Agenda - fix typo on 'scrollEnable' prop. +- ExpandableCalendar - fix passed props to CalendarList. + +## [1.215.0] - 2019-12-23 +### Added +- ExpandableCalendar - adding week scroll to closed position. + +## [1.216.0] - 2019-12-24 +### Fix +- Week - moving width style to style file. + +## [1.217.0] - 2019-12-24 +### Fix +- Week - moving width style to WeekCalendar. + +## [1.218.0] - 2020-1-12 +### Added +- AgendaList - allow text transform override for section header text. + +## [1.221.0] - 2020-1-16 +### Bug Fix +- ExpandableCalendar - fix 'renderArrow' (PR #1037). + +## [1.223.0] - 2020-1-16 +### Added +- WeekCalendar - new component. + +## [1.224.0] - 2020-1-16 +### Added +- AgendaList - allow passing 'keyExtractor'. + +## [1.225.0] - 2020-1-19 +### Bug Fix +- package.json - adding 'hoist-non-react-statics' dependency (fix issue #900). + +## [1.226.0] - 2020-1-19 +### Added +- Life cycle methods - renaming with UNSAFE_ prefix 'componentWillMount()' and 'componentWillReceiveProps()'. + +## [1.227.0] - 2020-1-19 +### Added +- AgendaList - allow passing 'stickySectionHeadersEnabled' (PR #1004). + +## [1.228.0] - 2020-1-19 +### Bug Fix +- Day custom - fix for 'selectedDayTextColor' not working (PR #995). + +## [1.229.0] - 2020-1-19 +### Added +- Calendar - adding ref to CalendarHeader (PR #986). + +## [1.230.0] - 2020-1-19 +### Fix +- Agenda - fix for calendar offset (PR #953). + +## [1.231.0] - 2020-1-19 +### Change +- Agenda - use 'initialScrollPadPosition()' (PR #948). + +## [1.232.0] - 2020-1-19 +### Bug Fix +- Day components - fix for 'disableTouchEvent' marking to disable interactions for all marking types. + +## [1.233.0] = 2020-1-19 +### Added +- Calendar - update when 'displayLoadingIndicator' changes (PR #939). + +## [1.234.0] - 2020-1-19 +### Fix +- Calendar and README - typo (PR #). + +## [1.235.0] - 2020-1-19 +### Fix +- README - typo (Pr #912). + +## [1.236.0] - 2020-1-20 +### Changed +- Agenda - 'scrollEventThrottle' from 1 to 8 (Pr #908). + +## [1.237.0] - 2020-1-20 +### Added +- CalendarHeader - re-render when 'renderArrow' changes (PR #907). + +## [1.238.0] - 2020-1-20 +### Added +- CalendarList - pass 'onEndReached' and 'onEndReachedThreshold' to FlatList (PR #893). + +## [1.239.0] - 2020-1-20 +### Added +- CalendarList - pass 'keyExtractor' (PR #883). + +## [1.240.0] - 2020-1-20 +### Added +- Day - adding 'onLongPress' support to type multi-period. diff --git a/README.md b/README.md index 7e545fe58b..9928ad0f1d 100644 --- a/README.md +++ b/README.md @@ -110,8 +110,12 @@ LocaleConfig.defaultLocale = 'fr'; showWeekNumbers={true} // Handler which gets executed when press arrow icon left. It receive a callback can go back month onPressArrowLeft={substractMonth => substractMonth()} - // Handler which gets executed when press arrow icon left. It receive a callback can go next month + // Handler which gets executed when press arrow icon right. It receive a callback can go next month onPressArrowRight={addMonth => addMonth()} + // Disable left arrow. Default = false + disableArrowLeft={true} + // Disable right arrow. Default = false + disableArrowRight={true} /> ``` @@ -286,6 +290,7 @@ The loading indicator next to month name will be displayed if `` has dotColor: '#00adf5', selectedDotColor: '#ffffff', arrowColor: 'orange', + disabledArrowColor: '#d9e1e8', monthTextColor: 'blue', indicatorColor: 'blue', textDayFontFamily: 'monospace', @@ -451,6 +456,8 @@ An advanced agenda component that can display interactive listings for calendar '2012-05-17': {marked: true}, '2012-05-18': {disabled: true} }} + // If disabledByDefaut={true} dates flaged as not disabled will be enabled. Default = false + disabledByDefault={true} // If provided, a standard RefreshControl will be added for "Pull to Refresh" functionality. Make sure to also set the refreshing prop correctly. onRefresh={() => console.log('refreshing...')} // Set this true while waiting for new data from a refresh @@ -472,7 +479,7 @@ An advanced agenda component that can display interactive listings for calendar ## Authors -* [Tautvilas Mecinskas](https://github.com/tautvilas/) - Initial code - [@tautvilas](https://twitter.com/TautviIas) +* [Tautvilas Mecinskas](https://github.com/tautvilas/) - Initial code - [@tautvilas](https://twitter.com/Tautvilas) * Katrin Zotchev - Initial design - [@katrin_zot](https://twitter.com/katrin_zot) See also the list of [contributors](https://github.com/wix/react-native-calendar-components/contributors) who participated in this project. diff --git a/example/src/screens/expandableCalendar.js b/example/src/screens/expandableCalendar.js index 4adba5cd3d..baf6bfd9d5 100644 --- a/example/src/screens/expandableCalendar.js +++ b/example/src/screens/expandableCalendar.js @@ -9,7 +9,7 @@ import { TouchableOpacity, Button } from 'react-native'; -import {ExpandableCalendar, AgendaList, CalendarProvider} from 'react-native-calendars'; +import {ExpandableCalendar, AgendaList, CalendarProvider, WeekCalendar} from 'react-native-calendars'; const today = new Date().toISOString().split('T')[0]; @@ -158,21 +158,28 @@ export default class ExpandableCalendarScreen extends Component { showTodayButton disabledOpacity={0.6} // todayBottomMargin={16} - > - + > + {this.props.weekView ? + : + } Expandable Calendar + + Week Calendar + ); } - pushScreen(screen) { + pushScreen(screen, props) { Navigation.push(this.props.componentId, { component: { name: screen, + passProps: props, options: { topBar: { title: { @@ -66,6 +70,10 @@ export default class MenuScreen extends Component { onExpandablePress() { this.pushScreen('ExpandableCalendar'); } + + onWeekPress() { + this.pushScreen('ExpandableCalendar', {weekView: true}); + } } const styles = StyleSheet.create({ diff --git a/ios/CalendarsExample.xcodeproj/project.pbxproj b/ios/CalendarsExample.xcodeproj/project.pbxproj index 85ff75cdd8..97b153d799 100644 --- a/ios/CalendarsExample.xcodeproj/project.pbxproj +++ b/ios/CalendarsExample.xcodeproj/project.pbxproj @@ -7,23 +7,11 @@ objects = { /* Begin PBXBuildFile section */ - 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; }; - 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; }; - 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; }; - 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; }; - 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; }; 00E356F31AD99517003FC87E /* CalendarsExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* CalendarsExampleTests.m */; }; - 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; }; - 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; }; - 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; }; 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; - 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; - 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; }; - 1D6E69FC7F2E9B2425D1D77C /* libPods-CalendarsExample-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D93D75C00154C59274FE89E /* libPods-CalendarsExample-tvOSTests.a */; }; - 2CDB99E6608D58608D576A5D /* libPods-CalendarsExample-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1277A2D5198F5EA937DF293F /* libPods-CalendarsExample-tvOS.a */; }; 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; @@ -37,10 +25,10 @@ 2D02E4C91E0B4AEC006451C7 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; }; 2DCD954D1E0B4F2C00145EB5 /* CalendarsExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* CalendarsExampleTests.m */; }; 398EEBBF225A4017004C3591 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 398EEBBE225A4017004C3591 /* JavaScriptCore.framework */; }; - 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; }; - 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; }; - BACCAA9AD2623CC15806F02B /* libPods-CalendarsExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C68AD48F85533570BE2335EA /* libPods-CalendarsExample.a */; }; - DF5E5BBBFE6BB67BB3F19224 /* libPods-CalendarsExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 74EF9DCBEF878A313FA65523 /* libPods-CalendarsExampleTests.a */; }; + 3A7D7CE0FDCEE61DC94F4856 /* Pods_CalendarsExample_tvOSTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E2B765FA4C520BB5FE4BA900 /* Pods_CalendarsExample_tvOSTests.framework */; }; + 4FC60C8B41A0203A6611D553 /* Pods_CalendarsExample_tvOS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3BB2A03D1C643A412632A50C /* Pods_CalendarsExample_tvOS.framework */; }; + 7BD7701C8084DC24454C5FC9 /* Pods_CalendarsExample.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F268D13D1DE22AECC009D3F /* Pods_CalendarsExample.framework */; }; + 99CF2FE76DECE7F742521EA2 /* Pods_CalendarsExampleTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 253243C6BBBACF21ABBB441D /* Pods_CalendarsExampleTests.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -315,7 +303,6 @@ 00E356EE1AD99517003FC87E /* CalendarsExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CalendarsExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 00E356F21AD99517003FC87E /* CalendarsExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CalendarsExampleTests.m; sourceTree = ""; }; - 1277A2D5198F5EA937DF293F /* libPods-CalendarsExample-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CalendarsExample-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = ""; }; 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = ""; }; 13B07F961A680F5B00A75B9A /* CalendarsExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = CalendarsExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -326,20 +313,21 @@ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = CalendarsExample/Info.plist; sourceTree = ""; }; 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = CalendarsExample/main.m; sourceTree = ""; }; 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = ""; }; + 253243C6BBBACF21ABBB441D /* Pods_CalendarsExampleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CalendarsExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 2D02E47B1E0B4A5D006451C7 /* CalendarsExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "CalendarsExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 2D02E4901E0B4A5D006451C7 /* CalendarsExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "CalendarsExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 3297F784662D20D095BF1AFB /* Pods-CalendarsExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExample.debug.xcconfig"; path = "Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.debug.xcconfig"; sourceTree = ""; }; 398EEBBE225A4017004C3591 /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; + 3BB2A03D1C643A412632A50C /* Pods_CalendarsExample_tvOS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CalendarsExample_tvOS.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 46A23C7C177DC438E0CBB3F9 /* Pods-CalendarsExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExample.release.xcconfig"; path = "Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.release.xcconfig"; sourceTree = ""; }; 4D983A3CE8EEF4AF708B8019 /* Pods-CalendarsExample-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExample-tvOS.release.xcconfig"; path = "Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.release.xcconfig"; sourceTree = ""; }; - 5D93D75C00154C59274FE89E /* libPods-CalendarsExample-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CalendarsExample-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = ""; }; - 74EF9DCBEF878A313FA65523 /* libPods-CalendarsExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CalendarsExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = ""; }; + 7F268D13D1DE22AECC009D3F /* Pods_CalendarsExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CalendarsExample.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = ""; }; 982391FF9FB86857A628840C /* Pods-CalendarsExample-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExample-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.debug.xcconfig"; sourceTree = ""; }; AC897BA667FD0C3E9D8F0D63 /* Pods-CalendarsExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.debug.xcconfig"; sourceTree = ""; }; - C68AD48F85533570BE2335EA /* libPods-CalendarsExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-CalendarsExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E2B765FA4C520BB5FE4BA900 /* Pods_CalendarsExample_tvOSTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_CalendarsExample_tvOSTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; EF4683684367395045561C12 /* Pods-CalendarsExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExampleTests.release.xcconfig"; path = "Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.release.xcconfig"; sourceTree = ""; }; EF58906124F2602DF92D1079 /* Pods-CalendarsExample-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExample-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.release.xcconfig"; sourceTree = ""; }; F437D091B67B0F0E9A569F4B /* Pods-CalendarsExample-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-CalendarsExample-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.debug.xcconfig"; sourceTree = ""; }; @@ -350,8 +338,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */, - DF5E5BBBFE6BB67BB3F19224 /* libPods-CalendarsExampleTests.a in Frameworks */, + 99CF2FE76DECE7F742521EA2 /* Pods_CalendarsExampleTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -360,18 +347,7 @@ buildActionMask = 2147483647; files = ( 398EEBBF225A4017004C3591 /* JavaScriptCore.framework in Frameworks */, - 146834051AC3E58100842450 /* libReact.a in Frameworks */, - 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */, - 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */, - 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */, - 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */, - 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */, - 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */, - 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */, - 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */, - 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */, - 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */, - BACCAA9AD2623CC15806F02B /* libPods-CalendarsExample.a in Frameworks */, + 7BD7701C8084DC24454C5FC9 /* Pods_CalendarsExample.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -387,7 +363,7 @@ 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */, 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */, 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */, - 2CDB99E6608D58608D576A5D /* libPods-CalendarsExample-tvOS.a in Frameworks */, + 4FC60C8B41A0203A6611D553 /* Pods_CalendarsExample_tvOS.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -395,7 +371,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1D6E69FC7F2E9B2425D1D77C /* libPods-CalendarsExample-tvOSTests.a in Frameworks */, + 3A7D7CE0FDCEE61DC94F4856 /* Pods_CalendarsExample_tvOSTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -522,10 +498,10 @@ isa = PBXGroup; children = ( 398EEBBE225A4017004C3591 /* JavaScriptCore.framework */, - C68AD48F85533570BE2335EA /* libPods-CalendarsExample.a */, - 1277A2D5198F5EA937DF293F /* libPods-CalendarsExample-tvOS.a */, - 5D93D75C00154C59274FE89E /* libPods-CalendarsExample-tvOSTests.a */, - 74EF9DCBEF878A313FA65523 /* libPods-CalendarsExampleTests.a */, + 7F268D13D1DE22AECC009D3F /* Pods_CalendarsExample.framework */, + 3BB2A03D1C643A412632A50C /* Pods_CalendarsExample_tvOS.framework */, + E2B765FA4C520BB5FE4BA900 /* Pods_CalendarsExample_tvOSTests.framework */, + 253243C6BBBACF21ABBB441D /* Pods_CalendarsExampleTests.framework */, ); name = Frameworks; sourceTree = ""; @@ -612,7 +588,6 @@ AC897BA667FD0C3E9D8F0D63 /* Pods-CalendarsExampleTests.debug.xcconfig */, EF4683684367395045561C12 /* Pods-CalendarsExampleTests.release.xcconfig */, ); - name = Pods; path = Pods; sourceTree = ""; }; @@ -647,6 +622,7 @@ 13B07F8C1A680F5B00A75B9A /* Frameworks */, 13B07F8E1A680F5B00A75B9A /* Resources */, 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, + A5FBE818734FD0C02F2664EB /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -724,6 +700,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -1119,6 +1096,68 @@ 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; }; + A5FBE818734FD0C02F2664EB /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-frameworks.sh", + "${BUILT_PRODUCTS_DIR}/DoubleConversion/DoubleConversion.framework", + "${BUILT_PRODUCTS_DIR}/FBReactNativeSpec/FBReactNativeSpec.framework", + "${BUILT_PRODUCTS_DIR}/Folly/folly.framework", + "${BUILT_PRODUCTS_DIR}/RCTTypeSafety/RCTTypeSafety.framework", + "${BUILT_PRODUCTS_DIR}/React-Core/React.framework", + "${BUILT_PRODUCTS_DIR}/React-CoreModules/CoreModules.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTActionSheet/RCTActionSheet.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTAnimation/RCTAnimation.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTBlob/RCTBlob.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTImage/RCTImage.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTLinking/RCTLinking.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTNetwork/RCTNetwork.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTSettings/RCTSettings.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTText/RCTText.framework", + "${BUILT_PRODUCTS_DIR}/React-RCTVibration/RCTVibration.framework", + "${BUILT_PRODUCTS_DIR}/React-cxxreact/cxxreact.framework", + "${BUILT_PRODUCTS_DIR}/React-jsi/jsi.framework", + "${BUILT_PRODUCTS_DIR}/React-jsiexecutor/jsireact.framework", + "${BUILT_PRODUCTS_DIR}/React-jsinspector/jsinspector.framework", + "${BUILT_PRODUCTS_DIR}/ReactCommon/ReactCommon.framework", + "${BUILT_PRODUCTS_DIR}/ReactNativeNavigation/ReactNativeNavigation.framework", + "${BUILT_PRODUCTS_DIR}/Yoga/yoga.framework", + "${BUILT_PRODUCTS_DIR}/glog/glog.framework", + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DoubleConversion.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBReactNativeSpec.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/folly.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTTypeSafety.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/React.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CoreModules.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTActionSheet.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTAnimation.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTBlob.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTImage.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTLinking.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTNetwork.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTSettings.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTText.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RCTVibration.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/cxxreact.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/jsi.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/jsireact.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/jsinspector.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactCommon.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactNativeNavigation.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/yoga.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/glog.framework", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; B9B132225F60F2B1428493B7 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -1259,14 +1298,9 @@ "DEBUG=1", "$(inherited)", ); - HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = CalendarsExampleTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - ); PRODUCT_NAME = "$(TARGET_NAME)"; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CalendarsExample.app/CalendarsExample"; }; @@ -1278,14 +1312,9 @@ buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; - HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = CalendarsExampleTests/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - ); PRODUCT_NAME = "$(TARGET_NAME)"; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CalendarsExample.app/CalendarsExample"; }; @@ -1298,16 +1327,10 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; DEAD_CODE_STRIPPING = NO; - HEADER_SEARCH_PATHS = "$(inherited)"; - "HEADER_SEARCH_PATHS[arch=*]" = "$(SRCROOT)/../node_modules/react-native-navigation/ios"; INFOPLIST_FILE = CalendarsExample/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-ObjC", - "-lc++", - ); PRODUCT_NAME = CalendarsExample; + TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; }; name = Debug; @@ -1318,16 +1341,10 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CURRENT_PROJECT_VERSION = 1; - HEADER_SEARCH_PATHS = "$(inherited)"; - "HEADER_SEARCH_PATHS[arch=*]" = "$(SRCROOT)/../node_modules/react-native-navigation/ios"; INFOPLIST_FILE = CalendarsExample/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-ObjC", - "-lc++", - ); PRODUCT_NAME = CalendarsExample; + TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; }; name = Release; @@ -1348,10 +1365,6 @@ HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = "CalendarsExample-tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - ); PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.CalendarsExample-tvOS"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = appletvos; @@ -1376,10 +1389,6 @@ HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = "CalendarsExample-tvOS/Info.plist"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - OTHER_LDFLAGS = ( - "-ObjC", - "-lc++", - ); PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.CalendarsExample-tvOS"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = appletvos; diff --git a/ios/CalendarsExample/Images.xcassets/AppIcon.appiconset/Contents.json b/ios/CalendarsExample/Images.xcassets/AppIcon.appiconset/Contents.json index 118c98f746..19882d568a 100644 --- a/ios/CalendarsExample/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/ios/CalendarsExample/Images.xcassets/AppIcon.appiconset/Contents.json @@ -1,5 +1,15 @@ { "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, { "idiom" : "iphone", "size" : "29x29", @@ -29,6 +39,11 @@ "idiom" : "iphone", "size" : "60x60", "scale" : "3x" + }, + { + "idiom" : "ios-marketing", + "size" : "1024x1024", + "scale" : "1x" } ], "info" : { diff --git a/ios/Podfile b/ios/Podfile index ffae59d944..3e45a1df98 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,6 +1,8 @@ platform :ios, '9.0' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' +use_frameworks! + target 'CalendarsExample' do # Pods for CalendarsExample pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector" diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 82a930cec2..defb1a6035 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -217,7 +217,7 @@ PODS: - React-cxxreact (= 0.61.4) - React-jsi (= 0.61.4) - ReactCommon/jscallinvoker (= 0.61.4) - - ReactNativeNavigation (3.4.0): + - ReactNativeNavigation (3.7.0): - React - Yoga (1.14.0) @@ -336,9 +336,9 @@ SPEC CHECKSUMS: React-RCTText: 21934e0a51d522abcd0a275407e80af45d6fd9ec React-RCTVibration: 0f76400ee3cec6edb9c125da49fed279340d145a ReactCommon: a6a294e7028ed67b926d29551aa9394fd989c24c - ReactNativeNavigation: 8c8c90fec3ee912010ce4cfb6c9678912c056b9b + ReactNativeNavigation: bed6f504aa1a4dadd151503bf99d0ef96d06847f Yoga: ba3d99dbee6c15ea6bbe3783d1f0cb1ffb79af0f -PODFILE CHECKSUM: deacfa2cdaf669acb3455389caa673da478ca9b4 +PODFILE CHECKSUM: 00d612101b1ec4226ebc5e84819632ff39846a87 COCOAPODS: 1.8.4 diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock deleted file mode 100644 index 82a930cec2..0000000000 --- a/ios/Pods/Manifest.lock +++ /dev/null @@ -1,344 +0,0 @@ -PODS: - - boost-for-react-native (1.63.0) - - DoubleConversion (1.1.6) - - FBLazyVector (0.61.4) - - FBReactNativeSpec (0.61.4): - - Folly (= 2018.10.22.00) - - RCTRequired (= 0.61.4) - - RCTTypeSafety (= 0.61.4) - - React-Core (= 0.61.4) - - React-jsi (= 0.61.4) - - ReactCommon/turbomodule/core (= 0.61.4) - - Folly (2018.10.22.00): - - boost-for-react-native - - DoubleConversion - - Folly/Default (= 2018.10.22.00) - - glog - - Folly/Default (2018.10.22.00): - - boost-for-react-native - - DoubleConversion - - glog - - glog (0.3.5) - - RCTRequired (0.61.4) - - RCTTypeSafety (0.61.4): - - FBLazyVector (= 0.61.4) - - Folly (= 2018.10.22.00) - - RCTRequired (= 0.61.4) - - React-Core (= 0.61.4) - - React (0.61.4): - - React-Core (= 0.61.4) - - React-Core/DevSupport (= 0.61.4) - - React-Core/RCTWebSocket (= 0.61.4) - - React-RCTActionSheet (= 0.61.4) - - React-RCTAnimation (= 0.61.4) - - React-RCTBlob (= 0.61.4) - - React-RCTImage (= 0.61.4) - - React-RCTLinking (= 0.61.4) - - React-RCTNetwork (= 0.61.4) - - React-RCTSettings (= 0.61.4) - - React-RCTText (= 0.61.4) - - React-RCTVibration (= 0.61.4) - - React-Core (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default (= 0.61.4) - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/CoreModulesHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/Default (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/DevSupport (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default (= 0.61.4) - - React-Core/RCTWebSocket (= 0.61.4) - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - React-jsinspector (= 0.61.4) - - Yoga - - React-Core/RCTActionSheetHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTAnimationHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTBlobHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTImageHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTLinkingHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTNetworkHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTSettingsHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTTextHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTVibrationHeaders (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-Core/RCTWebSocket (0.61.4): - - Folly (= 2018.10.22.00) - - glog - - React-Core/Default (= 0.61.4) - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsiexecutor (= 0.61.4) - - Yoga - - React-CoreModules (0.61.4): - - FBReactNativeSpec (= 0.61.4) - - Folly (= 2018.10.22.00) - - RCTTypeSafety (= 0.61.4) - - React-Core/CoreModulesHeaders (= 0.61.4) - - React-RCTImage (= 0.61.4) - - ReactCommon/turbomodule/core (= 0.61.4) - - React-cxxreact (0.61.4): - - boost-for-react-native (= 1.63.0) - - DoubleConversion - - Folly (= 2018.10.22.00) - - glog - - React-jsinspector (= 0.61.4) - - React-jsi (0.61.4): - - boost-for-react-native (= 1.63.0) - - DoubleConversion - - Folly (= 2018.10.22.00) - - glog - - React-jsi/Default (= 0.61.4) - - React-jsi/Default (0.61.4): - - boost-for-react-native (= 1.63.0) - - DoubleConversion - - Folly (= 2018.10.22.00) - - glog - - React-jsiexecutor (0.61.4): - - DoubleConversion - - Folly (= 2018.10.22.00) - - glog - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - React-jsinspector (0.61.4) - - React-RCTActionSheet (0.61.4): - - React-Core/RCTActionSheetHeaders (= 0.61.4) - - React-RCTAnimation (0.61.4): - - React-Core/RCTAnimationHeaders (= 0.61.4) - - React-RCTBlob (0.61.4): - - React-Core/RCTBlobHeaders (= 0.61.4) - - React-Core/RCTWebSocket (= 0.61.4) - - React-jsi (= 0.61.4) - - React-RCTNetwork (= 0.61.4) - - React-RCTImage (0.61.4): - - React-Core/RCTImageHeaders (= 0.61.4) - - React-RCTNetwork (= 0.61.4) - - React-RCTLinking (0.61.4): - - React-Core/RCTLinkingHeaders (= 0.61.4) - - React-RCTNetwork (0.61.4): - - React-Core/RCTNetworkHeaders (= 0.61.4) - - React-RCTSettings (0.61.4): - - React-Core/RCTSettingsHeaders (= 0.61.4) - - React-RCTText (0.61.4): - - React-Core/RCTTextHeaders (= 0.61.4) - - React-RCTVibration (0.61.4): - - React-Core/RCTVibrationHeaders (= 0.61.4) - - ReactCommon/jscallinvoker (0.61.4): - - DoubleConversion - - Folly (= 2018.10.22.00) - - glog - - React-cxxreact (= 0.61.4) - - ReactCommon/turbomodule/core (0.61.4): - - DoubleConversion - - Folly (= 2018.10.22.00) - - glog - - React-Core (= 0.61.4) - - React-cxxreact (= 0.61.4) - - React-jsi (= 0.61.4) - - ReactCommon/jscallinvoker (= 0.61.4) - - ReactNativeNavigation (3.4.0): - - React - - Yoga (1.14.0) - -DEPENDENCIES: - - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - - FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`) - - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) - - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) - - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - - React (from `../node_modules/react-native/`) - - React-Core (from `../node_modules/react-native/`) - - React-Core/DevSupport (from `../node_modules/react-native/`) - - React-Core/RCTWebSocket (from `../node_modules/react-native/`) - - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) - - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) - - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) - - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) - - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) - - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) - - React-RCTImage (from `../node_modules/react-native/Libraries/Image`) - - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`) - - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) - - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) - - React-RCTText (from `../node_modules/react-native/Libraries/Text`) - - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) - - ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`) - - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - - ReactNativeNavigation (from `../node_modules/react-native-navigation`) - - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) - -SPEC REPOS: - trunk: - - boost-for-react-native - -EXTERNAL SOURCES: - DoubleConversion: - :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" - FBLazyVector: - :path: "../node_modules/react-native/Libraries/FBLazyVector" - FBReactNativeSpec: - :path: "../node_modules/react-native/Libraries/FBReactNativeSpec" - Folly: - :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec" - glog: - :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" - RCTRequired: - :path: "../node_modules/react-native/Libraries/RCTRequired" - RCTTypeSafety: - :path: "../node_modules/react-native/Libraries/TypeSafety" - React: - :path: "../node_modules/react-native/" - React-Core: - :path: "../node_modules/react-native/" - React-CoreModules: - :path: "../node_modules/react-native/React/CoreModules" - React-cxxreact: - :path: "../node_modules/react-native/ReactCommon/cxxreact" - React-jsi: - :path: "../node_modules/react-native/ReactCommon/jsi" - React-jsiexecutor: - :path: "../node_modules/react-native/ReactCommon/jsiexecutor" - React-jsinspector: - :path: "../node_modules/react-native/ReactCommon/jsinspector" - React-RCTActionSheet: - :path: "../node_modules/react-native/Libraries/ActionSheetIOS" - React-RCTAnimation: - :path: "../node_modules/react-native/Libraries/NativeAnimation" - React-RCTBlob: - :path: "../node_modules/react-native/Libraries/Blob" - React-RCTImage: - :path: "../node_modules/react-native/Libraries/Image" - React-RCTLinking: - :path: "../node_modules/react-native/Libraries/LinkingIOS" - React-RCTNetwork: - :path: "../node_modules/react-native/Libraries/Network" - React-RCTSettings: - :path: "../node_modules/react-native/Libraries/Settings" - React-RCTText: - :path: "../node_modules/react-native/Libraries/Text" - React-RCTVibration: - :path: "../node_modules/react-native/Libraries/Vibration" - ReactCommon: - :path: "../node_modules/react-native/ReactCommon" - ReactNativeNavigation: - :path: "../node_modules/react-native-navigation" - Yoga: - :path: "../node_modules/react-native/ReactCommon/yoga" - -SPEC CHECKSUMS: - boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c - DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 - FBLazyVector: feb35a6b7f7b50f367be07f34012f34a79282fa3 - FBReactNativeSpec: 51477b84b1bf7ab6f9ef307c24e3dd675391be44 - Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51 - glog: 1f3da668190260b06b429bb211bfbee5cd790c28 - RCTRequired: f3b3fb6f4723e8e52facb229d0c75fdc76773849 - RCTTypeSafety: 2ec60de6abb1db050b56ecc4b60188026078fd10 - React: 10e0130b57e55a7cd8c3dee37c1261102ce295f4 - React-Core: 636212410772d05f3a1eb79d965df2962ca1c70b - React-CoreModules: 6f70d5e41919289c582f88c9ad9923fe5c87400a - React-cxxreact: ddecbe9157ec1743f52ea17bf8d95debc0d6e846 - React-jsi: ca921f4041505f9d5197139b2d09eeb020bb12e8 - React-jsiexecutor: 8dfb73b987afa9324e4009bdce62a18ce23d983c - React-jsinspector: d15478d0a8ada19864aa4d1cc1c697b41b3fa92f - React-RCTActionSheet: 7369b7c85f99b6299491333affd9f01f5a130c22 - React-RCTAnimation: d07be15b2bd1d06d89417eb0343f98ffd2b099a7 - React-RCTBlob: 8e0b23d95c9baa98f6b0e127e07666aaafd96c34 - React-RCTImage: 443050d14a66e8c2332e9c055f45689d23e15cc7 - React-RCTLinking: ce9a90ba155aec41be49e75ec721bbae2d48a47e - React-RCTNetwork: 41fe54bacc67dd00e6e4c4d30dd98a13e4beabc8 - React-RCTSettings: 45e3e0a6470310b2dab2ccc6d1d73121ba3ea936 - React-RCTText: 21934e0a51d522abcd0a275407e80af45d6fd9ec - React-RCTVibration: 0f76400ee3cec6edb9c125da49fed279340d145a - ReactCommon: a6a294e7028ed67b926d29551aa9394fd989c24c - ReactNativeNavigation: 8c8c90fec3ee912010ce4cfb6c9678912c056b9b - Yoga: ba3d99dbee6c15ea6bbe3783d1f0cb1ffb79af0f - -PODFILE CHECKSUM: deacfa2cdaf669acb3455389caa673da478ca9b4 - -COCOAPODS: 1.8.4 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj deleted file mode 100644 index 87c7bb2d1c..0000000000 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ /dev/null @@ -1,9454 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXAggregateTarget section */ - 1BEE828C124E6416179B904A9F66D794 /* React */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 7D7A8F1C21B9CAF2E7F03117905ED1F7 /* Build configuration list for PBXAggregateTarget "React" */; - buildPhases = ( - ); - dependencies = ( - 6DA107798B5109835373C02101D51E3E /* PBXTargetDependency */, - 0D31918A5AD70268BD5AE4EE23A141FB /* PBXTargetDependency */, - EDAA9699F59A1D14F9EB1C3976294919 /* PBXTargetDependency */, - 3B37FB95BDDFDB8C0DB16757889C8259 /* PBXTargetDependency */, - 0F74CB9731997781B169197C365CA23E /* PBXTargetDependency */, - 17C3904408A764BA4C90D168DA5D472D /* PBXTargetDependency */, - 2501EDA3000222DFFE798FC9545B3309 /* PBXTargetDependency */, - E1A987D229A9D200DE1BEBB07CA544D6 /* PBXTargetDependency */, - 835627EF16969B77D8A41E25510A5FF3 /* PBXTargetDependency */, - F1C7F18095E6016390D9B3347858CF9B /* PBXTargetDependency */, - ); - name = React; - }; - 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 611882B4FC76DDB90E3FE11E69E82A1D /* Build configuration list for PBXAggregateTarget "FBLazyVector" */; - buildPhases = ( - ); - dependencies = ( - ); - name = FBLazyVector; - }; - E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 571F2AF26E3E3BE1CF278297E4327EA3 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; - buildPhases = ( - ); - dependencies = ( - ); - name = RCTRequired; - }; - ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */ = { - isa = PBXAggregateTarget; - buildConfigurationList = 1C693249841FC98C262A41ECDF08B7C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; - buildPhases = ( - ); - dependencies = ( - ); - name = "boost-for-react-native"; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 001FF41AFCC2F76BF10219EFBFC7E9BE /* RNNBottomTabsOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = F4EC80CF38B588C71E446A14DA9AEBAB /* RNNBottomTabsOptions.m */; }; - 0042AE0DB792403A65464988D0852197 /* RCTDataRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 45B11FDF024B33D06FBD455A641647E1 /* RCTDataRequestHandler.m */; }; - 00535233D8F2FF65B7FC0C6EBBFA6660 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9636F8A6EAB9957634A88807D5E7C1 /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0055375663938D8B6B96AFD49ABDE3A2 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A64644BF144220DDE65EB521742A3AF /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0096392F77FDB42899D07B0B2F1E5C8E /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28DEC42ABB2D94A40E9264CD13F5435E /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0097EAF4E361B8E9309F03C3C3BC894A /* RNNDefaultOptionsHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 053CFF1DC4F3B34EB8613781629C2A0E /* RNNDefaultOptionsHelper.m */; }; - 00E8D813B3C673602B127358A87D5073 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = F13C9E5676219DD29EDC357BB552EB0E /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0121DBEDDB1AA17D2E699AD70C4D9C7B /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 328E002B1FD3A6FBBDA0B2EFBC1B5487 /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 0148FB2ED2D9EDA12FF4F092641313D1 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = CDA55892C9653F7685C84113AA6CEC69 /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 022888DDEC654EE7AB464AEED6B87A3E /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C0C4440D8051CD6A17622DC4BD06579E /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 023573887B510333B548FEB9A7123B04 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = A5C911F39BE442C7C87C2A57E97EBD7A /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 02403283B0D898D87EE757ED72B795B0 /* RCTDeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 778464C8C7E56616FAC21ED35D8596C8 /* RCTDeviceInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0264E8B71BF239B0FD6DFF1116C1FF44 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 62BCAAD03B06469D91674966C66404C5 /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 027DCC5A7FE582E8B848E0724872A4CC /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8778FB8290FDF8708355090B05FB4A67 /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 033E56C06465350AB95C851E66D0C3DE /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = ED7D6E8105796CDA00AE6D5FB278AD55 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038E43E337374D83EA40B0E78D0EDA30 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 13DBD99C7DFED7152D5C6A624A767497 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 03935F29FA3552F9535C9D3AF7D1DB4E /* ImageParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EEDCD48B4DBBCDCD50B81FB1B6C05AA /* ImageParser.m */; }; - 03DC08A1E17A86861031DAFFE4995CA4 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F214C3643741B724B4ABE58C9193ACE /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04272B8B0242706E2193DB9AFE237F40 /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 26E12779E15333BB5D08424B7C06E75D /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 043411794F2E676AE16A417C0F12141E /* RNNTransitionStateHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 9422A0CFFEEDA369378826897E7E3F33 /* RNNTransitionStateHolder.m */; }; - 04782023478A361CC309B4E4C4B4DB48 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F78D3C905DB9CB60890A773F693A8562 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 049D14193CB592C40AC473D5A12BF529 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED7B438AA331FBA672301E40828CA56 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04A8070FC120CD75E203CFB4A072EC86 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F377FDAE59148D2CDDC8BF4F903DA4C /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04C31F90A3AB6C84AEDC3AF831AA2847 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = E8D613A48051BE0729DE29C815AF83F1 /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 04EF0FB604FEFD60693CF713468F015C /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C88A0A2E441EFBD9E7DBEE7E3592033 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04F2E13982C3DD03E6AADDB082D86AD5 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = D6458CDF2FBB27BCDADA2BCBFE4E39E4 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 05774B6F81CBFDA2431F43D5DF3DF7FA /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 477E7D9C4DAF43B5F7D5C53E14F22384 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 059F5E9520406C9886CDE3122B53DD5D /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F655BB983B89C85A013898BAE4ACEBA /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05E44509B5B1ED0EDD9136C2C661B37D /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CF4F08A03A6844B5D424985E5655C8F /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 05E50DAB9D3BBC5C6D06834B6E5EFD7F /* DoubleParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E36A1DA0906C7FFF7615C5814CFCEF7F /* DoubleParser.m */; }; - 05F2336AE113EAC2E88104745EB7C077 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = 52C39291AFCBFBBA77450E1A95909B20 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 067C4FD75A3C64DD1F364B699BD8D465 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = A91C3414060E1C9B6C71EE7B472C9AAA /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06E16858E605BEE050CF34C6B7BFDE4F /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C8BEA5DAED178AABFFBC4AD7B366E6F /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 070CD8EA221136BE82120EB747BE531F /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 083E81E45F1AE717249505C8EC8232A6 /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0785CE8C4A0399E52DDF73BA02FBABB2 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 55703FDAF407B0A1289B669DC7BEEF20 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 07B5831A85A2C62B2131F351FBB751D5 /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F3F61C5D3942C486563BEDDFB25A42 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07FE40ECE7265F7646860328492666A4 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 22EBFA55037966814D6654AF811A4C58 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 08067CAD54D32A94BEEFC335B1D42CC7 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 62B24E8F6E5520ED90BCC397559D2235 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11E7BD83F4F4EB40DD56838EA39DC6E1 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0870B30A087E6F67A0089DD73A2D8FFE /* RNNDotIndicatorPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD3DA5D379B17AE5CBBA0CB02C24728 /* RNNDotIndicatorPresenter.m */; }; - 08BC3C64828C296394BBA54FBF6D02BA /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4F1846B3A2F7991DF814E2113D939F3 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 08C6D59F9E8BE37D00E2ABBE15498209 /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6438CBC641DD71DC1AC645CDC4887A6C /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08EA5A173F26EF0B7CC6135BEC4B7107 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = BF2E7EAAC36F5A460FCDE5433CDCB8B4 /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0901126C9338F730EEEFD782FE0D968C /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4AF5CE6BE03C21CE4BBC4080332092EE /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 094A389794D3783B01066EED19456F05 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 27133352A24B78E3D4109AE1430020C9 /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AC22C82ED08A068A55010382925127F /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDC18B4187B8C41FAB842AEB6EC2EAD9 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0AF66FFEBEB35B0A7094F8BC80215C7F /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = E31E54F680820D1E7F294786C300A8A9 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0AF85CD37459950D464ECA01DF2E8E7A /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = E0CA454DF3746295DD9CE9CCAD57310A /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B10AB257B2B479E25080267E4F2E068 /* ImageParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1042BAF4E7777BC74F33931F18427033 /* ImageParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B6A16ECDD5C560B808AB0615164B388 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D837E33CBEA1FFB983933D1C6FA1CFB /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BFE1E850070DE8199DC04C18B16C373 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 06CB020204E4C9F4B12FFE4FCD79978A /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0C00F9D5E4C833DD00F3E775FE90CBEC /* Double.h in Headers */ = {isa = PBXBuildFile; fileRef = 55B917ADEDB2467F69934A63A0EA1723 /* Double.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C3F303A8EC8581D94805BF58DED1A9B /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DF5A3EC34EA43F9AFD71AA5FAC48A67 /* React-RCTSettings-dummy.m */; }; - 0C5DEBCF8F4FCB0168A322A897DCFF38 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F81965D089149ED2F7675B6A59EE14E7 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0C77CD28A6EA9D756DB31241D795958C /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FD26BB41525D0A741221F35256655CC /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C964E0975E2368E74CFE7BAEDC9DB67 /* UINavigationController+RNNOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B0EB53DE323BAF40BF28F0EDACE64668 /* UINavigationController+RNNOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CCE85FD3C3064726C82C932EB5F2111 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 825CB70261E32AF3B0D074CD0A2CF0B0 /* RCTInputAccessoryShadowView.m */; }; - 0D155F019C5A9F0D79C2CF2B4AAEA547 /* RNNStatusBarOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = DEE5B538CB6876F865D951DB00ED5633 /* RNNStatusBarOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D2ECAE14B7046B6124EE1689EE7484A /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FB11EC2C236B1DA20F12452DC9CABE27 /* RCTMultilineTextInputViewManager.m */; }; - 0DA1DC8BDB6EF1A0C67D7D57CC1855B9 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 018DDEDA04CA62E5EAC3B997D04D287F /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0DB416EED4CEE504F784A84AE9F2D614 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = A7BB41D8950B8051E64A4119C7105DD5 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0DD52393F1826E9CBAD360DACC7FDFCD /* RNNCustomTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F07AB8A5E67027F423838C94045AB7 /* RNNCustomTitleView.m */; }; - 0DDA476F8D2ECE90A4230467A9902E47 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE08E7B33FAE85FB15D11AAC4A96748 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DE32B6D05C19DBE87F4F52DB7447D77 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B858E7CB9AC6995BDA9E1D7E8B7A5956 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0DF134145E12774AEC85D7285E4B3CC2 /* RCTConvert+UIFontWeight.h in Headers */ = {isa = PBXBuildFile; fileRef = 15CB1896B4B1DBBBE3DB54A43555ED64 /* RCTConvert+UIFontWeight.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E51799C29B7E030F13E5A43951B1377 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A86941A0915583D8C608AB62C6D69A8 /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0E5AA5B101514B13786A2E23ED8C2D64 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = D17CA2440232E07A925309E8491A9D33 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E670E9EB31493F6DE27D33A328E805F /* UIViewController+MMDrawerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 415061B06CDA036D4F60DF41662CA468 /* UIViewController+MMDrawerController.m */; }; - 0E8D0CE1B9E2C358ACFF32940A96D93F /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 779629F1908EE528A95A40F890638DF3 /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E9EDB671926629962A2922BD11A67BC /* UIViewController+LayoutProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = EA1A7DEA39461C26BDC554504F98A16B /* UIViewController+LayoutProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EA5654038B02AADA34309D0D0A603E3 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = E0CB1705B520BC5FB0A23615647DFC5E /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EA90B65835E9AB717665933D1041015 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = E392DE667EAFEFAF53A54FD59D82D315 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EB95F5B8E3CFA1E3EB353CB88412DB8 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = FC2431932EDE38C398134223E10EA1C6 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0F9B662D2AA2962964E56C8CB5E77328 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = CA22F3159CEB5386A6C82CDA18FC432C /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 104ADD71AD277ED5E90513449E19456D /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AA1F1ED4AC987C5325177C65914EF9E4 /* RCTMultiplicationAnimatedNode.m */; }; - 10A8EC1C4DD0E2B96BD3EE609C7FDAF5 /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E93EC1D0E1FC037D0112B4A3CED4993 /* RCTUIImageViewAnimated.m */; }; - 10D75000B1D9D2C06169DC48969C5A51 /* RNNLayoutProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BC78E5962164C4FAF4739F2DA6D776 /* RNNLayoutProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 119B4D9690071AAB4BA5A26317F344AF /* RNNSideMenuOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 33FDCF928A30E0B020AC16951C95EBC0 /* RNNSideMenuOptions.m */; }; - 124D3CD707A30F680027634347ACE228 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 712B6A3563E0FD339319789FDBBE6A83 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12628BA4D3C007189740D94D020D5A13 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EC3A210858134725FDE1E769DA157E0 /* RCTBaseTextShadowView.m */; }; - 12DBA132FE357811E246660659ACD04F /* RCTFileReaderModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 76B67DD85955BFAC34F8B9A79565201A /* RCTFileReaderModule.m */; }; - 142C1508D75694497BF3ED67232080AD /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D195269B7539E7C154B536CBA5D46B /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1486156DFCD66204248160D76650E74A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65994577A7D43E89898AE39D0AA8E7DA /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 14A9AE76751436799FF5C9456EAD3C64 /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 37858B221230C80044652C3970697594 /* RCTMultilineTextInputView.m */; }; - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F93F67E29DC8474438C7E5E74185C98 /* ReactCommon-dummy.m */; }; - 14B767D8FB1181872C293B08A7114EA4 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9761B14A3C1259E73252236689C58345 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14D36078B07B8AED1651DD9BF7020843 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 013032C397C99E4423C2A4152EA6B502 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EFA79CDEF0DD7144F7A897D4978F981 /* RCTTypeSafety-dummy.m */; }; - 15262558F7AA0A1A352EC6CF0CB262A2 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 85E465A02C7D36F2548A7C64F6E02FD2 /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1585A8D91C7603D4B05FECE1A955E33F /* RNNLargeTitleOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = FF2707CB874C69785F42D90F60D3F61F /* RNNLargeTitleOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15AA568D96035A5F6578ADB09A4ADBE8 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DB5A138B0AF9BA29E8308CC2D8B2FDE /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15DBDF6C8903E7EB258F749627F30AF8 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = D1270F67E2FF5411F7E13DD17B9ADB74 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16013B8E32D0EB1F8B2369C384D58B10 /* Dictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC7C3CBD3D74E15AA130B0610A26626 /* Dictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 162CDAC1A54E09EFBB65387ED9CE74AE /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A8B9A377B48A683CE15BE2226EA28D /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1679B4AB43ACE7C9A623DA64968D481C /* NullImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 666FB1E13EE615C8503CD7CE43A40B58 /* NullImage.m */; }; - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 447DA2ED0D7A7A6B14D7D124190EA711 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1780F26357716290463DC2394A17CFEA /* RNNOverlayManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A4647EAC335697F917B30789997B624 /* RNNOverlayManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 179730EFB0F3B2FADBB467E5B85054F7 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 5C9D4774828B7DC376BFCA55B870F6C0 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17CBB9BE3934CDCEC484765E2C51B8DD /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EC42832E04430874BA6AB53C1754083 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17E56B98459AD0387E7AAAA8E843F584 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CBC8D1C2E3D734FC5309FA5DABA90D3 /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18223A50DAE53AB300337109DEA8C99B /* RNNBottomTabOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DC2110FC2512DF3D44DABFB93FB1105 /* RNNBottomTabOptions.m */; }; - 1825B2FEB1A835E1B17A0ABCB7CA9906 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6B502C194FF3A94453320004FB86384 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18A3EF109FB676474E3C48A5D6CE986B /* RCTGIFImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 118C418922485EBF4F4746402DBC0EE8 /* RCTGIFImageDecoder.m */; }; - 18C34C3A9A848DDF4751DD180B4DE0C8 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 441858F66C73E35C7DAE382D8A9BB5D7 /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 18E8EAC25CD3B08EE19B227D080345A0 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F251CCD3FAB2F22D168F2739ABDB374 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1984A935CD4660D4C82B956848E5EF5A /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 427621CE6C99E4A40D20AADAA384F4A8 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19C70B3A267F08CBF676904271D708AC /* NullNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = BFD5B4829B7922A757678722426CFC4C /* NullNumber.m */; }; - 1A5CCD6A9E653F5F0B97531077944784 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4744243BE5D5DD52E516C8B3BB09ABF1 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A875C685B44527B80CCB2EBEEB1D8F0 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D8CB0592F15FAA666275A427F9A9BA /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AB98DE085098FD60D73730F3929D28C /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 815C39E736D40B5FEF65FE40A7E705AE /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1B3D9B47C0EF7F24B5CB8020649F957B /* RNNSplitViewControllerPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = F43EF7F8B678380686B13F2E4054DF87 /* RNNSplitViewControllerPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B43DA275F423D1FD4AE1D57BBD09919 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 922C942114037F6643F08CF44AF3F900 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B4DAB13032413CBA3E801775ADFCCF2 /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 102431F87017AA45A6B3DEEB8FA7ECA1 /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1B67D5F0ACD1E9904E3AF1FD534DF4F7 /* RCTFileRequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E8FE232AE9E4390BDAA3CCCCA727427B /* RCTFileRequestHandler.m */; }; - 1B6DA67B161E142F814994ED16B7AEE0 /* RCTNetworkTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 89BFB8C5AE42818229D93BFEC2FDE576 /* RCTNetworkTask.m */; }; - 1B7A5590808DBB344784A449D1FB7AAD /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 5EFDA71B7A33483309B188002282455F /* RCTAnimatedImage.m */; }; - 1BA8A36F7017A4E0BB7EED6DDFF3B8B3 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C728B0594F15F0889C3CEF0FC98442EC /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BB4DA92F4F7AFE053BBE35DB3F71CE9 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E3C310A6D6B65A1E1092B5951195C5B /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BEB900F68E96C21FD9580A82179CB49 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F748A1FA1E9DD1B0B355DFF8EF176A96 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BFA99F8FC4F4746B2C0898C84268FA6 /* RCTAccessibilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B838255578726AAA8713710460D9393 /* RCTAccessibilityManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1C3FC792BE321692978890191B26D0ED /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B5E2BB226A9E5D827ECDAE0A3B5872 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CAB74DAED2832CD0DEFB3881E213F37 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 323D8F4BE8AFDFAFB59541AD6B134213 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1D36716FE2C157CD5F2CC043EF74AA0F /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = E78C035C14EFD10BA7AC05F82C8C5F88 /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D66E156B8AD27CCEE5E2D175E50E2B5 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C4CBE14F7A5432070195C040C059931 /* DoubleConversion-dummy.m */; }; - 1DFB8CFA389631020681A21C6CA46C39 /* RNNComponentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A7E10BABCBE8217916F653FA6C634F0 /* RNNComponentViewController.m */; }; - 1E1378A0D80A52A7D5A1D6ED687280D5 /* DotIndicatorOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FFF79D1298B1B7B436444103DA68A9D /* DotIndicatorOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E15AD91BE832AEE1E6A66F0FBB4FF2F /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = FA4702CE5DFFC8F2767486D296565305 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E40D8D2F4CF2C57B5DE6BA05F042A3C /* MMDrawerVisualState.m in Sources */ = {isa = PBXBuildFile; fileRef = BF81425EBEABE2E41C95654C24B5842C /* MMDrawerVisualState.m */; }; - 1E73BBF7421964503734E50DAC13958C /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4E7F2EC449E7D4215E070BC76F28991 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F174550A251B69028496FC8F90ABD61 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = B45E71A51E77962B6036B8A43FCE76BF /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FC45B5DFFC809E5956FEBDC623F6E56 /* Constants.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D8976AF1ECE625CFCAD95A0DD1C9F75 /* Constants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FC4660C234E87C144283B62B62D14E8 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1F5A81715E7690DA7C632AF69E66CB /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FD5630A16DFB1C22C0FD1DEBF45B426 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3187C804ADBFCA4DE139D8C6CAB1C496 /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FE2120FB51AC3CFF90430C57FBA4485 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B03198BC7CAFD5059506FFB44B7DC89 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1760BD52F1972CD36A56EC686A7FBFE9 /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 20A92E9C341E210BC90287B7E5F67616 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DD359B7DDFE52FA9CD9C4F32D0141226 /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20BC11F8E2467F25A41E2A4F41A58E01 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 10E8799B026295A0C406ABEA5A5DABC8 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 212D4F0B03BF9304919DE40DFBA78B44 /* RCTSourceCode.m in Sources */ = {isa = PBXBuildFile; fileRef = C2F458557C9FD986BF7BEAE300A6E6A4 /* RCTSourceCode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 22396DD662D670DBD1E56B46899E0A21 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = FBB61D5216A28041D736476B6CB0A25B /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 228034091EEDE7AC4B090F4CF5444CBE /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFB525A8BADDBAD75A3A7D419DF7E9D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2356903CECF523C6B278208A860F5C3D /* RCTI18nManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8162E204CBD05C00DFBE954FE5BF70C8 /* RCTI18nManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 23AC501AE9C9899D167B637EFCD37A32 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F0A34FCEADF7994FB47EA8BBF6AC51 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23BF53DD30CCD7B2A5187FC60842C4A8 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8747D67E4729DD620BC36F330B1DEB87 /* RCTHTTPRequestHandler.mm */; }; - 244546B5EF3F7CF6F1B53C53B7C7390C /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7529F537F7804FC7D5BCD10746EFD85D /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 245D13A65E049BDACB19A85D7C00F51F /* Pods-CalendarsExampleTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 26A0FE7B70E0A54D8F9A3BD4EE6FD27C /* Pods-CalendarsExampleTests-dummy.m */; }; - 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37EDF28F0FDF631CABA35E991A1696ED /* BridgeJSCallInvoker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 255DD536C167BEA493A3A93656FCB5C6 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5724669C3C8119123534D8C73D5F3F06 /* React-jsiexecutor-dummy.m */; }; - 25FCDFF01525BEA0AD9CB581EB29CBE3 /* RNNLayoutInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = EEB06BB9D563A1A3623900B7FF127F8D /* RNNLayoutInfo.m */; }; - 265F56208ABABC040F61CD5BD38ED3FC /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = A2C86738C8FAC870C3AB0F7BD1032833 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 81ABD8B8D91971D0DF4F11F4A1CCE13B /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26AD966AAC1F2B82D6126C6C5D267563 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A95203F5D10D564526A8B0ACE199714 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26FEBC129B09539B4D710E0243F907EE /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = A295436D502F9E54E923CF53EF1093D1 /* RCTUITextField.m */; }; - 275BE738D1F5CA3E936B5CFF4B820698 /* RCTDevLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E738C5E4BAD9769681B6A16630F99F3 /* RCTDevLoadingView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 27888B68B7A7E77AFAD5574BB05DE769 /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A6575C235FE505FEAF7584EBF9969A3 /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27A52C24BC312D652637032A49B2CCA7 /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF617813FBD747ED72FCF654AC045BB /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FD560B8A2B05DC9A28E9E27FF1546C1A /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 280BD4D3A0706CD550494E4CD1867FDA /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FB3E4C611C685225176645252AC58CB4 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2871E3053A692634D850C88E1C738017 /* RNNBridgeManagerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = F4904845AA14A593332F7AC37C0C3A24 /* RNNBridgeManagerDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2893017EFDD3D57B27D579DA267FBAC3 /* NoColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A73F75D8F4704EA202665B4EC5F5CEF /* NoColor.m */; }; - 299C659D2870036B20D43A18239BD98C /* VICMAImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = AC9137FA693D24F7BC2F8771EFB0110A /* VICMAImageView.m */; }; - 29D00304E4C2CDB0B64A9B206CF595AF /* RNNBridgeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9922984F5B3982A8303CA9C5FE8A77DD /* RNNBridgeManager.m */; }; - 29D3F2BF7B47DF0C4F94937B6098E6C5 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE95448B1D8FBB0BB0095E172DC37C9 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29F3FF1E86AF5E7718C197F0450A7F21 /* RNNOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B606B0F67F33623980C3AF8D4584A1B /* RNNOptions.m */; }; - 2A8F062E0D73EAE71202D313C331FF1F /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = BDF30AF7B890E090C0827A3734D2E444 /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2B234041B297B20F9CED35C940812511 /* RNNPreviewOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = F8FC928BA88DD64AC1991C1296F4A881 /* RNNPreviewOptions.m */; }; - 2BB290E9EB92FF9267B3EE91B8764C1C /* RNNBottomTabsPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 1CB5F31C63C2A9C8191AC1D6F713A9BD /* RNNBottomTabsPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BC39E4C735FD06FA0380A99B18DA970 /* Text.h in Headers */ = {isa = PBXBuildFile; fileRef = 42321FA50BCB764483F9CD4995B8F677 /* Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C132D55DB2464E431418BF78F1E73DF /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1E4E25C5296E6ED3CF707AB158CDBC54 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 2CA850EF8FBFF2CC87B5CA89D0E350C7 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = C8BD6B413C89DCCBA2396C7627F6DF44 /* RCTDiffClampAnimatedNode.m */; }; - 2CDB385F3DB95C7A9EF95F3EF07CE5E8 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = C4B352F5A71A2C1556CEE1223C20F415 /* RCTProfileTrampoline-arm64.S */; }; - 2DC001BA6A228F9E311EB433E1B77A02 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 50A377BED6F492018D5F66CC43B1ED01 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E2E6A363EE18A7BB6647267524991B5 /* RNNUIBarButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CFBFA9E9F86A2F9E95DD2ECEC9067D /* RNNUIBarButtonItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = A80FB301586F3DED2AEA9A7C04C0A45F /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E5D0AC5FD3274231FCD3B2716045DCF /* RNNBackgroundOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C4F3DC28A48898B96135FA70B134CD /* RNNBackgroundOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EB39B5FC0C0735E897588DA40917AE2 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0442186B35FD501B0AD7519A4C02B782 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EC5F52276616800F5D61FAC3AB85C63 /* UITabBarController+RNNUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AA87E2613B9530738123B9B11FDA406D /* UITabBarController+RNNUtils.m */; }; - 2ED7D798E2E1DBB942012B867BF1089D /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 334A2D4077B13A934BF49E01A264E98A /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EDEED7EE4A297A8F6B6C3AC18A0C2CD /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 43B1E55981AA02355DC849C7109F1FEB /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2EF4F8FFFCBBD5E86CD281FAB1A5A6D3 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5A3A72906F2399E0ED498B28BDAC93 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F8411BA91EB897495BAFB2C6B45ABDA /* RNNSideMenuChildVC.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB5ABB2625FA4E548A9E2FE150D9EE1 /* RNNSideMenuChildVC.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FA34ACDB9B71BEFCD11132AB76D14FD /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = CB594A1C136A93F653D4A3244DFA08EB /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 302D8233320EC4C1CDA91DDE22962C7B /* RNNSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 34923C5046743D939EF7B40B18E97241 /* RNNSegmentedControl.m */; }; - 302DD331EEAFEB6B3C43AB8594A6590F /* RNNSplitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 56DA5EC492C67F16EB91E3CEE99A0182 /* RNNSplitViewController.m */; }; - 3049352686EA4CB5C9CA6A04B0BB179B /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F2B3683EC2453E194788622CE63F90 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304B429DFD4E1375B32865983941104C /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B84DFB14D4C5ACE499155E9A4B3152ED /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 304FD67FAFB0598D3603A2463AF310D5 /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = F327FEFBCDDA924FEBF0DC759CD2E7ED /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F50A7C1442A3CD013567D6D275CC8484 /* RCTImageStoreManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3094487331FE01E458952A37E6B0C477 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = DEDC6148E06FE92E5D3928DCC93A74E3 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 30C38A539D76F5CB623A02F45A74DEF4 /* RNNElementTransitionOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D56B9820A42AD428400281647287F981 /* RNNElementTransitionOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30E0622C368845DFE52B390C3E72087E /* RNNLayoutNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DC5EB6885B4D960576C31E1DF1A0B569 /* RNNLayoutNode.m */; }; - 311FE5768BBED041DD46126C90D9DB24 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEDAB4DAFF9BB2E2800A7DEDF81F7051 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31361187E06E2B29D14780DE6B373FC9 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B696F3BA0976E6D241368F572DAC6DAA /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 314D1FDB33D6F691AB0DA1E95F15A43D /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = F4DED003C159A6C888A05B6AF81D9867 /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31C7D41E7B116B5FEEF2E73DDCBFD240 /* NullText.m in Sources */ = {isa = PBXBuildFile; fileRef = B22F688B397D75074ECC4E925A75F04D /* NullText.m */; }; - 31DD66327BF3F6A9BD5B74BB4AA7F421 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C40DB10C2855D72D64853A98A1DFF654 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 31DE610DBFDB01D7D05C7571EF421EC2 /* RNNSubtitleOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C888C33257238115BECD16ADB79B70 /* RNNSubtitleOptions.m */; }; - 31E0BC7EDF993D50D6265A19DEC22038 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 035988B6D074414297E2206411382CFD /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 320D6A0F3597B537683815BC6A76F30E /* UIColor+RNNUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 6563BDABC54B2612589EEE169A19D33D /* UIColor+RNNUtils.m */; }; - 322CEC71B014E27C5619F17E45B386CC /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE3051FC52ED46764910CFB936F2E59F /* Yoga-dummy.m */; }; - 32A3776575E03F9234B4E616AB33A4EC /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = F9203B81A9547AF7A9867DB5750EF536 /* RCTProfileTrampoline-x86_64.S */; }; - 32C8EB1FD7B4B7F1D16E9240CF3DEB71 /* RNNAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DEDC900F97C9CE330EA16DC79BCC994 /* RNNAnimator.m */; }; - 3307958AF2940D24905C8D2138EFFE6C /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D45EF495A54515638276A8335890DA5 /* RCTBaseTextInputViewManager.m */; }; - 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 384A059444DF7CF08169E7F8112C748E /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 334A7F296D9F8BC9EC98277B8252734B /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D2497678D6E1586A54294C5D30A9AA /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3359338126F874B499B3B0B05E9B99A7 /* RNNTopTabsOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 576C0CACF6A9FB0D9AE650A5709B6E8C /* RNNTopTabsOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 339444E0B842A109E18599C8B7F3A58D /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = F426DFFFC816F43AF70119B7328C49A4 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34579BD558D89809079F9C699C4BA38A /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 73B21794B5FC10B0E97D7F76E8C5F9B8 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 347104BE6C82D3EFC5A0DBE92C095B83 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 93435D1558BE7063E455377CBA45032C /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 34CB32C527933C4A7C572D2C060C7A4B /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 318695098CF9F9B065B005BEA7CB8296 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34DAA22C0906F7C5E235F9D82FC641C0 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 97752372C9650A05DB1B4343C460F6B4 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3562466D03F658D17DBFA3EF6B8FB9D9 /* RNNStackController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2241D4EA3D89CCB7B10756D42C1C3290 /* RNNStackController.m */; }; - 35900ACB5DD96360918B9DF10C4540C7 /* RNNInsetsOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 05D78E47A2C45F9F4DF087E94AFF8459 /* RNNInsetsOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35E9BC9D1C48E6DCDA7538C60B64FC31 /* RNNCustomTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D5945F8F07ABA38A2147442AB48156 /* RNNCustomTitleView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3627487AA406AC403B9D8AE865627D27 /* UINavigationController+RNNOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AF166160353D2DAAE40C5FAFE5B6690 /* UINavigationController+RNNOptions.m */; }; - 366D40DB9F9B6E7B48E91F6567BB4BCA /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = E2ABFC6B9EEF67C2FBE06EB2A58B9867 /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36AAFDC9E2976F52BDC5977045032AAD /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CA65566C0B15CB6B8230ADB63A9469E /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 371F9F1DEEE1613A4038E3B553683F13 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 132E0739023CB34E339EEF1A98D742FC /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3763FB677E5AE1F15A9A8158537EC82F /* RCTActionSheetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F7E90A10F93365A40FEA14C2EFF98CF0 /* RCTActionSheetManager.m */; }; - 37AEDAF68986E944F12085F9EFECDC1B /* RNNModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB5CF1B022082DDAC0BCC23D71022AA3 /* RNNModalManager.m */; }; - 382339DA4E05416ECF3F1A7D3D24675E /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 18120C78E15D606F488EE572B2E4C5C1 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = C793FE93C450AB0335E35A4BFE1350DB /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 383323BBF4B1C417C1F6EFF978354978 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E92EDE32655DEA85F2A30EDBA0E2797 /* React-Core-dummy.m */; }; - 3856F13AB9FFCEC6357D2149AE692951 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD907649F913C671526E75D18074D17D /* RCTNativeAnimatedNodesManager.m */; }; - 38AC1424380091E7EB1B52A694CE77B5 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = 2479B1F355CE1C29F8B05B6B9FDDEB1F /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3979D530FFA8DA58863AD814DF8F2614 /* RNNBottomTabsPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = C12A6FCB61883BDB732D34EDE3BF2692 /* RNNBottomTabsPresenter.m */; }; - 39887689F6AB599F802137A683196511 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0B852A50FCD6739C27538CAEF5EE76 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 398B07F0E0AC4AA8EC4AF1C63DCE728C /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A15703D71AB822DDE385540FCB7EB76 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 39D993F206539C591CA91BE41FBF19BB /* RNNErrorHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 624C132CA4F7794811C660B49A9DBEA6 /* RNNErrorHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A45D99D3CA3287DD963E70D03826FAA /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A956906F2D2D436BF69EB870D19E374 /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A5E56D08FE5FC0E93DF681DDE97D308 /* Bitfield.h in Headers */ = {isa = PBXBuildFile; fileRef = 56436F5C8E069F838D8FC15186251167 /* Bitfield.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A66347FEE7E2D6587ADAEFCEE91FA67 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 21F51614B536EB32BDE3EEDF7E29E02D /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A6BF122355C77A95EC23CFF4F23DC18 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A4560AA32DF372AEF3E00939CE22009E /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AA77BD1F4C8076B6E08D3259BD84FA4 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D05E987A3D4A6A0E56AE2E18BDB0EE04 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3AD470F0AAB73AEA193154970932A60D /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F9B55349216C1E05D17ABE44324E3F3 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3BD28F2A0144E1D6C83EA763376558D2 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 23A1EAF9965D3D36E1A4759573B35702 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D5B62DF47F183D11ECE7D3AE3462B93 /* UIViewController+RNNOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 441F321EC5D7B2A778CCC7F95E18504D /* UIViewController+RNNOptions.m */; }; - 3E31268BDE9BD0A33499E9C708386799 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB4AA889CC5532C22C21C50D77842C79 /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3E4A02F17570A0CD3B85AF90A6DF2F30 /* RNNCustomViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FD6AA9F1A86EC3F545AC4A8E10A2D8D /* RNNCustomViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E535024A24E899E7A968B76A1E75D4A /* RCTAsyncLocalStorage.m in Sources */ = {isa = PBXBuildFile; fileRef = 74F6C1567B22122E5531589862A333C3 /* RCTAsyncLocalStorage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3EF2B099CB26EF9B46566BBF46395276 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = E2B40F932D30B66BC7DDBDD45D5D2D31 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F0FFF242144350C7E3D639B6C566F8B /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 96A4EFBFD6D10A490E202CBE96270C3B /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F195E0D028F7A593BDD4C179370817B /* RNNLayoutNode.h in Headers */ = {isa = PBXBuildFile; fileRef = B1CBCBC4E5B9005E0C1082527F2E9537 /* RNNLayoutNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F973E8BA5B157E60BEA6885A9FBA430 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6949E40905A2A8B925417BBB4E889279 /* RCTSinglelineTextInputViewManager.m */; }; - 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 521B36C6D595E37338BC19043EFAB4E5 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FCF5C5C5C5F8BE9CCF7A31239B10BC5 /* RNNOverlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 246D273DB9A4C7034D1C640260F40870 /* RNNOverlayManager.m */; }; - 3FD44E7E0066B8D8357C822C24EA5F38 /* RNNTopTabOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B56722F346846FFBEC7A94B5B891E3 /* RNNTopTabOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FDD359957EB692791936737C0A66774 /* RCTNativeAnimatedModule.m in Sources */ = {isa = PBXBuildFile; fileRef = BAC0A693504B9CF87C54A6B6E9DB1B27 /* RCTNativeAnimatedModule.m */; }; - 40006099228CED1BC3331213770661D5 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C10D1B77107E8C1DD0A926E49FBD5257 /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4020DCFECC7091CE67C22E0BE50173D3 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D23E39890DBC55F08CEECB8E859955 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 406992DC3B54E8B8A2C17CA6AA49E6A2 /* RNNExternalComponentStore.m in Sources */ = {isa = PBXBuildFile; fileRef = E55075C1F807031264ECFE696505C406 /* RNNExternalComponentStore.m */; }; - 40A98174398ABE7BA312A26B8A549220 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E519172D5C0A0DAE45333F1161708CB /* RCTEventAnimation.m */; }; - 40D4BFB8EE204CE390964FB8DE92C636 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 018BCC9317D8B1E0A21D476975652B64 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3608241E061DE25D92D566E38A3A9C9B /* JSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 031C5965B07323877B0BE65B16336886 /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1C42C67E5338F592513E1611F442E4C1 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4205525A8438EFE1DEEE88D748BD6D9F /* IntNumberParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DCAC5A67D1922CFBB12EB1F1850D48D /* IntNumberParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4206DCBFDF14C7280463B63479B54BD2 /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = C8E9C68D7949B40160F4628B761DAE59 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 421C08A6C38A3343B52E806A047D6F6E /* RNNControllerFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = FCCAC166BDCEFBACA0AA3E8561B2066D /* RNNControllerFactory.m */; }; - 4256BCE74B770988782EE062ADD77091 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C21E20C539E128C741FF49018AFE393 /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42A905C4C966AFA69E4A7F1C6531F06D /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4AF3D25DEA8622A9422AC5499FD1D7 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42FEF202765D890326F6A6FBECEBA4EF /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1F586EFD8125D53AE0065274F8AF03 /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F4DE362A580B84FBB629F426FC93A78 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 432BBC1656B42626B53AFF647C5CCA10 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = CDB5A161AA8B089A28DA294F4B3595BD /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 434276DDEE712DFB386DC259B4CC9DDF /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FF48D94CF6C9C65A9964C9C013291EA4 /* RCTRawTextViewManager.m */; }; - 4394779C86EFD6AA2557B2040D5CB9C3 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = C05248AB2232B1870D5494DC7C31EE65 /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43CA50BAC296CE0518AD83D07B151B00 /* RNNUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 68EEE9B2163313B33F21F3AC19511331 /* RNNUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 440C7B1EDCD1A89674D97FEC95DC45E5 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FAC8FD356CEFC111420ABC01C7B51E01 /* React-cxxreact-dummy.m */; }; - 4435D7AA2CC2A78C02637BD68B3495F7 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = 399872F0187A22EA558CB9D045BD7B7D /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 443A50BAD6B505AADEF8DA43FF83B11E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 455C905A60462FEA87968F14D9CCAD71 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 447619CA477CC8883FAE09B42D813116 /* RNNStackController.h in Headers */ = {isa = PBXBuildFile; fileRef = 418AED58EBD377DF3F2157A1F166CB5F /* RNNStackController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 447D91887E4260703DB9E4CE2785A4E9 /* MMDrawerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DB6E080FFC0F25545C148F9FBA55792 /* MMDrawerController.m */; }; - 44C815885CCAC46BA17B6D2492CE9D95 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBD22D6966FBF4A9382047AB8FA1011 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44FDD8ED14E309934B6BE2CF860ED0DC /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = A61263388424BDA608FCAE004E8C0582 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 456ADC02E6A86CD322C71340BE0A9C62 /* RNNSharedElementAnimationOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = D39008DDFF75881943582DACC28D30CA /* RNNSharedElementAnimationOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 464088E186132A910A7D990F9F1910C0 /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 627072622FE6BE4F6905DD50997000CA /* RCTBaseTextInputShadowView.m */; }; - 46A635BD62CC72F1C27080CF8A1C7B39 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BC5A3A72906F2399E0ED498B28BDAC93 /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D18929E6825E93B7F249489AE6B71F /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E26DC9292171CEFCE782D662EF59A99 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 46D278F9C5E83CF09BBAE819D05041BE /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DD8E8AB8DF27D73EA050746C3E6CA29 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46E2200CF1535267C2F512105EDEEE23 /* RNNTransitionStateHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = CCE98D777DF8C4FD667F174C22029BEF /* RNNTransitionStateHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 476565767E58D0A673343909C819E64E /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 162EC7AC852D69D192FCCAAC76E5B1FE /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47A9C6D15F37FAF52E96887A1EFC87B1 /* Param.m in Sources */ = {isa = PBXBuildFile; fileRef = 33DF93CF771829D2D0F51A3B10481ADD /* Param.m */; }; - 4908BB8C62A591EC9D389D8A9772DDD3 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1162713FC9D4F1E0043A985F0A067CE2 /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 496B6621ED29DCBD6F65DBB09A5A9FF8 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA5A6FA87DDF9FBAF9B733C196DD5B7 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 497E3CB7A90DBE382E5BC10C8FDD115A /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A456078C3E5865145DBCD44ADF6BEC8C /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4A66EC92A6F217971BC5F3E575F1997B /* RCTNetInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ED3C96627B43576957E27D0C506F5FF /* RCTNetInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A9414E93BD3703FCFCA274C46384138 /* RCTImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = FE553C027FE496C8039C90D18D56E433 /* RCTImageView.m */; }; - 4B10D6C043CE76538770FCC3550A9F67 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C14302B918865FBAA823A0314CE2ADC9 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B3488F749EED7EF916BEA16B6B9A5A5 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = E996AB713DE9D81A81651BF7FED71816 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B68C390C355778468912000A6800D26 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 91396E34BF573BF8F3AD33C8D61BBA9D /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BD38420E443CB083CFEEFF28414A6FA /* RNNAnimationsTransitionDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 3694633CEE484769C00F427DA6EEAA86 /* RNNAnimationsTransitionDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BDDEE1B549BB9E67307A6732C832C21 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 146CD87FD4607DA46D1FAA57765BEF87 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4C7100D31DAB21C94C9C6F2FA818B8FC /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A61CE433E3041496AD13007E87758E7 /* NSTextStorage+FontScaling.m */; }; - 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E2BC43BD56339CA3DED66A87707C54E /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CC303549BB9AFD3C403F981F18F3384 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 159F97AA09A19B07C509E5EFE9255E74 /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D2DE79F4566C4A585B80E3E336CF508 /* RNNBackgroundOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 33D259157C3592B98A799AED1A67F633 /* RNNBackgroundOptions.m */; }; - 4D3E8247389C17906F149CF5DA6AACF3 /* NullImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A2BD766CB83AE71D9CCFB4B4BE155DA /* NullImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DC0D48E0F0A2BBDEB45790A8E8A0FC5 /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0273AE3D6F89A62F42CA168CF0CB0A8C /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4DC0EF99A792A98E615C756F7473E485 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B3104BE1411E50C8101AFFFE5D4BAA07 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DC1BCCF86B9E65B02DC5DB8F4455A3E /* UITabBarController+RNNOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 88DA73FA2AD805239382F786743EA9E2 /* UITabBarController+RNNOptions.m */; }; - 4DC6830CF399CC422C3A3BF5E7D25295 /* RNNOverlayWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 1AA3A08CEFD1A450960EC11E21848854 /* RNNOverlayWindow.m */; }; - 4DD22FF26350F89CBFCDB2C113693015 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AEF54DCA65E36DF689CF56A56B5484 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DE8A81E4D1FECE2F1679B78F99D8141 /* RNNTopBarOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = E1CC2E3FD6015F50B6D441EFFF8B6188 /* RNNTopBarOptions.m */; }; - 4DED53FF3E164ED3FEF93E8A476CACFD /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B5C36CD158A29DD76240EF90B32DE278 /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4E64C2E688CF73314249C53EB84CD78E /* RCTDevMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D0354A2FE387212321F65ACFDCE83EA /* RCTDevMenu.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4E8EA18EA26EBA67C4FC2E1E1691C5F7 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C5475642BD3CBDEE068F579A497A86 /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = E900B0B8E64B5CA201557483E7C35D62 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F9E9C6423C32717707754FE40930323 /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68B7C9B639315DF6D84671195DE6623A /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FCEC95A41A26EBB62C22D19D69B574E /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE62A4079BC2B9F273E23D013A8EA0A /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FDA0DB222196A13997B4607506E5B70 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 004C4439020B46439419FB9DE17D28B8 /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50504026278F5EB1BEA14F939BB08BC4 /* NullColor.m in Sources */ = {isa = PBXBuildFile; fileRef = F096FE44D32A29895D250F973CE14BB7 /* NullColor.m */; }; - 512655BF3878547B9D80AA70927553DA /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B696F3BA0976E6D241368F572DAC6DAA /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51AE0D5734F266EBF81CAA6499722FD4 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E90EA48CA1FB495759ED8E40E01ED04 /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51EF57F1D787852EF18B7187233A68CB /* RNNTopTabsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 09BCF8555612025718BFAC1053E96B74 /* RNNTopTabsViewController.m */; }; - 5269C45252469588E803A63AA26D02C8 /* RNNBasePresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 73163FA6594E465CD60D2E57079B072E /* RNNBasePresenter.m */; }; - 52CD8B3C11C7FE04DA3055A76C3B0AB0 /* RNNUIBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C43630BD4053C637F032896E2A8F8DB /* RNNUIBarButtonItem.m */; }; - 52F0506C3C8652181B051849BF626F43 /* RNNCustomViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 26913D26D061FDF9BA349D3ABE1C3C1E /* RNNCustomViewController.m */; }; - 53AA6059EE6324EB47BF661BE690829A /* RNNReactComponentRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EDD080A80620681365654753CE9BEB1 /* RNNReactComponentRegistry.m */; }; - 53C95CB9BF21F51E83BEF6CAB1F581A3 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = D3316F06E55BCA94C595A9C19FFAB91B /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 549346DB10591018128C257F694E6798 /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C227C9B03F6D2B827A3CCAF9C0F2BB96 /* RCTImageUtils.m */; }; - 54CABAE8AE8D18D057F28DF3F46B373B /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A22176877F17A27D2F00994D43D8022D /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54DC3F2B6818036E06CD8A58CC183B31 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2702042AA830A67EAB0339CC661191A /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 557C67B026376AB2E51A67CA84039EB5 /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0F77649262CBAA120B770DDFC5EDD0 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55AE0EF82E1627EF0406E4A8674E1D05 /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9D8B2254ACE50199D2188FC16ECAF4 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55B28461B46694058CDDC6C43389FD19 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FB9828E2904A75CAF4A1397AD6492C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55E581F6D83902BCE791164032CD8FA9 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 31E20DACE2BEA29DD5F84C7311C8F5BB /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55EEBDE59E0A883F0C07E36E0DACF077 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 41E1B3E21C11EF845CFA1F0AE2F49297 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55FDA4D8A9B683716B29854F7A63435C /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = C954DF3D8E96AC4E949B25D6FE4A2022 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5603C322DB36DA799A47DB4A285BF27A /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5220CEA7D5D4583F3A823DE07EE01D65 /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 57191A4DFF880DA0DB7B86E707247807 /* RCTLinkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6031DCDD2C80B324CB9CAE157A1D0C92 /* RCTLinkingManager.m */; }; - 5773EB2B62A725F578ED899345C8B197 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = 18E8D7247DB9EE664EDFB00FF118D6B7 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57FFE2C716B336FF876F6C49240444A8 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 095339BB0FD64A272E8CA0792E824BB7 /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5815D5E2B710B80D3DA6085CC06EE685 /* RNNTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 39402DF3D3A5ABFDAE3E588A72AC2B20 /* RNNTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 582E7546B38319D0BA4252F9F346CF89 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 5209709C390F57CD1A9473DBD142DFD2 /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5847BD8888C4642D48F1F210A996D46F /* RNNSplitViewOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B17FBE158393912112CB23A7A2AB163 /* RNNSplitViewOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 593332624F9164F4F635B9DC2AE102DB /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C25607F47F322F360C9E9E2ABC739D1 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5991D13A7076D011109A0FFCF70F869E /* NumberParser.m in Sources */ = {isa = PBXBuildFile; fileRef = D0CF3BE4A070A2916D7390E915D0D64E /* NumberParser.m */; }; - 59D018BE18A318B96852DB2E91E575E6 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E210BCF627CEB700173A70A917BB2101 /* React-RCTAnimation-dummy.m */; }; - 59EB1A99722546E787C32C975E3D8346 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F36EE8094CCCBF4FAF2FF71DEDC83AB /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59F4F1342FDFFF46569F6E4C12B4E65A /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C35E2B85C9B011A2F7A08D98F3C6B74 /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5A163E8EE856D2DE689AAC7FE306B5BE /* SideMenuOpenGestureModeParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 9E3305379C933C2E9D750F8A93845A51 /* SideMenuOpenGestureModeParser.m */; }; - 5A288BAD66D9404948F19727C698798E /* RNNDotIndicatorPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE16DB92486C28D1271077E9FF787B7 /* RNNDotIndicatorPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5AA00AFDFC089350B3C375F5A0EFA1CB /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD32DFCDAE7E7287AF689F1063AFF2FD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C25CAEFED4CDE2B4F90132A5122C44B /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = 2646FBCC43BC6F636304844AE27AFF5D /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5C7E605B4C2C181856654DC846CBEB0D /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 32645A6D361911131C08B9E20217B287 /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5C854D3133F5E775E88503B53BE0FF49 /* RNNInteractivePopAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 5425F9F3A78CB2B4016FF2F087A7D62E /* RNNInteractivePopAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D09253F8D99FC64B7C8FEACCE1AB4DD /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 435738B2F4A7CC0F0C09EB6BD9CFC17F /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D2A484D518C989D9B2BD5F422D1D286 /* RNNInteractivePopAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = B699B3B25922C8A8990E4C6E4B629D68 /* RNNInteractivePopAnimator.m */; }; - 5D783A28D42B69ED3918F66F820C8701 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9FC820B5579AEA6BB3688B0D6F2B7924 /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 5DBEE0F424A8B1B4BE4BC1DA645AF545 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 54455C6DE0B16A75284E4ABD5D199608 /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5E4EB4C1EF7092D0F5A318D85B004FB9 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F70FDAC9A15FC536022FCB66A9378A /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E5A68C8BCFE6CD15198C8BB751F058F /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 807A5644AA4D947C13BCEE5788D8A5DD /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5EA525E994EC439896B0C31DEC8895C4 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 806B4142C23D7B4C78FF61DDC21E53E7 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F121AAC26099BB274A6319E40123819 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 762DA011AADEA77F32DFBEB6CBB1B4F3 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F20378F69B97565A24B7827D383380B /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 55441AAC940A4A155522308D20985631 /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F3979C1A4B4A0BAA173A21F0192D66D /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = A028D474F9255F169047EACB6875B92B /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F53A0CABA7A223662F4D224C4F7A4F3 /* DotIndicatorParser.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC7E009030ACF17F0978C4D1167ABDF /* DotIndicatorParser.m */; }; - 5FA05CE61D75D84C7638DACCE3FA94E2 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C72840CA71F1BB5682B0E3011293B846 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60127037832EA14C085838DCE9EC2FB3 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F78C33F3ADA6EF83241BA5111BBFA730 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 601FC7F48C092C38222EC1A6AF8834F3 /* Number.h in Headers */ = {isa = PBXBuildFile; fileRef = 40287A8CFB97DAEC25E9492F728C1261 /* Number.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 607EA1AE969ED08AE9D70C856B067097 /* RCTConvert+SideMenuOpenGestureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = C47EA9425827495D437AC3FC89D67DB5 /* RCTConvert+SideMenuOpenGestureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6092F053319552DBAC04F9DE699956BA /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5F17B6676599A55BCE5F689F35D198 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 609C5C6134DBC872739FBE5A6689501F /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = C0C4440D8051CD6A17622DC4BD06579E /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60E390CFDC23281F8CA03B40ADAC5E80 /* RNNComponentOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 87C5DA0A964DB88EBBC767D52BCEDAB6 /* RNNComponentOptions.m */; }; - 610C737170990323A65A58D908F8ECA3 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 30502828C350EC7CBFBE5CE39E02DCAA /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61134ED4BA34271FCD729B3E926A8D5F /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 803B36F048E4FCA832160185B113D37E /* InspectorInterfaces.cpp */; }; - 61CDCF366CF6D25C7FD8F8938A773830 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 582DCD537DF1195D48F574F0B098718F /* React-jsi-dummy.m */; }; - 6216790D8F849F939FA06E54C1DD18F3 /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = E45179F221615A279A06F94190C1BE64 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 62200179A2DA09DD3556BA3F3D938B3C /* RNNEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 950E55DD912B2A3CAF0AAFAE54BFEFFA /* RNNEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6258BB4F4F337EA187F0B1798A9CBD0E /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 9643F59F0A5A70F23A15E364EBFDC26C /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 629F1340CB1516B2A3ED146E9827EB70 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CD32DFCDAE7E7287AF689F1063AFF2FD /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62D23A901C04CD7F513C1730D323A247 /* RNNCommandsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A5D46F13321CE337D6D7888B5DA5FC2 /* RNNCommandsHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62DAAEF83AD13CB996B63F050BBB17F2 /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = AC5967DF1BC1DC2F25A0D1D5F627DC31 /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 633350AB57B0BB34DEB7A57D9707028A /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 807FC00761C178645A8AD2EDB077FF5C /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6351A4B2CE18037E70A5C3EC3A21BA6A /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 52FC7ADD5A40E08BDB6CC5E3E10B1DFF /* RCTTransformAnimatedNode.m */; }; - 63B57C48236492E9F40FA37A65B55385 /* RNNLeafProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = F3CD491E69BF7AD280D642F418C75FB1 /* RNNLeafProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63D395BAEACD62FABB3F5355090A6C37 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35B743362D9BC24CCF53F600FB5C542E /* RCTModuloAnimatedNode.m */; }; - 6406B7EE27B553C0142B865418E8B46C /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 965716ADD5BF1EAB31925E3CD756565A /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 645D4C720010F8462425CCFB031D911D /* RNNComponentPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4411504883632D23E9581C80DD2EDBE7 /* RNNComponentPresenter.m */; }; - 64826535C2A8F075F4C7BCCB7593C1C2 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 909FC2BB5413B6748B749CD7E4EDE68D /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 649B00312A2F65FE643E119B4EA7E89A /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F8A849189879083BC6F69596EDDB099F /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 64ACE3E61195682F5F7DDA793E664D17 /* IntNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = B7ED0C2019912DC8A14DAB54BDDB66B1 /* IntNumber.m */; }; - 64C6B0BE32BF3902AB8811ABAA0E04BF /* RNNBackButtonOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4C0C8B130D8BFBEF2446A37836267E92 /* RNNBackButtonOptions.m */; }; - 65486FC879BCCAB1F84F907D455A761F /* RNNViewLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA4F6AF1D40C02B99CDEB3C16CB5738 /* RNNViewLocation.m */; }; - 6557075639645D9B80E1AA0D60659311 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F526649CE0A5A8FFCF8FF6550EF74DA /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 655726D09A744064202EC5A8693359CE /* UIViewController+RNNOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0AFA67C4067E53F58DA1811422C36A /* UIViewController+RNNOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 655E04DC8FA4D09CDDC3979CA1C9AE53 /* UIViewController+MMDrawerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 367236B9EE2C642379EA505D4F213C50 /* UIViewController+MMDrawerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6581CFC6A20D0250AA301FC1F5D69B8F /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91E1E9F914DF55120CE7D134493D3667 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 658A789159764149951332015152B9EE /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 036B4F0F58FB8230BF37E6F3ECE9284A /* RCTBlobManager.mm */; }; - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CA8D9523F3E3AC242D9E4C122C7DCCFB /* FBReactNativeSpec-dummy.m */; }; - 66B5F252959930AAF9137F4C23A88603 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 22B1C5E85BB0EEBBFD5BFF8A93B987D3 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D9528686DF0918BF31BBC329E7F30C /* RNNNavigationOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 233F95ED440531073441373EBA40D6B7 /* RNNNavigationOptions.m */; }; - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A80B3BEFAE68FF64AA96B932FE5CACD1 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6801439104733992D65F2145742DEC4E /* RNNSharedElementAnimationOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1037EE58BC7AC6FD8FF846805BE34DDC /* RNNSharedElementAnimationOptions.m */; }; - 68E1AB877BCE99BD4A8CFB22BEB0B21E /* RNNLayoutInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1C7D0E297A47F198360A65DDBE250E /* RNNLayoutInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69A0AEFD592C80C8B948C02E0DF6B28F /* Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 925C366087BC780B691035EA5B5A7818 /* Text.m */; }; - 69DFFBB6FF8F98C03F48E0D98C49DB77 /* UIView+Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D57971A1A27B70660D9061B3DAB3B01 /* UIView+Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69EC4FDEB7A374B0C5B2EB0DABC6B82C /* UIView+Utils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A510B5BF0D7642E02791F87F943CCD1 /* UIView+Utils.m */; }; - 6A0201DF3CA676FC4A8DE545E6B7F5C5 /* NullText.h in Headers */ = {isa = PBXBuildFile; fileRef = 7873028784D048FC29F696FD8BB59F98 /* NullText.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A097507AE79C26A7A5E84DF07013891 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E4EE0FBE23F7E13529451283DFB090 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A0DAB317CC818BA46A0BDFA0934C1F6 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 56CAE41B815E923F14C467766E852406 /* RCTBackedTextInputDelegateAdapter.m */; }; - 6A50D8DFC5A6BD516FDB2904FDD1D6C6 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BABCD98FE1A3317A52BD521A84551F /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A975015D0AD8679EBFB12CA7C0A5BE4 /* TextParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B2EBDC81BFAEBA9919550FB7A3CB081 /* TextParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AACDB7DEDE1E1D1809E3B818254CDC6 /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD9320D3E9D8B1AA398C4B4C0A00B1BA /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6AD85FC875A6506A689D1BE11E2A1C27 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E7CDF1F130D18D2748C7B25A5BA934B /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B6B2D01364D5C711FADEB3B66898A59 /* NullDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = F12215003A0C3F0BC3EE156EEB07B92F /* NullDictionary.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B81DE7470BD4787B439E38080D63F5E /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 939A0F30B5CC5BC995EB9E20BD590B46 /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6C26391854106ACB1C5E86E2CA670EA6 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A95203F5D10D564526A8B0ACE199714 /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6CC015227601164E0C9D5A4329C24105 /* ReactNativeNavigation.m in Sources */ = {isa = PBXBuildFile; fileRef = 70841852F39BED67F1BCD12D8D6AECA3 /* ReactNativeNavigation.m */; }; - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */ = {isa = PBXBuildFile; fileRef = EC3F91F2DE79309450FA23990DA93692 /* BridgeJSCallInvoker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D00B1315520E51085F6CFE29CCD763F /* RNNButtonOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 50374B22222677A355CC6586DB38D49C /* RNNButtonOptions.m */; }; - 6D24FA6F518AAF445D22CF8CD3D7C52C /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B03198BC7CAFD5059506FFB44B7DC89 /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D54CD4503041ADC26CB7153AD3BBC9B /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = A4217C4D86676EF0412E6F975E5DD2DE /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6D7B354116A04A4F30D397582138615D /* RNNComponentOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 75471EBACFD59D120F506EE093A8F3D9 /* RNNComponentOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D93889E50440A1291F10C1948341268 /* HMSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EEDE17E0402B0C783BF8ED5927B5CA6 /* HMSegmentedControl.m */; }; - 6E5FDDC033DB7AB946AAC9B1D6B3BDBE /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = E9B5A406ACED4FF277403ED5D737F1D4 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 6E607D29A2E1474992D8BBDF541791A0 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 12943BAEBDD20A8A231BC088AADE9E54 /* RCTImageBlurUtils.m */; }; - 6F37ACA388876B6B3C3461EC195E1CE5 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = C1F70FDAC9A15FC536022FCB66A9378A /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70A03FCE92C5F71B3E9C40475C556132 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F32B511168604F89C5615144F74BE99 /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 711D6701B3C997A040AE7E5BD3A36323 /* JSDeltaBundleClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 330982C8A2A50FD06353093989FB1B36 /* JSDeltaBundleClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 715A21D9C83BD49F83A571788BDF1BBA /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 79A4C0C3F8FB8D246DE56011F9CB611E /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71732A020D7EB1C0129FEFEAAC4AB874 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DEBAAFB865F6038D6022ADA00AD5E168 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 71C14586A721D78C8805841878B488D4 /* RCTConvert+UIBarButtonSystemItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E60C2334D474872EB1C09858BFABEE56 /* RCTConvert+UIBarButtonSystemItem.m */; }; - 71D28EFC74CE2CC90B8F9AC7D49CEA46 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 992F514B66E6CB075D43A3E8BB9B140A /* RCTPropsAnimatedNode.m */; }; - 71DA7D68337F4F395D27E9A4783410B7 /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 391E2451623FCAADBC2DD05C894C4674 /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7245E2924EC20D79B66E3E3F811F3935 /* UIViewController+Utils.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BD779E8816DA47BB6E335914EDD5FE /* UIViewController+Utils.m */; }; - 727DAEA19E5171C0C61EAAD9B3709D60 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBD22D6966FBF4A9382047AB8FA1011 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72FD087500A34583CB0EF82D43AE6169 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14207BD06B65D08BB20C5F4BD54D07A9 /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 731611E72D84C908DDFBD9C9F159C6E9 /* RNNTopBarOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E4E614C43C58D849FF2AD772F6F1D2 /* RNNTopBarOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 731C94EF3D4F29BECCEB3A8F190AF63D /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 335450844E0F151179FF4DCAD01A00BD /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73377F4054A018D16BC86A5C587E4F33 /* RCTNetInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = D51942D20A1B4F246A73D544A59C2BC7 /* RCTNetInfo.m */; }; - 735C26B0C51442BB29899FCE70506791 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 46F47A340C4F3FA6FAF428D47CFE1A50 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 735D5435720FAEB26305963B0AADD9D4 /* RNNTitleViewHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B193261C51823A4001C51A46721646 /* RNNTitleViewHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73E48857817C53C1899C14B4EE810FAD /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E39506F7F9EE6CCCF4ADDD06251B57DC /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73EAF34584909024A56469DEE0C99F5C /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = D03DBD0AFFC8242C2888CB675DDA75EE /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 745CA9D78906A77840D6F266FA495729 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = DBAE074FE3D9E4029F39DB8998C3B119 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7491D51B57CDAEDA498F32CE7EA6E4B1 /* IntNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = CA70260C8C3F951204F0867BC94DDED0 /* IntNumber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74A789173ED9EB830DA6DA6B1C37036B /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = DC8BC113D226B45339D8A3D0C7859A5C /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 74E179CF460E92B8DA9FC7D7CC50FED2 /* Number.m in Sources */ = {isa = PBXBuildFile; fileRef = D96946FFD03D744AFEE87F1802C62847 /* Number.m */; }; - 7617F1C5119A53D1EF70625A2BDD2A9F /* RNNOverlayOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = EAB87BA0B6F824D806B4A18F40DE390C /* RNNOverlayOptions.m */; }; - 76B76DEF15BFBC5F8813D1EED1DF98DD /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = D368C4177C1FA2164F46FA0E54B2E31F /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 787960B14AA58476248C5C49E24CD310 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 00CF27C1E399784436ECFA1C32F75A92 /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79018AA12A5F34A328DF9DCB98902828 /* NullColor.h in Headers */ = {isa = PBXBuildFile; fileRef = D7AA4419F67DE21415BE8040A2783A27 /* NullColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7954E4E69F110D651ECE169B652E7C21 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48F2864485F008730716D49FFAA52CE4 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 7A357E2B037D7C26308F5A40BECE6A8D /* RNNBackButtonOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2991DDD0EAEFDE1A9D056D50AF908287 /* RNNBackButtonOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A3CA2E07BBDAA0F4284E6B44F1ABCBF /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F81A22A2D215848239E067650FE646A /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A7F33946BB6F9D900AADB4221120E3E /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 63EFC38D17FDFC0D940F50D0154D9933 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AB7C2A69CD310C12A90BA91FD7B3EBA /* NullIntNumber.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D576934659F3DE1D7D753258B914686 /* NullIntNumber.m */; }; - 7AE20C38FE9D6CBAD000CB8170F2EC97 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B5E2BB226A9E5D827ECDAE0A3B5872 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B74F3BD685D22FFDAA3FB0EFC4C135B /* React-RCTActionSheet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A042396874B449715ED41EC8F243A08A /* React-RCTActionSheet-dummy.m */; }; - 7B9D619274FAEA9836D748A5D523FC85 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5175BFE53DDCD8D99599B536C5C0AE /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BC145E51F47500C208DA14AFA626B6F /* RNNComponentViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DFEF934BAB107B39B8269D27442911 /* RNNComponentViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BE4A6B148EA29599613E6A52F8F1F0F /* RNNNavigationStackManager.h in Headers */ = {isa = PBXBuildFile; fileRef = ABFC015187A9D21E74EB5C9583FB5802 /* RNNNavigationStackManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C4DAF7B9971E6EC46C57AC5B601387C /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E5AB846E7B6EC132A680BB16C120686 /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7C863A47B42508E5B2A6411C15689B13 /* RNNInsetsOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C9F0D2CE4DAEA65C220D25343B211A4 /* RNNInsetsOptions.m */; }; - 7CF19BFA6C7E22CE87E59DD79832A427 /* RNNPreviewOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = B4A68CE4EE215D7CAF524BD53A2A0CC3 /* RNNPreviewOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D14E2160A0BAD27E92DC1C96270E495 /* SideMenuOpenGestureModeParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B6DB3A98CDABF0FEB0099759A780F3A /* SideMenuOpenGestureModeParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D3E61BCDCFF4E313F374440B38AA13C /* UIViewController+SideMenuController.h in Headers */ = {isa = PBXBuildFile; fileRef = CDABC9C31A0B1BD65CFF9907EB28095E /* UIViewController+SideMenuController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D704FFC59672DA0BA57C6E7B9F4D202 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 080B5E22117B43686FAFF7BA21131215 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7DDD639460A038566BAF5099F01CBA48 /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 887324A581FBFBB59F9D0ED54FE816AC /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E2BE27034BAE948DB7786B5942AE8E0 /* RNNSideMenuController.m in Sources */ = {isa = PBXBuildFile; fileRef = 569F3E07E36C4D16D09FAD9F83C3ED5B /* RNNSideMenuController.m */; }; - 7E4C46EA5AAE89808159EAEB2AD9E070 /* Bool.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D545353038E6AB4F01A6133FABC1AB9 /* Bool.m */; }; - 7EB302D4CAD73F48A6902C8B3375EB55 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0441028D91C270CB0FD3C8132D4F3100 /* RCTVirtualTextViewManager.m */; }; - 7F4CA2CD09BB60E87CFB43AC345862D8 /* RNNModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFF83EABCD5B95AD3477110BAEA360F8 /* RNNModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F5AAEC8F73BEC8CF7D62973D8208F6C /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = 768E288F54BFFA493AA402228B73295B /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 47AFE01307A7B0453405FD3289FF6D33 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFDC81A8B022B3E9547881BF0C53428 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 42B8D24B0E77BA01FF5F1EAAF69EEC72 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80550E56228A74F2751D32FE5139BC9A /* RNNLargeTitleOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E2997B69A3010805EEC56AE8D58BEF0 /* RNNLargeTitleOptions.m */; }; - 80D4569C87D0EBCCE4B6DC81D74A6295 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = DEA6EB5ED39D325FBA35CF82920E077D /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8158D88DDD679783A59640167F6B2A66 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = E25CBEBE2F5B826D575547E0C590FCB5 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 81720DCC228080429678CB7CE1316152 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 07FD2D3157B11DF40265B2BFCB3DB8F1 /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CC62FFB67259CAEE48C5AD634C173A /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3C7EB8B3ADD18A55309B8FB2222078C9 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 81E07DC40A3D5FD65E5C8417CA28C8C3 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 725A9F844AE29195C21EA5E64A60E3A2 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 828ECAD73CC88CD6AB5CCDFABDFDE088 /* RNNScreenTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 682EA31449A74221A459882E11285198 /* RNNScreenTransition.m */; }; - 83093481DAB784A9C9A40F1D67248B62 /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = A02E324501FBDF09F5864A1CD1DDB4C8 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 836AF0719180B60DF83DFD21EA00C34D /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B202FF1924B1FEA06E24AAD57CD5550 /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 839EF34DFCF0D147C3664D883500F869 /* RNNElementFinder.m in Sources */ = {isa = PBXBuildFile; fileRef = 40B8E96BF8C364372DC5C739E7E208F6 /* RNNElementFinder.m */; }; - 83E1CCA2688CE3C442DCD34DFC269524 /* Param.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F71B2DE73283611496A7DCFDA947796 /* Param.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84356BC39FB57264519EE858FA3C972F /* RNNEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = 01C87FDC612010D9FD51B67F2228CF7B /* RNNEventEmitter.m */; }; - 848FC34ACB391923D177B35F315C2CC7 /* MMDrawerBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 7042086D4F065B6D91B3E2E5530EC780 /* MMDrawerBarButtonItem.m */; }; - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A6413EAB13B17A8A26C20AB5D1E7CF60 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 84CA18BE138F44EF0F5637B8446107A9 /* DictionaryParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 523A0FB3932F7530DE6C58BEC3B53C25 /* DictionaryParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84CAAF1547BD9FBB50DED457A22884D6 /* UIViewController+SideMenuController.m in Sources */ = {isa = PBXBuildFile; fileRef = B63B709F57AEC104C180E2655C918B14 /* UIViewController+SideMenuController.m */; }; - 84FB917F0A3218335B5A9FB2EC20FE25 /* Image.m in Sources */ = {isa = PBXBuildFile; fileRef = C084A4A1B5B5BDA13063B65656533B18 /* Image.m */; }; - 854CF0D927A05041B9EA053336504DCA /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 7900CB501EDDACDA6532B5288EFE1745 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 856CD85645E776FF4FCA9BA204268D28 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 96FB9828E2904A75CAF4A1397AD6492C /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85997D7DD00D98E5BDA170B1A99A0649 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7B6C7F1A2539D3F0FEF83702BFEE27D8 /* RCTResizeMode.m */; }; - 85EDF1B8B0FF6D7F5BD18482CD4BFC4D /* RNNReactComponentRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 18AEFE52CDF6CD1FC9B27F89E97DFF09 /* RNNReactComponentRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86D81F40446FB6198718EBAC6A899F26 /* NumberParser.h in Headers */ = {isa = PBXBuildFile; fileRef = B29B1E3D9C35BE2D808678F2B5501BFA /* NumberParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8756B5AC0A7C52042C4BA48A8EBD49B4 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F0F01DD8B3F13179E2A1FA4A6BB8EAD /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 879173753E86439CD542A1BC3D0125CE /* RNNSideMenuOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E1BA9A6104418CC9988A9F456539AA4E /* RNNSideMenuOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87A5449F2DFA8A457F23EB6C3595477D /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D9111637EB348668A292C26A2EAC47A /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8824D1213779C3B2D30D11BCD5762D07 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6F1C69F2B4F9CA1F7B4479136307A5D /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 883A922D1BFE8EDC4319E9B99444E1F5 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 190F8853B7CD375250CDC430F9C57C4F /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 024DBC0DED41BF178E4D776D4C79B34C /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8931ADAFDC99B6CF6B08EF769F178A95 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E2666355A9D8A01E6076093FC6AC896 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 898FEE7242BBAA7E1BEA777B0D626C41 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D233FCB20BC2B6222473BD0E553123B0 /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A18A2C0F83BD793AE797A8CC69D79C9 /* RNNTabBarItemCreator.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE7313D77E6244CEB86560D04AF8ECE /* RNNTabBarItemCreator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A3A8AC3807AA3CE01148A106258BE25 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBD1DB0678F11663FD34FE3294E38FC /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA9337018EB7682DE357A7CE66B37C4 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = F04A5895D938A47825A96584A8BF5F61 /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8AAF32B619408CAD2BDB4BC610C07FF5 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4BCB0FF9B2B1FD52B8C0BD5A4F9E237 /* RCTTextShadowView.m */; }; - 8B1B6F0374EB8C0DD7DFC1999FF283C3 /* BoolParser.h in Headers */ = {isa = PBXBuildFile; fileRef = D29887FC2DE221F4566B302019341437 /* BoolParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B1DD7D55C9B8F15934C9146B1BC22D5 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E16D39A69CE1891993FE6AE4FCB76DF4 /* glog-dummy.m */; }; - 8BFA0CC495C630A26304F814D6568F16 /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4F2B80BE92A8529D623C119DFAE8869B /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8C2BF29F4764DC9F98F80FC8EC651EDC /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A8EABFA83161D21E2A5BBB45E36E51F1 /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3A4C844C73E0EB3D53E11D8C53419E /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F6F8E328182CF88963035C5E3F710D /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE7133358723D1C67FA9247EA51FB2B /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 4328CAE6390B8D40D22536071F31D1F7 /* RCTTextAttributes.m */; }; - 8E4800858A378838CBC31CEC2C370775 /* RNNNavigationButtons.m in Sources */ = {isa = PBXBuildFile; fileRef = 81F426974F4E1BE8502CD0F9583A0839 /* RNNNavigationButtons.m */; }; - 8E51DA0F46072D058BFD6701155956F2 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 581DB277C6DFE06032C10679B0C335BB /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5832ECB212349455D0A3202301BB20 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = CDDC4AA8F140B686EA50E3D1DCCA0764 /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E78B89CBBAB8A08BB8A76EC306AFCED /* MMDrawerVisualState.h in Headers */ = {isa = PBXBuildFile; fileRef = AEB45211AB386CD5B88900738C8226FA /* MMDrawerVisualState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EE385DC3A9F8F0A96FC57C94A4D5A39 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 9D6060A5325D587F13E0D38C6AC29699 /* RCTDecayAnimation.m */; }; - 8FA479C3B1D39A9BE6EE22A831A7ACF0 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 69961E50E3FF9CD34AED7B5D42179506 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FA866D1356D2D54484649D124D70CA5 /* RNNSplashScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CDD487853885DB3F8B1D545C06BBCE5 /* RNNSplashScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 906844B36BE813F1185F2328AC300FF1 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = E59898A483D763EAD65BB911FD08EA04 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9096374B77475443F580E4E2D4572AE5 /* IntNumberParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 473C1FFE9D70CB260FDBA993B1BD6298 /* IntNumberParser.m */; }; - 90ED7E2A7AD727E44CB3299F1302DAA1 /* RCTVibration.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CA96248D4206079C042058B48EA9FF4 /* RCTVibration.m */; }; - 91949AC285A6BBA809491B42C7E1CCEE /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 31C140428FBEA3341534E2A3535A999E /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91DE545D7DD2FE3267E26B8620B77919 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = 21F51614B536EB32BDE3EEDF7E29E02D /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 926ED46DF3426C4C0484B7ACB10D3A53 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 8746CF3B4D756FC87FE1DAAE59C7AE2D /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92A8544B73B2FA29B9CFDE72C5FDDBB6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 90F106A05F805D1079E325A566827A0F /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92D4E5789B9623A54C7B50A60DEEB760 /* UITabBarController+RNNUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = F2C923818661C8FAB26028C501C6DFC1 /* UITabBarController+RNNUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 941A96DD0D421504D068FD078D0602E6 /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = C3D5C8179443F70EA30F12A4D8D494E2 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9546C3D6A98C620F2DB05A6503A6B3FC /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 806B4142C23D7B4C78FF61DDC21E53E7 /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96365DFDFEDC472DEA1732423F241192 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A3090E4BFC52D9D68D287FB2A637D819 /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 966E8B7C8E6DC6E3836A57319E4AC314 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = F02C61A58E46A3814A75A7859E6D7453 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 96748282A8C31ADC1EEB483B64A6B4EF /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9BAA8E5FE297E96AB972F9E1D3EEDC66 /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 96EDC793BCC6B32364716ED591C13FE9 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 81C3CC280C715C4CE8A448A0024061E6 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = C32F45F3BB59BDF29CC111F790CE3C22 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 973B16323C27A88CF7A725B8120785D2 /* RCTBundleURLProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CE5DFABEB0F74D08291FB3E4F9234F0 /* RCTBundleURLProvider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 974F9018B92107B89473E9C87D797CC8 /* UIImage+tint.m in Sources */ = {isa = PBXBuildFile; fileRef = C8ADFB973B4F5A810A75F1763F35D168 /* UIImage+tint.m */; }; - 9790146FD7BE06CF75FC91094F25DA6B /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B30BACE0722EC43A8A939DD8CD3EA94 /* RCTVirtualTextShadowView.m */; }; - 97A76F51F564C0764C07F5CA05A71116 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 8FF6724665637E865B342F2EA886CE4D /* RCTProfileTrampoline-i386.S */; }; - 97B8D23662E747327F60C3943C195D7D /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3975B4F540D1A4C18211B5A38FC2B954 /* RCTUITextView.m */; }; - 9800DC7966564B1161B1E75BC4FF8851 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7E189B725277AF78EF896963AC8C0183 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1D74792E3339E76BF78117B4ACED121 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = A9784D59E4413FE211157E1E72FD4A53 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 997BB5826E9C4807492710451F38B50D /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 08F9B6505136E757C28584DE9F557FAE /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 99D9ACF54AF303E8C8673C96A782078D /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 36EE35B2A3526F43BBA1364615213CEC /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A1503D5A59D8604310D86682FDAD21B /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = EBF009A08E7894DE82843DD0F1C994F0 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9A58A88A95A386034EBEC17AA50833DC /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B8FCB614ED4106C00E836F147C837DF0 /* RCTValueAnimatedNode.m */; }; - 9A8A331A57EC59818895B8A91AE05106 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 01DEDC73B2276B48FA5701E10C022CD6 /* RCTSinglelineTextInputView.m */; }; - 9B6011D862C3DE777B5033A993DEE577 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = D808E2D59D9C733A2D196905E4CF386B /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B6AC85F8FB41D7B8A39EEDCAF6D0185 /* RNNUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 63D3474FD84AC36AFFEDFBB30878605C /* RNNUtils.m */; }; - 9B9478C37E0B0E137F466977AC305450 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = EFF8E8FE921130CB6FDA5B3A055A3F5E /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9BDB0A9355A8B4F72059BAA4F80CA37B /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9D14304DE47E263A3BA34DCFAA167E0 /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9C24BABFEE18EA52934D28434186A63E /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = C530A2AAE3002611BC47F4DBDC0A30AB /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C86F5CFFD05C93157B0E59239E7BB11 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D55AE1C4304FCFCA2250C5CCF578F1C /* React-RCTText-dummy.m */; }; - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 66A20DB954FD6195AA2327980C175E7A /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E7D49AC41FCC1532B2568E8A372BB0C /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D229AF64A1B002B8C19803BBF09A1C6 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A3D0EE3305EA11ABDCB7F6855CA4AF9 /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9D71E2390B52C0F7A5D9EAE498DCEB54 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C8BC0D6BB8E7FCD22F83610E0CD920 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DA021A06A24EA8BA61A9A2952A1E3F0 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = EF18B3F43B65CFA9ECDF2FB8176B19E9 /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9DBED9BFDAEB9C117F404995D7BA9584 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = B8BB27849171E8B0946B7EBB904EEC99 /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9E099915C46A56363AFF03614B49DB3B /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = B39064E2DA9A997F5A77CE4930128118 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9E2903CDC0C081A339EBA603C1A127A5 /* RNNBottomTabsController.h in Headers */ = {isa = PBXBuildFile; fileRef = 09211726727067F6A7973B76E936B6D1 /* RNNBottomTabsController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E32008552879FEDA6C5F164A6117A02 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = B360BD9150C793C47FA5E394E241BBD1 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E90A63487B72EA9AD6764FBE6D983C3 /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A36571815975FC9FCA72C12CA002542 /* RCTBaseTextViewManager.m */; }; - 9EB9F21E83826E1555478815A28B90A4 /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = ADFE8829EEEFF8AE76C8B61A1476F5DE /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F312F952F7485AE6D383515E1FC4CA6 /* UISplitViewController+RNNOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E9A4B21CEA80E2A73454540BDED38848 /* UISplitViewController+RNNOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FAA60CC77CF8EF3AB8F1E3B153DE37A /* RNNSubtitleOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 88BC30E8D3EFF1C707E42C410A53202A /* RNNSubtitleOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FC9FCDE07BC3E6AF0826D7AE7F303F4 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFB525A8BADDBAD75A3A7D419DF7E9D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FCA6B4D5FA3286CD125887881B637B5 /* UIImage+tint.h in Headers */ = {isa = PBXBuildFile; fileRef = BE918DF2A718D184D55C482385581A03 /* UIImage+tint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A029F0BBBD0E1C3DAD8EFBC5277C9D88 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C1457075F76C79493731B43A3366B688 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A06205D7A934D7E5BC1E11C12C1058B4 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1F34B5ACF815BF4C849FFBD29F9630A7 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A064A91436CC6CC787FFD33AC244C46C /* DotIndicatorParser.h in Headers */ = {isa = PBXBuildFile; fileRef = E7079B32F8A394862F30C27024A1A451 /* DotIndicatorParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0B595A814659739F0CE27F19AF0E842 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 78357446BDCE3930B1D3A5D52C9C8879 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A15A919726B140341A8F8EAB5AC34792 /* NoColor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9354C46598EE367BA1F3BF631F7CF6CD /* NoColor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A160E7803A3D5D4D61911F8F764617C3 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 12A322935B776098A41D19FB0672BAD5 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A1827221095540B21D0511B9354F68DE /* RNNPushAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = DE6E720E32DD28ED3B7ABD0B8C8CFA02 /* RNNPushAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 602DA9443017AFFEE971F78601AC23A2 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1CB596EDAEF398600905BA802EC44DB /* RNNSplashScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2E72766F8E2B270DE2EC8E9556CE18 /* RNNSplashScreen.m */; }; - A1DCDE539FC4D80C8175DFBAB5466490 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EC4DF645D2E86D523A4A783918892F21 /* RCTDivisionAnimatedNode.m */; }; - A237D8910ABCF6D68AA571A6567FF5EC /* RNNBottomTabOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6BBD6E4DA7EAE081782B600CAD9DDDC /* RNNBottomTabOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2BE83DE6FF01B8F0B0E7D8B5DD9CC0D /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = A077E5CD4E57D3A75BEA838885931791 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A2C124DAF0039F63864FDE72CF633349 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4129574BFD6A1BE160BE240EE9DBA899 /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2CC22D9C36DDC05E02A7A2F9BCD7003 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 040E750C69CF2DDCE589FA708713123A /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2FF432D8E4D245C9B3589353AC6890E /* RNNSplitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E4E8CE518664A208C9DABE65DD0C282 /* RNNSplitViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A38D1D1C7A43023A1B0CA9950285C61A /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B41753D2CDADDAC0570F0807B4071FE /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3F10F7DFE8C76F15065D0018D5CF051 /* ReactNativeNavigation.h in Headers */ = {isa = PBXBuildFile; fileRef = 28412884AB13110E6724BC73C502A425 /* ReactNativeNavigation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = FDFD2AA1283D978C11A076EE0C0327BE /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABE6EBE357D347A3161C6003F6E9153E /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A5A48479F57E3BB132283132DD1C384D /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C8BC0D6BB8E7FCD22F83610E0CD920 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A63375398DB6ECAB68175CB0E4D593DB /* UIViewController+LayoutProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 450A0CF5671584834814C9B7901CC63D /* UIViewController+LayoutProtocol.m */; }; - A6D3F69B4E4C591877A0891ABEEF0DA5 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 91EAACD39C88ECA47632CDAD273FFCC4 /* React-RCTImage-dummy.m */; }; - A71AB2322E4F7D681E904143E9015E57 /* NullNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E085E4B0C1156BA4247F9D7FFE4DE5 /* NullNumber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A71E57B5FD8371D966838921ADD65DC0 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 040E750C69CF2DDCE589FA708713123A /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A77A01D80082E702AE279FAE5FD9B59B /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 39642F188BB436E9EE66AAC6BE51C26E /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A88E46AE058ADEB16B82E4AD2622D921 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = BDDC4F6E0A86ED85F4225081BDDCF96D /* RCTTextSelection.m */; }; - A8C332B7082C3722501252B6A7BF9B36 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A0CEDE46698A9AC1514BE542599830 /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F49D0AD682FAEC64FD0DFE710813EE /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D3B71655F4F0DA696B72981FDDDB3A20 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A906775665FCB9BCAEAA1F7FE7DE242E /* RNNExternalComponentStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 33093CB24CABE27F07D5F89D770811AC /* RNNExternalComponentStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A923DD393811B943A006C905B0150B32 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 318695098CF9F9B065B005BEA7CB8296 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA4D3E08FA9673ABC3E47AB124A68D75 /* RCTWebSocketExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AB30E32353BF149D2895C55653D20E1 /* RCTWebSocketExecutor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AA8A2238227A8E8D9BC6AE695FC4939E /* RNNTabBarItemCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AB707CD04C354850F9E1E18538774CE /* RNNTabBarItemCreator.m */; }; - AA9FEF3F2CC1FD02BA55E9BBF3224367 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C1457075F76C79493731B43A3366B688 /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AACB290F406EFC33A121A3A29A0F7A77 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5D425FD1C403307DD032B45FF400F1 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAE9C6975F8174F792B1A4AF70FE64A1 /* RNNBridgeModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 68B45085B541B6D667C5AA8255025B1D /* RNNBridgeModule.m */; }; - AB3D7DB1EA128DF34656E9FDFCDAEF1A /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FC56136546816E648CE0572D1F72B46 /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB6B490BE3CD6208CF2D24E3EB7C6E10 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5506189D967BB06749B3B0E48DD9DB87 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AB8F5980F963B2B8C61D08DCD8CA6396 /* Image.h in Headers */ = {isa = PBXBuildFile; fileRef = 174F9EC418031FA9FC1F500508CE8B5F /* Image.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABE34A7F75F57F78DF7BE31C00746692 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B30E73F061724D233D78D1DFAA0B86 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABEF1973E5E4D967429811B3FFC3929E /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = C8257CD18CDDA4DE7FBC3539871D42BB /* RCTProfileTrampoline-arm.S */; }; - ABF26D1DC1C9EE89971D19009929B42D /* Pods-CalendarsExample-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 272B2CCE012ADBC38A786D5790AFCF6E /* Pods-CalendarsExample-dummy.m */; }; - ABF2CC2A82B21BD83C54BC8D8459AB63 /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE3797098F9D35253F1FC23D72348F8 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACBD06187FCFB106CC66AABA8DF70D58 /* BoolParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 521300362C6D2BAF2B6B60B9B06F4B7B /* BoolParser.m */; }; - AD18B7A0E8DDDC93415D37E22B649F4A /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FAB890B5846EF19252C32D02331253 /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD51BA43873DFE8CC3C27D856A4546DB /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E03A901F89EFBB23A0989CA72C86952E /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE5CEE065C8159B8373F9DE61F2AD5C1 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = EFE5A3065915F6F490D65F2A2D1A11D0 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE8657314C673F9AAED461EF78F00E0E /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 477E7D9C4DAF43B5F7D5C53E14F22384 /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE946C5E8C66AFC10CC714C9E1C076D7 /* RNNSideMenuChildVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 88F1EB33EE3EFA8766E883F361EF8DE8 /* RNNSideMenuChildVC.m */; }; - AF1B27C6FB5F1552E8E3CDB62EB948A3 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65EE387CB2C6A55611FC826472EB7635 /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - AF4FD6E0CA58CB479546E1AFD54E4053 /* RNNFontAttributesCreator.h in Headers */ = {isa = PBXBuildFile; fileRef = D58231930B03B56441B9AC0814C006E8 /* RNNFontAttributesCreator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFA988F46AAC347C3B02DAD46AF0F9D4 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = EEC2D1F71686D8BB3ACF9F1E3A685B83 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFC5CCEEB415C4C3F17B65A333B6A056 /* RNNButtonOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = EB60D70CB48AB3257E82E10DA899A445 /* RNNButtonOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0262F59F567CC35EDBE9E329078AC8A /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4128D94331B157B05DACF5E225430B10 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B084CFF79C9861F55BE5D25D33FB2E4D /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 37545C27CC0D1FE12E8AAA7C9CA2B47A /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0B59FA17582A70333F69C23652A32D6 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 4A65832BD774C014CBA1965EDE268F18 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B0C3BAC20AEE45C41108A912CA956933 /* RCTHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 19F01492934189897F6E84F97052B85C /* RCTHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1411F31B870EAAB6FA7EA99A59F40B5 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = E37F74E1F3335B3B28071B9E2324AA57 /* RCTNetworking.mm */; }; - B146420740D7D1D582D5015783CB2B81 /* RNNAnimatedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 876A985D1A4B400C73D57FDC2AD64BCB /* RNNAnimatedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B16724A8F7C19E4FC4BD422274463B4F /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2C35A45AEF1DC9CA699AC0D605B50A8D /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B1E10520331F2345785F548074E5AB8F /* RNNBottomTabsController.m in Sources */ = {isa = PBXBuildFile; fileRef = EE0588F0CF5CF783A7BD12C4D41E1CAE /* RNNBottomTabsController.m */; }; - B1FE621929D301ECE8FC2955FC4E7968 /* RNNElementTransitionOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = AAEB8BCDAF6D516091ACCD64E1529C3D /* RNNElementTransitionOptions.m */; }; - B24DA0CD9143E6B032CDF58ED5E0289F /* Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6100B7C43DD662044B863E3342C51B95 /* Folly-dummy.m */; }; - B3539346B1C9E6FD20FE4154AF13EEC1 /* RCTRedBox.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E8AC105BBA7BDBA7E4A3EDB53648CD4 /* RCTRedBox.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B36C3742F965105E47B1599DD8C528D2 /* RNNBridgeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0012B632F7C38F04BA51052DAF272E16 /* RNNBridgeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3B86426245AD3207D9474A2D05E85ED /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C529E1955B548D8A3657FF10F2B42B75 /* React-jsinspector-dummy.m */; }; - B451AC7626B4F5571F9A2738A1658461 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 07A9A15910C5245CC5531542E9FB0428 /* RCTInterpolationAnimatedNode.m */; }; - B47DAC5CAA4AC680D3180C307BFFCED9 /* RCTPerfMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9979F1FBEB004FDF2ECA7760D53CFCDB /* RCTPerfMonitor.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B4862F28DA30304FF32E5655112D0123 /* RNNElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 05C76386F45DB14E4DF13A9C080AA918 /* RNNElement.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4DAB21BCAD302B508475FDFDB78409B /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B825BA868E6EF3158B9BC99134CE0BA /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B51985E814CD545D8F72520796A8BED1 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = 72842E90145B249D3CFC79BDD5AAE508 /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B56D6522E9DBE1544BF2B20FD944A8D8 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 204DFB1287A1AE4430453B9F93A13FD3 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B59D37D2CFF577A6226C70FAED9EA531 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3F12EB5F9B186D5A7087633F447F53FE /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - B67C1013B73E7F795FCAFF91C0414A86 /* RCTClipboard.m in Sources */ = {isa = PBXBuildFile; fileRef = F3563633992A41694B8E719D908E67AF /* RCTClipboard.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B711DC0A736D6097B0F95C7D1A976246 /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = DA8CF138276E2EAC189574DDA11F2CF4 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B73A61F34B008CCB1DAC3621D458D69B /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 14F135D48F3F4F79BCC207C6A1ECA0B5 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B76E9345993F77912E36B899C50E0D03 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = D05C96D4FFC9165534BE40514F031A57 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7FB05EBFD4986D64E4582F39D440EF9 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A4560AA32DF372AEF3E00939CE22009E /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8288C1D694F4E09B3E05A8870626172 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F1E3551FA78FD60F26B84D4DCE5C575 /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B830F43DD16D4F5704C65CC6675F45C6 /* RNNSideMenuSideOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6352E8AC4AF2F206CA7715B638AB2F9E /* RNNSideMenuSideOptions.m */; }; - B830FD8B125037CEF81FBC7D21E82DB6 /* NullBool.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D40FA84E1F55BBEE799A5AD6492A622 /* NullBool.m */; }; - B83F9F62BDE5B8069E75C2D9BC6283F9 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EFCD24FCFCB79DBBFB4DE8C20056846 /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8446A4C5BEC76D5B2D0702D8B8F9088 /* DotIndicatorOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CB67513BB58E0283ABF083343165629 /* DotIndicatorOptions.m */; }; - B847045B9594652516104C8D9F96040A /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB29CF7FADD4B5B166E1EBF1403A0F63 /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B84B0FC886B78B2A7E88863E954BB8B2 /* MMDrawerController.h in Headers */ = {isa = PBXBuildFile; fileRef = CBEB8DBAF02D9F6691FFE0CE3F5A10FC /* MMDrawerController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8658BECB241EAF328A8179AD782433E /* RCTAlertManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DB51DBFFCAFE2897F1D6AE90C5792ABB /* RCTAlertManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B87AF1C872E217F35DDF3BEE19370AD9 /* NullDouble.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F5D5CF3C3240DC85D9D4B0FAD84E3E5 /* NullDouble.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8A5E496E3069472AF4043F7E2DD332B /* RNNTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = F634691499E4B031851E00D5D45F3D03 /* RNNTransition.m */; }; - B8C46A54C9193FD97A1F9C644037740B /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BA26EEBF09A6906AEA18333731518B /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8E1B2766B8F4286673BA0B890B66089 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E6978EF46710D0841BE5A29005D93D5 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8E6AA5140889B505D7C041C2BDE358D /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 29C06FD93613186ACCFA8FA44EB9924A /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9B71E4D06047FCF2117114B0FF8BFB5 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 6449ABFF7CDAE0B823E4F4A2E19D1AC7 /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B9CE32CCD128B13B2F754DD3CB76AFE0 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CE202A6B5F205CE188F4D0AE679A90 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA09CB4C37C1EBD6534379C8AAFC1416 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 116DE783C348A71AB5605FEF29D49471 /* React-RCTBlob-dummy.m */; }; - BA32606270DBE115F0EA2654D6106588 /* UIColor+RNNUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CB77E88459E541B7EBFFD50C142C6A0C /* UIColor+RNNUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA3FC11A7C0C6E05CCD7A3FC12B22217 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = A203D26B208358AF76994BCD88BEC57C /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BB1811C9E5EA9CDA930CC94A1C1BA324 /* UISplitViewController+RNNOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF2F1F2282D1EF242CAD4B28AD85615 /* UISplitViewController+RNNOptions.m */; }; - BB26E6E8FADC6CD7E9457AC1DC9F8CEE /* Bool.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A88301B90E2EDA1BEFA309AEB09F093 /* Bool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB432B83FB526D706635D2C548CF8706 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = F92F6FA7FAC51A8FAB71C85C3F1C70DF /* RCTAnimationUtils.m */; }; - BBC20D260AE873CE3226976DE2F86C04 /* RNNViewLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = CFDC14AC300FC35151E359B1385607F7 /* RNNViewLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC078CE9778D7673FDA393A34CCD0620 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E5175BFE53DDCD8D99599B536C5C0AE /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC276FDAC773835E1EB5AF9D5408F110 /* UIImage+insets.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E8B91A7F0DCF21522059B65F8A69ED2 /* UIImage+insets.m */; }; - BD3A4AACBBA522126E917ACC75E8FA1A /* RNNAnimationsOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8319950D742594500982747AE2C8E0A2 /* RNNAnimationsOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDB5F68236AB56CC52E2222CF21E9F0F /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 58DC2051B5C1AF0F0DE4FA11D059069A /* RCTBaseTextInputView.m */; }; - BE036C47839E835DB24FD1E51E6C714A /* RNNLayoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C84FA69C99D3BD6677E7FC69AF6EA91 /* RNNLayoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE41A9F7377C9D038B8BDE65B3FB5D91 /* RNNDefaultOptionsHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 60C265A92994A15886CFD5F84077962F /* RNNDefaultOptionsHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEB36E500C7AD02AAB33B43BF82553C1 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = D4963FFC77CF5D97D4F6F0FB6A03D556 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC1052E6EC8BDA846B649FFD43F6826 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = F9FDE2BC9F3B55AB387A25B772635350 /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF5BFFED0F9BE163BFED37CECF6D034D /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 620B1999128B8E7B76C9C21D533DD6E8 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFD5C8C34E8CC301F102563A3BE077D3 /* RNNSplitViewOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = B8A03F8871AE8F3B1A27125414A7FAF3 /* RNNSplitViewOptions.m */; }; - C0131FBC1205BA0AA6879860EADB94A5 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E11B968E8BA795477E95025AEF0DA963 /* React-RCTVibration-dummy.m */; }; - C080E71D0C6CDE3C7D84D56D70CC3305 /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E821154F8A53025255D23A315D707EF /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C08B14F8E317755AB9F8F2D70FA22B16 /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = EB4FE8EFCB65F9AD3772AEA242CD6725 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C0B6128EAB81DF4B5C7ECBC60B5F4828 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3A296A00ED1AE0AC5A6048CAA73757 /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C12F7B16155CCF917AC223EB8DBC686A /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = B3841E4820B4836849047CAF5C7839E8 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C136A5CD13DC5A24785A743DE24F4215 /* RNNReactRootViewCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 5995ECE62A806083435782937BD351DF /* RNNReactRootViewCreator.m */; }; - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B390D217C66194AA3670FAD679FAD333 /* RCTImageEditingManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C183A3FDF741F37E9C84126EC6229BE5 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CEC5DAA2679116F80A8C322CF9D82A7 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C18606E7265B2067D9C3DABA552BD22C /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 379BF27D423B6B4D8B56EB11FBD28E57 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C19E8A5D19A1B49C02CBF1B71BA3D71C /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B0E8060DCFA082DEA1399E6D881C566 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C28AF797E6A2FDBA3A2FC1083AA204C8 /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 465CFF59382A8CE2B849D25D2116F625 /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2F5055E270426EE813E0A941D6B5B09 /* RNNScreenTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D232974AF4A2D80B66EEFD60F5FEE7 /* RNNScreenTransition.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C34870C7ED16DC9641A6F0E6BFADD3DE /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E0B1E9E83E3F23C9645D081598C13DAF /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3CE9B1296228D05C37E4E14CF3E4FB6 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 70D35A655DF0743FB42CEB4245D0D49E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C465CC3EF3F4442CED2AFE6D3B71E956 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A74BD18F82117122287CB4CE38DBA2C0 /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C468445B3A9C01F4B3DEBF7897799B6F /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A029B4E21A6E4DC708748040C589B913 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4F688FCAE7867B655AA233592971E0C /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3EBD82A898DC9DE5928ECBB4903D1D /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5230A9F781A3C9B4BFB1D3241CB3DD6 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 54C64BE034BA1EAD0E16992498319D4C /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5B4C06C4D28832A72CCB4CE33A10670 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 17446EB4A9A89D53D52836B661BB3034 /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6456D423D488D5F26E8FE7177B0D102 /* RNNStackPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9597A17212FCE2861BDDB702A042D1C0 /* RNNStackPresenter.m */; }; - C6A918BCE640B6BE82E998FF7433F345 /* RNNErrorHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A923AAE78CDB5BEC9ACE072850528D7 /* RNNErrorHandler.m */; }; - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B4CC989918311563C70901E5E1EDF97 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - C6D62897408D42EC391EB071DD48D8C5 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4197F6398A086CC3F296B2CC43A300A /* RCTImageShadowView.m */; }; - C728DB078687BD659BBAD389E48E594B /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77C2E37C63327D81D3350FF517884154 /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7AB0C74FACC8FB8ED7AA5E38999D2BE /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = D0937065237454C54627BFDC85C3777D /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C80C4192A1D29855072A7E895DECD200 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BCA92C806059EF6BA7271A433D4BBE8 /* RCTFrameAnimation.m */; }; - C81CB174FD8729398234BF36FD9565BF /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2363F753A490F0384E77F44CC1CF160E /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C8370AAC99798BC3AC8CA50C8FDAC950 /* RCTSettingsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DF9D49DD11CFEBF42F0A7270E5585B9D /* RCTSettingsManager.m */; }; - C919781D88E19B76B6F01FE770D86872 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FACC257CF02548488B0151181CEE749 /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C957C9DABAF85AA21729B674A1CA1E46 /* RNNOverlayWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 6759DEF127D8E02EFB2DEC5B8D147C60 /* RNNOverlayWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C96FEDFECE64D3CCEE69FDE1FCE5FE23 /* Dictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = 39C82CB2C65B23E3AA7CF0FB8EE4F751 /* Dictionary.m */; }; - C9776F9CEC65FDED38561A4CA9BE2E77 /* UIViewController+Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = F063979F6CF75179BE554F3EBE7F765C /* UIViewController+Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C99439BD4CAC66625487EAEDB45F1104 /* RNNAnimationsTransitionDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 553782007A784206D8DD0D0CC5EA1203 /* RNNAnimationsTransitionDelegate.m */; }; - C9A0C92F8A25E5580DD07C7F591250C1 /* RNNOverlayOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D6BAB40C211C277619B933ED34DC504 /* RNNOverlayOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 35AEDED1111C4273F4845F2013E40635 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - C9F4E8CB34B83F6685C5DBDE37550BB8 /* RNNStackPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = A69C3F0FC2AC55D978A0E91BBD7F29D7 /* RNNStackPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA5CDEA4E80891679C13C9E39CA91CC1 /* RNNSideMenuController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EA56FABCA70B92659AFDFF499D6B6A1 /* RNNSideMenuController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA95E8F10BEFFF3E8058884431FB52CD /* ReactNativeNavigation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 49C3241833BD2BD5CD87A68CABEFDD85 /* ReactNativeNavigation-dummy.m */; }; - CB4C98A7D4F65C9F9DF0F8ECEF5B985B /* SideMenuOpenMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FE8788DBB79180DDF30C335192467CB /* SideMenuOpenMode.m */; }; - CB63C422B363DEBF9C7FDD7142F8A8F5 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5744EBF350C62F34F03195AE14C7F857 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB65EED5B312B95000AEC2753869F310 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 63C5EA6D7E35B8328D9E57543FF3CD1E /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBB2F8ECAE8A4C59B20A0B7A87F71A6A /* RNNReactRootViewCreator.h in Headers */ = {isa = PBXBuildFile; fileRef = 264BCC78F44E8794F6C8EE37A22382B7 /* RNNReactRootViewCreator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBCF289E505A38970234BDF773007649 /* RNNTitleOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 87DFF1BBC1BB8BFFE43733E8652B0E52 /* RNNTitleOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBD84F95DFE7C7DB79E3A894F378B537 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = E05509899F6809B068C28D44DA6DBC6D /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBE354C5605EFF013C148CA5DD1A8986 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = A01AD282405DC0D6EE2178B8506685D7 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC0256A5D92A73EDBCAFFDB2F83092F2 /* RNNNavigationOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 15A6369F5DFDD59B8B43B205ECCD9B84 /* RNNNavigationOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC27914FA992B557AE4396880F993CA9 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 589E864149D6B4EC9235E1EF3B40AE99 /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC28D281A8274A85AE9F67A5164BD577 /* RNNElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 0EC6289878D36D031F21269DC68B9B77 /* RNNElement.m */; }; - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD1A5921A84A8413DD00C34BCCFEE3DA /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CCB3004A303FA33AF597BBA0ABF46F1F /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 18532025790A951F1361DE6C0140F487 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCBC7DFE55808D219BC9B1D9989B62B7 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = 7ED53615BB406EB0A939A384F5AA273A /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCE1D405A708DAE7323BFB84F0F0E4D2 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = 961FFAD4611F889FE09FD0D5560897E1 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CCE9641F0891D21F99F72305FB0EDB50 /* NullIntNumber.h in Headers */ = {isa = PBXBuildFile; fileRef = 63A5686EE92F85311D5845A729500ED3 /* NullIntNumber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD42B174C547C06175A3B735E2D6F227 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4605100A173B23FFE60EB570CD608004 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD4EA521C752BA1C838C18295EB6B86D /* RCTHelpers.m in Sources */ = {isa = PBXBuildFile; fileRef = ADE615100BF35DB9CACFF64B8273AD9D /* RCTHelpers.m */; }; - CD6EB6A8BAC4127FFD44D230AD6D83D6 /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D4A6F8A45C9258AACCA74565403D5B8 /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E48AAC107B1E5EBD6D6D57EADE536C49 /* React-CoreModules-dummy.m */; }; - CE813D3F8918A3F9BA411D7700B2AE88 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9F113C7755F018AA5B72AC0D0C5E993F /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CE8811AB4273BEA213991FB188A39FC3 /* RCTAppState.m in Sources */ = {isa = PBXBuildFile; fileRef = 3269CDCB86B3B898B6DD74EDB6599FEA /* RCTAppState.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CEB909AF4650CFE3FE73BF80DD7EC3C4 /* UITabBarController+RNNOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2056F0CFF16984D089EA55BECC7405E0 /* UITabBarController+RNNOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CECCE3C5CB8954E76878C910F4D36638 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = FB969C56EBFEEDE10BD75B908E115939 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEE60FC12681BAF5BFB1DB1C71E75CD3 /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 639A9FDEDB68B58886715691BA5D07E7 /* RCTSpringAnimation.m */; }; - CF27ED776621CED5EAD6945D637A06D9 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05BCD5C080F27CF9DAB5611A91A34289 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CF2F6A898C413424CE138F8FCA3EE03D /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 71BB78EA7C3BF3C1647C38DE4E10BCE5 /* RCTInputAccessoryViewManager.m */; }; - CF4D7A926A961308575E23457848AE9D /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F492C546D6F149D72B13F70998472D4 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CF4DAE0AB8D7F5E464F16AD5B4E5822F /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E90A72F8731FB658BD8A3B5F37D16342 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CF957B9B125F184939C84A93EF59C5AD /* DoubleParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B56B39BECDC0C9A4A857E89A10E010C /* DoubleParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFC048B31B6B735D30246460CFF0EF9B /* RNNFontAttributesCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 514AC6E19240AB3F92AD30FCFEA06CF4 /* RNNFontAttributesCreator.m */; }; - CFDC291922DFAD9F08F1F83C462D0FB2 /* RNNTopTabsOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C0DBC3BF7A8D96632DFD8035872B17 /* RNNTopTabsOptions.m */; }; - D082688B674EE2208906EF4596C6908C /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 82E8830F3920D135A25C07520071F270 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0B2FDE2BD159BE5357620B47B99C24A /* RNNTopTabOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9123B9771888D66F2B7C9BF85D5A6CD3 /* RNNTopTabOptions.m */; }; - D0D5174880B58CC2DB4B15A38AA6C951 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 67A1A57778302F4E6FD0688CF9978FEB /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D0FFF58C8032BBC8DA4503F871A52338 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = A82BA0A221562386814382E817B450DF /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D128E8CBA5A95481D8F13A9145952020 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = AC5BE92CBD4C47B291ED6FA562DCF336 /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D13551B84E815449522E6E27198CE95A /* MMExampleDrawerVisualStateManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 78564007560020F753E035FBF7687AD4 /* MMExampleDrawerVisualStateManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D15A2B9818A7C5B57C47465992BFA806 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 47C9F058625A6B2267A03E5B26B25FC1 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D15AC2DBC6AB16559AD4010FBF9F1F76 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = EE2145AC7DA3C8A98035956E748CB8F9 /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D19320FF7BBA2AB5507B23BDE4D102BD /* RNNLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8053D3DEED3FA3FF5426CDA9F50A216C /* RNNLayoutManager.m */; }; - D1A6740983B4F716160BF7478A161AAC /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = D948A6D5A87AB9E3A2D94F86F4B48C55 /* RCTSubtractionAnimatedNode.m */; }; - D2090274F10AB25196240CE3FF379E96 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 42BBE1908B08080479D342A63E92B6F2 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2E3F128183968A01722637960BB62D3 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 24B8E35C61C523F1BF521B4864FEF9CA /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3A7FA3870DB151036037D68EED9539D /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EA51B81BB608A3DD581C07DF21C757B /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D3E6EEA9641B5852C5B326C098FE7415 /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A246A3461C0E5FE85F1B3C731A6537B0 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4039B7C9D0664273E7640238C9117C6 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = 9538A2B26E41A08E25AEECA0781EC122 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4393C515A60BA3486325521F01E5CBE /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC229F29874F9BADC53ABDCD3E16212 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4A7E44648FAA7CC3DECC62D4B274945 /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = AE11805378B14C74B0E22C35E399E131 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D507E407AFBFBAAC78EE1973593F3CAD /* Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 634270CBEB618DB683EF7A470CCCBCA3 /* Color.m */; }; - D551D6EBCC58C874EAED9BECFAC7F957 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEF76F71DBB7D81CE20167BF6142B90 /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5990A20D9548425F38F87E4CAAF53E7 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F5D6D52B247DF0CAEF7BE7057869C1F /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5B418617E50BA8C15355A28E3922F87 /* RNNNavigationStackManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CC78DA59E970F6E16B1325A8E4D40A40 /* RNNNavigationStackManager.m */; }; - D5DD3CCE883CD35C77D8093818765081 /* Double.m in Sources */ = {isa = PBXBuildFile; fileRef = 982462EB908FB9EB92D2FFC16EA51758 /* Double.m */; }; - D5F121C71F32A37F09D2801055098F93 /* Color.h in Headers */ = {isa = PBXBuildFile; fileRef = E7BCE3DC03B8C5722207937419DBA697 /* Color.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D602075009B1429AB8F3F530A7CB76C1 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BF98CF122C2693B638D1FC09BFC19D /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D62FA9984E76D017A9FDDC5880FB36E2 /* RCTKeyboardObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = 768F95791F596B31864858BF21DAC5F3 /* RCTKeyboardObserver.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D64EC2A207E520CAC7FD95490FB3B420 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 3479C80AB1EA9438B5BEFD90886C8684 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D697590A49CE72C3B551D7AB750EBE2F /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 2058FC698A820826BE1AC9711815202B /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D70CC8E9D5D839CC74E2450CA3C7F493 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 60A4FCD3AA548DF5214D2E094453C2CC /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D72A307A1C972FB71199896136B9C182 /* RNNSideMenuPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = CA685D5A8B1303A8E9CD72CB916AC673 /* RNNSideMenuPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7574FFCDD69B8B601B6A582D6D22F24 /* MMDrawerController+Subclass.h in Headers */ = {isa = PBXBuildFile; fileRef = F8434108D746DAAC27267A9227D7AF2C /* MMDrawerController+Subclass.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D774C031567A4BD88C6AFB9FBE62E7BC /* HMSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D0658FB95679C37795EA06854E64B58 /* HMSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7C730E466092240BFB99F1EB5277ADA /* ColorParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 64D65603B0974AB0A5FFE89C9C2DC51F /* ColorParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8385CF35B82319278CC94CDA260AACA /* RNNBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 298565D12E8C4F1315A01E5E1C9440F9 /* RNNBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D89563D5622E4E510D435B5DDD023CF1 /* RNNAnimationConfigurationOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 83A6FB2E0990CAE8EC487AF8C46E510C /* RNNAnimationConfigurationOptions.m */; }; - D89D92599A1D5EC5414CD3CC606F60D2 /* RNNAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 68131146E46039D7D324F5B0935479FC /* RNNAnimatedView.m */; }; - D8EEAC7C783F8F8799CE65437B2336DB /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E52589935392C671AE55E0FAF1AA194 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F1DE8C7963F2429A9516DA1B744DCC /* RNNCommandsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E8B8097F70B6A4B17210AC4D1F7E3DAD /* RNNCommandsHandler.m */; }; - D91E7E6D452A3DA8FF9524AC08E8093C /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E40EE1A5278AE6E5C8265B69AB04E5C /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9AE229AB6C6D33BE92473F7EBC65B8F /* RNNTitleViewHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = DF5D8CCDEC78962FF6CCFA096A633BCA /* RNNTitleViewHelper.m */; }; - D9D8FA8989B66910B670CFFD98122F8F /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = D9BABCD98FE1A3317A52BD521A84551F /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9DF1EE668A48E101B4DE3E9BA5B5251 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F262E8F3B59C3955F489C749732B30C2 /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA0379DC5D39C25ED85E86DDB57DB940 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 888388C41C5358481F4FA3213A0A4202 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DA2AF93477179348CA18DC711882B2AE /* RNNBottomTabsOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = AD82FD75E2A81BBE54672EAB8C6BFCD2 /* RNNBottomTabsOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA99BF5B0805F8B25201F8FF0EC16D6D /* RNNSplitViewControllerPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B85AA2245996223EC84EE69A80D1BEC /* RNNSplitViewControllerPresenter.m */; }; - DAE1D53E1CB1AF01BF988E7E9D421E2D /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 00A07CA3EF719BEADD7E4DFA51690FFA /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAE3A5F5238022292E47333A1456CDF4 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9167C865A955BC28138FAD4567198012 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB237AF4E8189CBA56800FAA2DB5E354 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 500DFEB3B276ABDED5C45E343D8E6EC8 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DBE43D26DE06EE2C5DFFE92024BB14D0 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5974228F17BECE82FA19022CEE9CF345 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBF0F20F97E0297BFC11043993C870A2 /* RNNElementView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EA89DFA27ABD1CB9297923AFD8283ED /* RNNElementView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBF7A40C93CED8912C3C3FA2435FE0A9 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = FF892E41F1FED90AEE6676F39271CBBC /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC08C129DCC4AF03CC0987E719AC93FC /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EB0953FC89FD2468073AE33594B3D1 /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD14C5876BB18549C02F7C33313ADD03 /* RNNSideMenuSideOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5906ECED277A6042AA14629C87BA165D /* RNNSideMenuSideOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD85901CD7994F00F93D0D86CE71B849 /* RCTConvert+UIBarButtonSystemItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 62508F7F737ECDD4B01F5B4D220124A8 /* RCTConvert+UIBarButtonSystemItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDD7C3E67E5360C83BE85D89EEE4BBB8 /* RNNComponentViewCreator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2147A588F879A27B6CEE5009C7CEAC76 /* RNNComponentViewCreator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE019F4CC79951E8784BE707F1FFEBA1 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD92147706373775A172EBF685032629 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - DE3DDCC0F92A86B3EFA683DC54F9AE65 /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A4C74F95426F31A25DD2FD383F6DFC0 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE941FAD016BA577A594227BEC449D5E /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 75E6D2FFDCD69BF12C59DEDFB996189F /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF1AA6183C7FE6F5BA5041CAE66C1365 /* NullBool.h in Headers */ = {isa = PBXBuildFile; fileRef = 50343087FFDAAAFCCC730F1BC14B7943 /* NullBool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF96AB3308E52565A04CD6B0DFF66818 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = CBAE917460D363DFDC49C49A719365A6 /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00185F7890A51AD00E51C25BBD80D1B /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D95199542512FFE661264049CA4E7763 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E06419E42B9B82C1345952A7659EBFAD /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1F6F8E328182CF88963035C5E3F710D /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E0DEC69A5D73D0518EBAD1DC706068A4 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = A180CF3F413DD7F4AC01ADECA08CEF49 /* RCTImageCache.m */; }; - E0E9EC8DF61DD22D0C4021E2DB134EA1 /* RNNReactView.m in Sources */ = {isa = PBXBuildFile; fileRef = 80140684D6A61BEF1E352A2B445510FC /* RNNReactView.m */; }; - E11D57B973664CF5804D353ECBEA4FF2 /* RCTWebSocketModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B8ECF421815CAA3B11A5E99F8F34E4A /* RCTWebSocketModule.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E13A0740937CE058E6B04EE4F23E7FEB /* TextParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 65BFF7C955710CC4E5FDDE46A3897ACC /* TextParser.m */; }; - E157AC960891D193378B505438C9F1A1 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = B6871F73A44F64A70F4A8EDD765D4F67 /* RCTTrackingAnimatedNode.m */; }; - E19D733E58C2D8CB6BDF7E2EB04C43CB /* MMExampleDrawerVisualStateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 259EF0FB5BBBD9263511E2BAD8D55EF1 /* MMExampleDrawerVisualStateManager.m */; }; - E1A487FDA87DD81E4EB256FE6D9E3D95 /* VICMAImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ECD6724B545EC0264B4E063E6CCD25D /* VICMAImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1E3BE485E150A7B83E983496C4755FC /* InteractivePopGestureDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A1F4AEB486754B02D536DE2911206ED /* InteractivePopGestureDelegate.m */; }; - E215C558DD956B0EDC849D96B589F885 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = 083A0FC23958038719069B4D1B96ADC2 /* RCTConvert+Text.m */; }; - E280DCFD418D6D9D730BDD4DC8785FFE /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CD44C3A245688D5B11382980BCD1C6D /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2CA5C80C01DD7FADB9530E3466BA913 /* RNNAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AD7270FCAC441614995F9292BD17330 /* RNNAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2DE2F1F0BD13089093EB31C1A3A15F1 /* RNNTopTabsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ADEDC3FA5544EFC81F84B22C6B243AA /* RNNTopTabsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E30D350E328FC6B89FBE47AAC06B36D8 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E52B89E6F1B9352FE00C829BBDA184 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E36C51C3E220533F43779A4C14BDF1B9 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 51163693ECA9DDB998E3F22BEFF2BD4A /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E374F3695520D2A247004F69FAF8FB6B /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = FD751D7CFA65AC7836270B8EC708C031 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E38F57AA43BC472A0A7377F0DC64EAD3 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = DE544FD1200AA51D19B58C98BB0E4181 /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E3ABDE5332576B3198EBD910057E7D44 /* RNNStatusBarOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = BE9621AAB3A28DF807AA0D070F8BA21C /* RNNStatusBarOptions.m */; }; - E3BD9818DF02F7DBE41B17349E6EA565 /* MMDrawerBarButtonItem.h in Headers */ = {isa = PBXBuildFile; fileRef = BC306705D9FA29D4B1DA55738582D7C2 /* MMDrawerBarButtonItem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3F2BC32F39ECF6F33005B7DD5F8237E /* RNNLayoutOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = D24985BEE473C08F7BA5E134665AE957 /* RNNLayoutOptions.m */; }; - E4DE9EA5ED64F2FC9C029A7487932DD5 /* RCTImageViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8846BB2477A1BBA6009046E0D35DBE96 /* RCTImageViewManager.m */; }; - E4EF3A7C1240B5B9C74BEEC8683644DC /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6F4D0112D630F1C84AD2616A91568C3 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - E514911259C84D2DD0928E5BD46A6D5E /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E66CD76C10B3D7E79D06A8D3711E5532 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E51B4B55FF179B76B339472C13733860 /* RNNLayoutOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F99DA070B5DB0606303FFD995E6806 /* RNNLayoutOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E53C1816D23C20EF058AB492094CCB94 /* RNNSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 923191235442827557D8B3B153CCABB7 /* RNNSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E567AF08597093359D7226F558D9C1F5 /* SideMenuOpenMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 910661C3AAE0212AE349CAF265F9CD65 /* SideMenuOpenMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E58350CF83487DFB57D27891CBD8EB50 /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = EA2A678375F5C31C6AD957FD9A6F7626 /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E5C6E1CB8D701EF04B3B4A88CB5EBAEB /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 288CB373883875AD5E355D4E4D017072 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5CA6BE2368D9A6ECD9186DFFA19C104 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 85D4381AC956F54701643ACBAA93039A /* RCTRawTextShadowView.m */; }; - E5EB830C4C12B28B58C395262C7D74DF /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DA73AAD7BF4BE5A2DD202ED4F4C2A682 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E610C2244971A9291BE3ACFC2313C182 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E77D572CC14D30096096347FBF66832 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6513BA85B0E6C2102CD8408B65935C7 /* RCTTiming.m in Sources */ = {isa = PBXBuildFile; fileRef = 04227532F64F339984939776F8693E40 /* RCTTiming.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E6F486259DE4E983CF4B2FD33BFDAACF /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D289171A24CC44257995B60CB10CA4A /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72D871E58E218E9A23A3D849C2A7B56 /* RNNTitleOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = BD69F3BBBB135EC56F29FD49C2138AD8 /* RNNTitleOptions.m */; }; - E75B4970944AD4C977568BB51345E0F7 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = F13C9E5676219DD29EDC357BB552EB0E /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E76867E1B103BDF58882841F5400D9C3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9140C24753535E9A5DCD48E489F4E7 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E77EE2CA92B32B9FF59423F62EB4734C /* RNNNavigationButtons.h in Headers */ = {isa = PBXBuildFile; fileRef = D18C32E7320535B2F7D2DB45ED715B50 /* RNNNavigationButtons.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7DB067695F4B5580F9BF955333937A7 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD9FC8868716F35BD4B85880C8AAAE32 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E81D66A2CEC77366865F4E7C8A39F11B /* RNNReactView.h in Headers */ = {isa = PBXBuildFile; fileRef = 56D44FF7988C658A7769CA316774E639 /* RNNReactView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E83F7A90126DF775D49D7284B23C633F /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 190F8853B7CD375250CDC430F9C57C4F /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E859898E4D1DE5B9D2DD64D17CA876AA /* RCTLocalAssetImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = B0850C46EB9FC3FDD83A4B6982848745 /* RCTLocalAssetImageLoader.m */; }; - E866D04497A7527CB62A418A6AA1D504 /* RNNComponentPresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = 347D2BEEC5741E43707740A69EBE384D /* RNNComponentPresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8A4BA0AFC1B0895C8A2614959A56E58 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C4E16C8986BFEB88FD90DD1B437946 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8FF13EEF4E670B99E3962145D24EFAD /* RNNAnimationConfigurationOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = A8136AE85FA25415720AD3B8FE6F2D87 /* RNNAnimationConfigurationOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E91311326FF7121ACEBB99D87FC175AD /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFE11545EF2FB4D9C5B2C8B82BD682CA /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E94ABC326E5A462BDE56DB62C28ADA66 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AABD7181EA87FBB810207DBC9667B4C /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E953548BA212D0038557EBF302E5FB1A /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D08C5245D3560FB9D2DDB97861B4B4 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E973D1B8C57A1859D00DD39A4CE22E50 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C65C7D2D0EB77F379B96C3A58434F4BE /* React-RCTLinking-dummy.m */; }; - E9ABE6CDA901BA67D9F98839416BEACC /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A497153276E861872CBBF552BDEC71 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9B1E68417AFB795BFAAC25CD3A20986 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BD9DEBA4F7947E1736D19328F3A5BAC /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EA6023DB70DB81EB2683A8BB7C38CF83 /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F8D8BB205638CC51098F8B06C85DAA34 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA7E5D455770F8A77B3A1AB0712CB98D /* RCTStatusBarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 10CAF7F9BF5C2CB94D1E7AC460348A0A /* RCTStatusBarManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB2B8E5BBA7BA67BDB1181031AEA2796 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 713744D0A78412AD7422818098BAEEE6 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EB8A5777B53D6A32A05F31F80FE2FFD5 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A1B84F198F88C171986A4E31589FC0A /* RCTInputAccessoryView.m */; }; - EB9447AD0415217885C538ED8CA120B5 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 986418BB0C18EDC912098CAB50FD2387 /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = F5D61A5A3B5FC8B5A7FFF8707D3B6C9F /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC0820C17B5B92DE7163904C5C1C26C2 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 707C33C2ABA5CF97DA752A623EA09C5B /* RCTAdditionAnimatedNode.m */; }; - ECAC33586186CB94B60F253DAFBEAB01 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A151EFFBE788F37926E741D073995D8 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ECE7940ACCA39C2C35C4D929BE8F7BA6 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B9AEBF5436C82CA6AC3C25107D815EA /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ECF6206665987814DF7108E5D43A19BD /* ColdClass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06F85AD8AF1C7A68E0C1475DC87B3E92 /* ColdClass.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ED301E94B2068AA278919AFEA09FE262 /* RNNBasePresenter.h in Headers */ = {isa = PBXBuildFile; fileRef = A1A0603E67156BF02A3BE3D6542BD981 /* RNNBasePresenter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8406232AC807B51FD5E6F8E11B1184 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC8560669F75B7D1C958E7D215699D0 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8DFEF2925738083FDD82E187BAE53E /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = E0FAB9B1D17DB3562554B345EAC3EBAD /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED99A0EFED2F3B36787B54661BEF2E74 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 147A40E954158342BA632620C3B406B0 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDB174D516E585F2EBD3A92059CA872E /* Pods-CalendarsExample-tvOS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 90AF144106B1E742AFFBC2278F11295C /* Pods-CalendarsExample-tvOS-dummy.m */; }; - EDC6F61D8EBD9AB8E1B58284102EE99F /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 367808BB63C0C7782A272D833F5C8323 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDD45AED1CAEC159E6F048E86D6AEB3C /* RNNSwizzles.h in Headers */ = {isa = PBXBuildFile; fileRef = 34BE0A1A3DA4BAE8F653655664EF68EA /* RNNSwizzles.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDD4996004EC57A5A83CB4142246E437 /* NullDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = E22377BFCEFE6555E4FF3A0E58D217FB /* NullDictionary.m */; }; - EDF41D9FB9253EC681F5A494AC50851F /* RNNOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 15684C9888BF0AD094E1092E6107054B /* RNNOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE967BC5C40256F1F4E8989D777C3A38 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C851D543DA898087FD48BFEBD9AF1EC /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF7B2AEA2F10988325CBED09453AF049 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0CE1C8FCA249113DDD24F7F6A1E29EEE /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F00E5B9E3F723863FE28BF398C8B9E78 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C28C37C32F3DD498FB9444A1822907F /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F01722E2A34C4286F5C8531A91301574 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F58D523D87FBD9FDAB439F60382EB2F /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F03479BA3103FC9AB9973CA7ABBB15AF /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5744EBF350C62F34F03195AE14C7F857 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F036F92B06A1D33ECB4AC2FD1ACEEF48 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5104F3BC26FEECA2D63D370C9458762A /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - F079552F0B5598B4B500B527B52E8036 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA8CB9EE0648A051E6B6CB94644E1E7C /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F094926DC4D2352308536A6D7A52EC15 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 532D19D6A9B79D1CFB9A19AB3F138B7D /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A70A7C38B15B55AE0A8CEE583F50C0A1 /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F10066FFFCB05691561796C75A21D831 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 84A422E230C18E3F661DE2E7B9F3C954 /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F14E6DF65029801DF73C6E5626CB1E8F /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = A01AD282405DC0D6EE2178B8506685D7 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1F4FF25F09CF29978A14BE417902567 /* NullDouble.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C41BB6F4082F7C4239093581155CD37 /* NullDouble.m */; }; - F21C9C5744C91BDE7821A567D854887E /* RNNControllerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A26037510C4ADE50BB60703B1C836ED /* RNNControllerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2321704A62AADEDDFF2699FA077EB8B /* RNNAnimationsOptions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E494FC05FA88CA6A184878F66F3183A /* RNNAnimationsOptions.m */; }; - F23B083BA9E52FB6BBAD6D4C68CE8074 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0D95B1B16B6702CD417F9E8179207CF /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F298E82BA64317A889A780C7925F095B /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 80B4691223E981B9FD48F8CF3C4368E5 /* RCTTextViewManager.m */; }; - F36235962E087F35142FBE153294FF3B /* DictionaryParser.m in Sources */ = {isa = PBXBuildFile; fileRef = C5BCF33FA964711FA6C6A7A8944B6F68 /* DictionaryParser.m */; }; - F396192FB6CE41B6D7350FED798D864D /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = 236FA90408A2F638F23910BDF2879339 /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3ACCF48EE9D4D168F349A203E4574CE /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 506D1F3E063D223EE3E1C08B1D6F35A6 /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3F21F6F7BD053F8D574ED622A610CDD /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = E1A1ED8C8AADB359C4A7FFFBDC09857D /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F405AE01E7D68344B5AB3C5410DD7A21 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 86DEC2B868D6FDB87B390506ADA98D92 /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F415A453C55B874749C2168D436F6936 /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B6031950041AD3B5C92A11D4C964D2FF /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F500F680727CD2A809A188C814B7AABB /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = CDF3BB7D6CB7BDF66FAB6E340589D41D /* RCTAnimatedNode.m */; }; - F564E792A3BC56E4648607E99A678354 /* Pods-CalendarsExample-tvOSTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B5FB339367A1F29B3D34F10C4A9EEE1 /* Pods-CalendarsExample-tvOSTests-dummy.m */; }; - F590C87CF643903C160ED73EE239BF61 /* InteractivePopGestureDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 04A97B7B3E345759D8E0505282956B25 /* InteractivePopGestureDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5BB886BC1EBB2A424AE9EE9181ABDF1 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 651E6650E41ED0B01F1CDF56A42DC205 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F60D004694F9872F5D83EF778BAD2723 /* RNNPushAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = CFD3FAAC6C07F1505AF8FFFB9AB501C4 /* RNNPushAnimation.m */; }; - F6A6E12F7381AAAF0CEDA25805287813 /* ColorParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E2EABE336903FA5AB1371999AA7401E0 /* ColorParser.m */; }; - F700C4C83917B8D9B76A46424250D339 /* Constants.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FF0782503A736A7B3092F94AB518B77 /* Constants.m */; }; - F70CC3DA584E8C5D52EA04F1AB96F8B8 /* RNNElementFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 02DBCCC741C58F78D0A771000A5F49F8 /* RNNElementFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F72DE4140B33070BE3D15A9CBB33AECF /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = 453759ABBEFC7C808B3E049912729BF6 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7326C54AFF5725D5AA4170653AAA9FF /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = ED23170B5BEE71C5CC036347DF870B6C /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7AC13F95A17CF6206A70FE3D8603087 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C14302B918865FBAA823A0314CE2ADC9 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7D1A587F1C235937C3D4E9D5D40773B /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 6705E3C368A77364A6E15E711ED58244 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7D9C010C66216A32D145C2F0995523C /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = 8449345E0AD6FF686784C9D051872FE5 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F7E6ADB5A82436CC44CDD9E45DC38EDF /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B4CF2AE75EB64A568A7698C347DE3A /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81FF22160618B72776526BDBF04DA77 /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B868DEA8B9640C1A5A895EF4E1CA679 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F84C800D0F852EF5632B4F913852E25B /* UIImage+insets.h in Headers */ = {isa = PBXBuildFile; fileRef = 45968CC601129A2E129AA23EB9BF4520 /* UIImage+insets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F851A3334F426A1A8747B2C1F82BDDC8 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5473620513931A89508086D131F06F4D /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8E1F4C7DBCAFF9ED79E062DD3E95F0E /* RNNElementView.m in Sources */ = {isa = PBXBuildFile; fileRef = F38298D43E7D573B3EF14A9B0329B165 /* RNNElementView.m */; }; - F978A9DF718A5D75012FCF2212EA24A8 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 494338768894718954CC51B2F1EA1F74 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9C99A700FF08B75D32062B06FE7D5EC /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CCACDF74B1F425E39B89D1865E698C33 /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9D0A6ED2C433954E6022AB7DA1D35D5 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 950A981F9AAC8C497F40A285A730A5F2 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA0866E6A67970A9021695DD201F297F /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = B8F1DC1196CB63EA896A7D3E81F978B2 /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA42CF4FDAE3EDEE8B5D4C57A5CAA731 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD8ACF3774E94AC871070EBA70CB076 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA4CC10B1EF8FAD6CF91006368D3F621 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 922F05EFCE659DC7AA658398F15D6A5E /* RCTInputAccessoryViewContent.m */; }; - FA6F427622DE65F1E1952196D41C3F73 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 58535C3660A057B0A37DFF7F8A1C1DE1 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FAC68A2364FC07AD1B7A518A0E30BB65 /* JSDeltaBundleClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BA46D3CAF3530837C8A612C4AD20BFA /* JSDeltaBundleClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB0862EEBD07B034EBDFF030FA104DA1 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = D1EE870544C5688435350160527CB746 /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FB527D6B5AF3182F7826D573C99D51C6 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A97A523D4F0D17D576ADD9BB246DF1F /* RCTStyleAnimatedNode.m */; }; - FB62B1676306628C9C16C9826596492D /* RCTConvert+Modal.h in Headers */ = {isa = PBXBuildFile; fileRef = C6779BC87B31A2A94F4C39AB36851A90 /* RCTConvert+Modal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB9A98B412390D81BEF8C9222C3F2267 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 51163693ECA9DDB998E3F22BEFF2BD4A /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBFF4FFC1C7203191B2ABD4852C48896 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = BA2FD71363213733EEF44111F2620EDC /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCA74959DBF3C4B076478AEAE1543061 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = DB04760AD193B3520EAA7F4C1E1E89C0 /* RCTBlobCollector.mm */; }; - FD558301388205087339CC2E79ECF3B8 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BA1DE00D4E5D35C53102D1F5B961EA8 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD775ABD8A3D1ED6315A92AC8363A310 /* RNNSideMenuPresenter.m in Sources */ = {isa = PBXBuildFile; fileRef = A91B3555FA2641F9143CFD8500CF4336 /* RNNSideMenuPresenter.m */; }; - FDBAF6439467D3A92850A0A6D6736E60 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 21F43A85D42E8151863B74D29D537567 /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDE447455FFD3AF2305163642C2C5192 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A54FCE56B249AAA151A089183E1C2A99 /* React-RCTNetwork-dummy.m */; }; - FDF95A02836236FD44A5B872395EA80D /* RNNSwizzles.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E31EAEC40703AF4F67A242E00D3FAD8 /* RNNSwizzles.m */; }; - FE1616727C8839FAE81A846F60310781 /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 254103252A50A5A4218EC2A4636E9592 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE1968DB86F4E0A940ED78C4F73608BB /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0817E5AF80154B06352E4403C4215E92 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FE69B4983BB4D37FB0996C60CA20BB5B /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 42BBE1908B08080479D342A63E92B6F2 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE9B5C3BD53A20ACA7827E225EE6EBC5 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0B852A50FCD6739C27538CAEF5EE76 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FECAD29D617278B4C882C2EC671A81EA /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0EA4960F1190594DD6F0A9E65298FB0 /* RCTTextView.m */; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 01DD709E357FEC96084BE2521F70ED3E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 0462D3CA59B20A414813848E693AB128 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 06934E002C82163A668C304209689553 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 0D1F52409550762FD569E3D8D712543B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 0E9ACF16864F26F5B6DBCBE7DFE47D58 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 0EECB45AFC19BB79D7989528772E5601 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 1188C8CDA2FC58985E1612C10984752A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - 118FC52DE657E013E5A98D87EC3A4CE2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 12F77A3967A30A079F179F17B7CE729A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 1349CE2FBC684FED578C4B24A39AE4AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 180AD581AF9D9BC4A633E2DBC9CFF88B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 21E2E58CC7895C92D7CB4994458BCD18 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 24D24BDD822D0EDD796DCCB9F97E0977 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - 265D4867E699FAD7CF5656C566BEB1CC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - 2914894670B88996AFAF684490D2B770 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; - }; - 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 2DBF470DA8A0AE820A5ABA7AA5EDEBB9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 3842C10F00E17344D7391DF475D9A707 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 3D875E0025C66A1FF2AD4B81ADE8AB1A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 3D8A7999B63D874FCD0BF4497D774EC4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 3DFA7A3D896E0923873147B11AC710C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - 40A6312B91EF6591E211CA7D4740FF5B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 424D1B65E22EE1E24952DF24D6FC0249 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - 49E82F703BE1319213F75B6CCCDFB91C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 4BDE049EAF4FCC4C06846444404009A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; - }; - 50B64EDB1396A9A4103C2C868FB8CEA4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 51DFA6DB69D6BC7594B13005F4A0E74B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 5973D9BB07B237B0A07EEB9DC0F28613 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 5A12CE7BAE70DD3B17AA01B5C5C0E475 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - 5ACAC018BE50DEE1485B8FBD6F029975 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; - }; - 5DF51F278C2B531A7AB8BDBA90269A41 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 5EB7F635333AF5C972E34F1D5D5F7F85 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 5F49B87D97176A32388AA289E77F372E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 60C8C9FAE390605B1F6A1DB1051A40F6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - 62F08E6C7A6C4151CB6BC2F945969A07 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - 645CB473A09E09C96450463D3CD2A687 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; - }; - 665A6D8B41DD48125294D3CC9E74CCD6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 67F6AB0AD79DF2E56DD85288D2301579 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - 6848134DC4F0BD603C0E7B1CC49270EA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 6E6A3A360D1495831C13566F3E432C6C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 74FB3981CD5A16FB833B6C983AEE2E04 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 790568C2DD90BF6DD6F2071DA03C0920 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; - }; - 7A7DD39BDE982ABF52C4194EEAD590AB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 7D76020070EC9B32E2CB3FCE476A4D5E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 7DD6B93EC3D770C3A27214DFAD6002EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; - }; - 87BEB6118A17348FD49D4F20F1B3188F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 899C118334B685CC47C90210A449A344 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 8A4A4E6E8DA4967D0D2C726A07AAE571 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 8C3322EA93FE1112FA4E0847267F3498 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; - }; - 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 8FCA539193912F0A28E12DB893598290 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; - }; - 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; - }; - 96E6B9E47DFD4D4A1CFB53306734112A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; - }; - 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - 9BD68D8ACC259A2357D6F95FBFF3436B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; - }; - 9D77787F1C64613EA313BC1B53177FB8 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; - }; - B4B458AAF9E354437B362F40F710CE88 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - C3FB233DB26F94BE82B629609CB4EE8E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; - }; - C5DF0AD14EA73DDFBC972D6237A7BC49 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; - }; - C7D27A60D447887D62B4478D30D831C4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; - }; - C808C28BB082C89DFE0F07696CE2BC09 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - CBA40E7AE1F62A8A6E7A28E8AE9BB74E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; - }; - CCBE95F73D6D114EB4D0049FAEC6C555 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6ADCF369490C694BEBF31C5B4517D035; - remoteInfo = ReactNativeNavigation; - }; - CE8ED3B765478B8EBFC5731084A0710F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - D03031D05C2A7191DF12BF8F97F601C4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - D559DECC25944752D63D3A5C405239C0 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - D8E27FD3930263DBE144E6DEE6DD8F43 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - D929CA685E9F3CE4FE85753839B4DCC1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; - }; - DD5210D113FB5480D0E6BFF1CDE4245F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - DF9B9D4088FA7D34D4F8C9F9F3D50AAC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7994A9983B74369120B94F5645D30AD8; - remoteInfo = "Pods-CalendarsExample-tvOS"; - }; - E12CEF0BB724DDDA3132C4E7F85D3B6E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; - }; - E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - EC5B5F10F6DB2D0F56CE870007E32DE1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - EED0646419E036730D0348937F804BB4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A4F685BE3CAC127BDCE4E0DBBD88D191; - remoteInfo = Folly; - }; - EF4FB61ADC136AD64DA6EAD8A8E8C16A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - EFAB938296ABA2965A63F4EE7C372057 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; - }; - F179C0D1F46D8D86876D23E65D368C3C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; - }; - F6B5C865EF8DB7265BAB8DCCF6AB89E7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - F9D3756881C74D34E390BDDADE67CF64 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - FB0F8C97C6DD8BAA6B3C64DB9F4AAD7B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 615775D83EC041ABBE5885384EB3B4EF; - remoteInfo = "Pods-CalendarsExample"; - }; - FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - FF0287F17A124E31FCBD8E14CCFEB426 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; - }; - FF744688F1481F03514B21E5D72231AA /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 0012B632F7C38F04BA51052DAF272E16 /* RNNBridgeManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBridgeManager.h; path = lib/ios/RNNBridgeManager.h; sourceTree = ""; }; - 004C4439020B46439419FB9DE17D28B8 /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDeviceInfo.h; sourceTree = ""; }; - 00A07CA3EF719BEADD7E4DFA51690FFA /* RCTSafeAreaViewLocalData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewLocalData.h; sourceTree = ""; }; - 00CF27C1E399784436ECFA1C32F75A92 /* JSBundleType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBundleType.h; sourceTree = ""; }; - 0115063272DD6DCB19B655C513262606 /* React-RCTSettings.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTSettings.xcconfig"; sourceTree = ""; }; - 013032C397C99E4423C2A4152EA6B502 /* RCTSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControl.m; sourceTree = ""; }; - 0136544581323AC8E5A57BF4BEBD0AFE /* DoubleConversion-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DoubleConversion-prefix.pch"; sourceTree = ""; }; - 018BCC9317D8B1E0A21D476975652B64 /* NativeToJsBridge.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = NativeToJsBridge.cpp; sourceTree = ""; }; - 018DDEDA04CA62E5EAC3B997D04D287F /* RCTUIManagerUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManagerUtils.m; sourceTree = ""; }; - 01C87FDC612010D9FD51B67F2228CF7B /* RNNEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNEventEmitter.m; path = lib/ios/RNNEventEmitter.m; sourceTree = ""; }; - 01DEDC73B2276B48FA5701E10C022CD6 /* RCTSinglelineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputView.m; sourceTree = ""; }; - 024DBC0DED41BF178E4D776D4C79B34C /* RCTPlatform.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPlatform.mm; sourceTree = ""; }; - 0273AE3D6F89A62F42CA168CF0CB0A8C /* JSCExecutorFactory.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCExecutorFactory.mm; sourceTree = ""; }; - 02DBCCC741C58F78D0A771000A5F49F8 /* RNNElementFinder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNElementFinder.h; path = lib/ios/RNNElementFinder.h; sourceTree = ""; }; - 031C5965B07323877B0BE65B16336886 /* bignum.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = bignum.h; path = "double-conversion/bignum.h"; sourceTree = ""; }; - 035988B6D074414297E2206411382CFD /* SystraceSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SystraceSection.h; sourceTree = ""; }; - 036B4F0F58FB8230BF37E6F3ECE9284A /* RCTBlobManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobManager.mm; sourceTree = ""; }; - 040E750C69CF2DDCE589FA708713123A /* RCTTextTransform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextTransform.h; path = Libraries/Text/RCTTextTransform.h; sourceTree = ""; }; - 04227532F64F339984939776F8693E40 /* RCTTiming.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTiming.m; sourceTree = ""; }; - 0441028D91C270CB0FD3C8132D4F3100 /* RCTVirtualTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextViewManager.m; sourceTree = ""; }; - 0442186B35FD501B0AD7519A4C02B782 /* RCTManagedPointer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTManagedPointer.h; sourceTree = ""; }; - 04A97B7B3E345759D8E0505282956B25 /* InteractivePopGestureDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InteractivePopGestureDelegate.h; path = lib/ios/InteractivePopGestureDelegate.h; sourceTree = ""; }; - 053CFF1DC4F3B34EB8613781629C2A0E /* RNNDefaultOptionsHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNDefaultOptionsHelper.m; path = lib/ios/RNNDefaultOptionsHelper.m; sourceTree = ""; }; - 05BCD5C080F27CF9DAB5611A91A34289 /* Format.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Format.cpp; path = folly/Format.cpp; sourceTree = ""; }; - 05C76386F45DB14E4DF13A9C080AA918 /* RNNElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNElement.h; path = lib/ios/RNNElement.h; sourceTree = ""; }; - 05D78E47A2C45F9F4DF087E94AFF8459 /* RNNInsetsOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNInsetsOptions.h; path = lib/ios/RNNInsetsOptions.h; sourceTree = ""; }; - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFolly.a; path = libFolly.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 06CB020204E4C9F4B12FFE4FCD79978A /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; - 06F85AD8AF1C7A68E0C1475DC87B3E92 /* ColdClass.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ColdClass.cpp; path = folly/lang/ColdClass.cpp; sourceTree = ""; }; - 07A9A15910C5245CC5531542E9FB0428 /* RCTInterpolationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInterpolationAnimatedNode.m; sourceTree = ""; }; - 07FD2D3157B11DF40265B2BFCB3DB8F1 /* RCTSurfaceHostingProxyRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingProxyRootView.h; sourceTree = ""; }; - 080B5E22117B43686FAFF7BA21131215 /* RCTSafeAreaView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaView.m; sourceTree = ""; }; - 0817E5AF80154B06352E4403C4215E92 /* raw_logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = raw_logging.cc; path = src/raw_logging.cc; sourceTree = ""; }; - 083A0FC23958038719069B4D1B96ADC2 /* RCTConvert+Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Text.m"; sourceTree = ""; }; - 083E81E45F1AE717249505C8EC8232A6 /* RCTCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxModule.h; sourceTree = ""; }; - 08F9B6505136E757C28584DE9F557FAE /* YGLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGLayout.h; path = yoga/YGLayout.h; sourceTree = ""; }; - 09211726727067F6A7973B76E936B6D1 /* RNNBottomTabsController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBottomTabsController.h; path = lib/ios/RNNBottomTabsController.h; sourceTree = ""; }; - 095339BB0FD64A272E8CA0792E824BB7 /* ModuleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ModuleRegistry.cpp; sourceTree = ""; }; - 09BCF8555612025718BFAC1053E96B74 /* RNNTopTabsViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTopTabsViewController.m; path = lib/ios/RNNTopTabsViewController.m; sourceTree = ""; }; - 09E6F6EEB4A51FF5E965D58BA6DFE55F /* React-RCTLinking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTLinking.xcconfig"; sourceTree = ""; }; - 0A1B84F198F88C171986A4E31589FC0A /* RCTInputAccessoryView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryView.m; sourceTree = ""; }; - 0A1F4AEB486754B02D536DE2911206ED /* InteractivePopGestureDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = InteractivePopGestureDelegate.m; path = lib/ios/InteractivePopGestureDelegate.m; sourceTree = ""; }; - 0A1F586EFD8125D53AE0065274F8AF03 /* RCTRootViewInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewInternal.h; sourceTree = ""; }; - 0A3D0EE3305EA11ABDCB7F6855CA4AF9 /* RCTActivityIndicatorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorView.m; sourceTree = ""; }; - 0B3A296A00ED1AE0AC5A6048CAA73757 /* RCTScrollableProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollableProtocol.h; sourceTree = ""; }; - 0B41753D2CDADDAC0570F0807B4071FE /* RCTMultipartStreamReader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartStreamReader.h; sourceTree = ""; }; - 0B8704B856FEA13CA5D1B12BD53115AA /* Yoga-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Yoga-prefix.pch"; sourceTree = ""; }; - 0B8ECF421815CAA3B11A5E99F8F34E4A /* RCTWebSocketModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketModule.m; path = Libraries/WebSocket/RCTWebSocketModule.m; sourceTree = ""; }; - 0BA46D3CAF3530837C8A612C4AD20BFA /* JSDeltaBundleClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSDeltaBundleClient.cpp; sourceTree = ""; }; - 0C28C37C32F3DD498FB9444A1822907F /* RCTSwitchManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitchManager.h; sourceTree = ""; }; - 0C41BB6F4082F7C4239093581155CD37 /* NullDouble.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullDouble.m; path = lib/ios/NullDouble.m; sourceTree = ""; }; - 0C84FA69C99D3BD6677E7FC69AF6EA91 /* RNNLayoutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNLayoutManager.h; path = lib/ios/RNNLayoutManager.h; sourceTree = ""; }; - 0CC229F29874F9BADC53ABDCD3E16212 /* RCTScrollContentViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentViewManager.h; sourceTree = ""; }; - 0CE1C8FCA249113DDD24F7F6A1E29EEE /* MallocImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = MallocImpl.cpp; path = folly/memory/detail/MallocImpl.cpp; sourceTree = ""; }; - 0D7AF7130253177561A39A66DEB4686D /* DoubleConversion.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DoubleConversion.xcconfig; sourceTree = ""; }; - 0D9111637EB348668A292C26A2EAC47A /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; - 0E2666355A9D8A01E6076093FC6AC896 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/Demangle.cpp; sourceTree = ""; }; - 0E26DC9292171CEFCE782D662EF59A99 /* decorator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = decorator.h; sourceTree = ""; }; - 0E5AB846E7B6EC132A680BB16C120686 /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - 0EC42832E04430874BA6AB53C1754083 /* RCTMaskedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedView.m; sourceTree = ""; }; - 0EC6289878D36D031F21269DC68B9B77 /* RNNElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNElement.m; path = lib/ios/RNNElement.m; sourceTree = ""; }; - 0EEDE17E0402B0C783BF8ED5927B5CA6 /* HMSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = HMSegmentedControl.m; path = lib/ios/HMSegmentedControl.m; sourceTree = ""; }; - 0FD26BB41525D0A741221F35256655CC /* RCTLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayout.h; sourceTree = ""; }; - 0FFF79D1298B1B7B436444103DA68A9D /* DotIndicatorOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DotIndicatorOptions.h; path = lib/ios/DotIndicatorOptions.h; sourceTree = ""; }; - 102431F87017AA45A6B3DEEB8FA7ECA1 /* RCTSegmentedControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSegmentedControlManager.m; sourceTree = ""; }; - 1037EE58BC7AC6FD8FF846805BE34DDC /* RNNSharedElementAnimationOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSharedElementAnimationOptions.m; path = lib/ios/RNNSharedElementAnimationOptions.m; sourceTree = ""; }; - 1042BAF4E7777BC74F33931F18427033 /* ImageParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImageParser.h; path = lib/ios/ImageParser.h; sourceTree = ""; }; - 10CAF7F9BF5C2CB94D1E7AC460348A0A /* RCTStatusBarManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStatusBarManager.m; sourceTree = ""; }; - 10E8799B026295A0C406ABEA5A5DABC8 /* RCTDatePickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePickerManager.m; sourceTree = ""; }; - 1162713FC9D4F1E0043A985F0A067CE2 /* JSBundleType.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBundleType.cpp; sourceTree = ""; }; - 116DE783C348A71AB5605FEF29D49471 /* React-RCTBlob-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTBlob-dummy.m"; sourceTree = ""; }; - 118C418922485EBF4F4746402DBC0EE8 /* RCTGIFImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTGIFImageDecoder.m; sourceTree = ""; }; - 11E7BD83F4F4EB40DD56838EA39DC6E1 /* TurboModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModule.cpp; path = turbomodule/core/TurboModule.cpp; sourceTree = ""; }; - 12943BAEBDD20A8A231BC088AADE9E54 /* RCTImageBlurUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageBlurUtils.m; sourceTree = ""; }; - 12A322935B776098A41D19FB0672BAD5 /* RCTJSStackFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTJSStackFrame.m; sourceTree = ""; }; - 12D23E39890DBC55F08CEECB8E859955 /* RCTJSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJSStackFrame.h; sourceTree = ""; }; - 132E0739023CB34E339EEF1A98D742FC /* RCTSafeAreaViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaViewManager.h; sourceTree = ""; }; - 1351F289036E894546328C02A1B77766 /* libPods-CalendarsExample-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-CalendarsExample-tvOSTests.a"; path = "libPods-CalendarsExample-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 1397723F36DBA3811F2B788D71AF3965 /* Folly.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Folly.xcconfig; sourceTree = ""; }; - 13DBD99C7DFED7152D5C6A624A767497 /* logging.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = logging.cc; path = src/logging.cc; sourceTree = ""; }; - 14207BD06B65D08BB20C5F4BD54D07A9 /* RCTModalHostView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostView.m; sourceTree = ""; }; - 146CD87FD4607DA46D1FAA57765BEF87 /* RCTSafeAreaViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewManager.m; sourceTree = ""; }; - 147A40E954158342BA632620C3B406B0 /* RCTTrackingAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTrackingAnimatedNode.h; sourceTree = ""; }; - 14F135D48F3F4F79BCC207C6A1ECA0B5 /* RCTTouchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchHandler.m; sourceTree = ""; }; - 15684C9888BF0AD094E1092E6107054B /* RNNOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNOptions.h; path = lib/ios/RNNOptions.h; sourceTree = ""; }; - 159F97AA09A19B07C509E5EFE9255E74 /* RCTSurfacePresenterStub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfacePresenterStub.h; sourceTree = ""; }; - 15A6369F5DFDD59B8B43B205ECCD9B84 /* RNNNavigationOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNNavigationOptions.h; path = lib/ios/RNNNavigationOptions.h; sourceTree = ""; }; - 15CB1896B4B1DBBBE3DB54A43555ED64 /* RCTConvert+UIFontWeight.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+UIFontWeight.h"; path = "lib/ios/RCTConvert+UIFontWeight.h"; sourceTree = ""; }; - 162EC7AC852D69D192FCCAAC76E5B1FE /* RCTTouchEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchEvent.h; sourceTree = ""; }; - 17446EB4A9A89D53D52836B661BB3034 /* RCTSwitch.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSwitch.h; sourceTree = ""; }; - 174F9EC418031FA9FC1F500508CE8B5F /* Image.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Image.h; path = lib/ios/Image.h; sourceTree = ""; }; - 1760BD52F1972CD36A56EC686A7FBFE9 /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; - 18120C78E15D606F488EE572B2E4C5C1 /* RCTCxxBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxBridgeDelegate.h; sourceTree = ""; }; - 18532025790A951F1361DE6C0140F487 /* RCTAlertManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAlertManager.h; sourceTree = ""; }; - 18AEFE52CDF6CD1FC9B27F89E97DFF09 /* RNNReactComponentRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNReactComponentRegistry.h; path = lib/ios/RNNReactComponentRegistry.h; sourceTree = ""; }; - 18E8D7247DB9EE664EDFB00FF118D6B7 /* instrumentation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = instrumentation.h; sourceTree = ""; }; - 190F8853B7CD375250CDC430F9C57C4F /* RCTBaseTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextViewManager.h; sourceTree = ""; }; - 19F01492934189897F6E84F97052B85C /* RCTHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHelpers.h; path = lib/ios/RCTHelpers.h; sourceTree = ""; }; - 1A2BD766CB83AE71D9CCFB4B4BE155DA /* NullImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullImage.h; path = lib/ios/NullImage.h; sourceTree = ""; }; - 1A6575C235FE505FEAF7584EBF9969A3 /* RCTDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDefines.h; sourceTree = ""; }; - 1A86941A0915583D8C608AB62C6D69A8 /* Utils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Utils.cpp; path = yoga/Utils.cpp; sourceTree = ""; }; - 1AA3A08CEFD1A450960EC11E21848854 /* RNNOverlayWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNOverlayWindow.m; path = lib/ios/RNNOverlayWindow.m; sourceTree = ""; }; - 1AD7270FCAC441614995F9292BD17330 /* RNNAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNAnimator.h; path = lib/ios/RNNAnimator.h; sourceTree = ""; }; - 1B03198BC7CAFD5059506FFB44B7DC89 /* RCTBaseTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextShadowView.h; sourceTree = ""; }; - 1B2D2DD710BA8FD6DADCE3B0EBE65438 /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; - 1B868DEA8B9640C1A5A895EF4E1CA679 /* RCTInspector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspector.h; sourceTree = ""; }; - 1C42C67E5338F592513E1611F442E4C1 /* FBReactNativeSpec-generated.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = "FBReactNativeSpec-generated.mm"; path = "FBReactNativeSpec/FBReactNativeSpec-generated.mm"; sourceTree = ""; }; - 1CB5F31C63C2A9C8191AC1D6F713A9BD /* RNNBottomTabsPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBottomTabsPresenter.h; path = lib/ios/RNNBottomTabsPresenter.h; sourceTree = ""; }; - 1D545353038E6AB4F01A6133FABC1AB9 /* Bool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Bool.m; path = lib/ios/Bool.m; sourceTree = ""; }; - 1D576934659F3DE1D7D753258B914686 /* NullIntNumber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullIntNumber.m; path = lib/ios/NullIntNumber.m; sourceTree = ""; }; - 1DB5A138B0AF9BA29E8308CC2D8B2FDE /* json_pointer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json_pointer.cpp; path = folly/json_pointer.cpp; sourceTree = ""; }; - 1DEDC900F97C9CE330EA16DC79BCC994 /* RNNAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNAnimator.m; path = lib/ios/RNNAnimator.m; sourceTree = ""; }; - 1E4E25C5296E6ED3CF707AB158CDBC54 /* YGNode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNode.cpp; path = yoga/YGNode.cpp; sourceTree = ""; }; - 1E738C5E4BAD9769681B6A16630F99F3 /* RCTDevLoadingView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevLoadingView.m; sourceTree = ""; }; - 1E77D572CC14D30096096347FBF66832 /* RCTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLog.h; sourceTree = ""; }; - 1E92EDE32655DEA85F2A30EDBA0E2797 /* React-Core-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-Core-dummy.m"; sourceTree = ""; }; - 1EA4F9BEB16D7B979907E8ECC4C0907D /* React-RCTVibration-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTVibration-prefix.pch"; sourceTree = ""; }; - 1F34B5ACF815BF4C849FFBD29F9630A7 /* RCTSurfaceSizeMeasureMode.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceSizeMeasureMode.mm; sourceTree = ""; }; - 1FD6AA9F1A86EC3F545AC4A8E10A2D8D /* RNNCustomViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNCustomViewController.h; path = lib/ios/RNNCustomViewController.h; sourceTree = ""; }; - 20142B02A0B11E18F1FA79A3A4F3A0BB /* Pods-CalendarsExample-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CalendarsExample-acknowledgements.markdown"; sourceTree = ""; }; - 204DFB1287A1AE4430453B9F93A13FD3 /* RCTNativeAnimatedNodesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedNodesManager.h; path = Libraries/NativeAnimation/RCTNativeAnimatedNodesManager.h; sourceTree = ""; }; - 2056F0CFF16984D089EA55BECC7405E0 /* UITabBarController+RNNOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITabBarController+RNNOptions.h"; path = "lib/ios/UITabBarController+RNNOptions.h"; sourceTree = ""; }; - 2058FC698A820826BE1AC9711815202B /* RCTAssert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAssert.m; sourceTree = ""; }; - 20D2497678D6E1586A54294C5D30A9AA /* NativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeModule.h; sourceTree = ""; }; - 2147A588F879A27B6CEE5009C7CEAC76 /* RNNComponentViewCreator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNComponentViewCreator.h; path = lib/ios/RNNComponentViewCreator.h; sourceTree = ""; }; - 2167C9686E524E085CC5FC0BF5F43E57 /* React-jsi-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsi-prefix.pch"; sourceTree = ""; }; - 21F43A85D42E8151863B74D29D537567 /* JSCExecutorFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCExecutorFactory.h; sourceTree = ""; }; - 21F51614B536EB32BDE3EEDF7E29E02D /* RCTInputAccessoryViewContent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewContent.h; sourceTree = ""; }; - 2241D4EA3D89CCB7B10756D42C1C3290 /* RNNStackController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNStackController.m; path = lib/ios/RNNStackController.m; sourceTree = ""; }; - 22B1C5E85BB0EEBBFD5BFF8A93B987D3 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; - 22EBFA55037966814D6654AF811A4C58 /* RCTScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollView.m; sourceTree = ""; }; - 233F95ED440531073441373EBA40D6B7 /* RNNNavigationOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNNavigationOptions.m; path = lib/ios/RNNNavigationOptions.m; sourceTree = ""; }; - 2363F753A490F0384E77F44CC1CF160E /* RCTImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoader.h; path = React/CoreModules/RCTImageLoader.h; sourceTree = ""; }; - 236FA90408A2F638F23910BDF2879339 /* RCTMaskedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedView.h; sourceTree = ""; }; - 23A1EAF9965D3D36E1A4759573B35702 /* RCTImageURLLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageURLLoader.h; path = Libraries/Image/RCTImageURLLoader.h; sourceTree = ""; }; - 246D273DB9A4C7034D1C640260F40870 /* RNNOverlayManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNOverlayManager.m; path = lib/ios/RNNOverlayManager.m; sourceTree = ""; }; - 246D9BF922F04133002A60BF3779D98C /* React-RCTAnimation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTAnimation-prefix.pch"; sourceTree = ""; }; - 2479B1F355CE1C29F8B05B6B9FDDEB1F /* RCTKeyCommands.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyCommands.h; sourceTree = ""; }; - 24B8E35C61C523F1BF521B4864FEF9CA /* RCTDevSettings.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevSettings.h; sourceTree = ""; }; - 24CFBFA9E9F86A2F9E95DD2ECEC9067D /* RNNUIBarButtonItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNUIBarButtonItem.h; path = lib/ios/RNNUIBarButtonItem.h; sourceTree = ""; }; - 254103252A50A5A4218EC2A4636E9592 /* RCTNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworking.h; path = Libraries/Network/RCTNetworking.h; sourceTree = ""; }; - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 259EF0FB5BBBD9263511E2BAD8D55EF1 /* MMExampleDrawerVisualStateManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMExampleDrawerVisualStateManager.m; sourceTree = ""; }; - 2646FBCC43BC6F636304844AE27AFF5D /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; - 264BCC78F44E8794F6C8EE37A22382B7 /* RNNReactRootViewCreator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNReactRootViewCreator.h; path = lib/ios/RNNReactRootViewCreator.h; sourceTree = ""; }; - 26913D26D061FDF9BA349D3ABE1C3C1E /* RNNCustomViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNCustomViewController.m; path = lib/ios/RNNCustomViewController.m; sourceTree = ""; }; - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 26A0FE7B70E0A54D8F9A3BD4EE6FD27C /* Pods-CalendarsExampleTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CalendarsExampleTests-dummy.m"; sourceTree = ""; }; - 26E12779E15333BB5D08424B7C06E75D /* RCTCxxConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTCxxConvert.m; sourceTree = ""; }; - 27133352A24B78E3D4109AE1430020C9 /* YGMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGMacros.h; path = yoga/YGMacros.h; sourceTree = ""; }; - 272B2CCE012ADBC38A786D5790AFCF6E /* Pods-CalendarsExample-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CalendarsExample-dummy.m"; sourceTree = ""; }; - 28412884AB13110E6724BC73C502A425 /* ReactNativeNavigation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ReactNativeNavigation.h; path = lib/ios/ReactNativeNavigation.h; sourceTree = ""; }; - 288CB373883875AD5E355D4E4D017072 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; - 28DEC42ABB2D94A40E9264CD13F5435E /* ReactMarker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = ReactMarker.cpp; sourceTree = ""; }; - 298565D12E8C4F1315A01E5E1C9440F9 /* RNNBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBridgeModule.h; path = lib/ios/RNNBridgeModule.h; sourceTree = ""; }; - 2991DDD0EAEFDE1A9D056D50AF908287 /* RNNBackButtonOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBackButtonOptions.h; path = lib/ios/RNNBackButtonOptions.h; sourceTree = ""; }; - 29C06FD93613186ACCFA8FA44EB9924A /* RCTImageUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageUtils.h; path = Libraries/Image/RCTImageUtils.h; sourceTree = ""; }; - 29EB0953FC89FD2468073AE33594B3D1 /* RCTSurfaceRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootView.h; sourceTree = ""; }; - 2A4C74F95426F31A25DD2FD383F6DFC0 /* CxxNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxNativeModule.h; sourceTree = ""; }; - 2A7E10BABCBE8217916F653FA6C634F0 /* RNNComponentViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNComponentViewController.m; path = lib/ios/RNNComponentViewController.m; sourceTree = ""; }; - 2ADEDC3FA5544EFC81F84B22C6B243AA /* RNNTopTabsViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTopTabsViewController.h; path = lib/ios/RNNTopTabsViewController.h; sourceTree = ""; }; - 2B1F5A81715E7690DA7C632AF69E66CB /* RCTUIUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIUtils.h; sourceTree = ""; }; - 2B53A43C6673DDE4C1DAAC4BCAFB2AA9 /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2BCA92C806059EF6BA7271A433D4BBE8 /* RCTFrameAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameAnimation.m; sourceTree = ""; }; - 2C25607F47F322F360C9E9E2ABC739D1 /* RCTUIManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIManager.m; sourceTree = ""; }; - 2C35A45AEF1DC9CA699AC0D605B50A8D /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; - 2C3F76299388D2CEAB52B74D982BFD3B /* FBLazyVector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBLazyVector.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2C4CBE14F7A5432070195C040C059931 /* DoubleConversion-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DoubleConversion-dummy.m"; sourceTree = ""; }; - 2C6B6F70B519C77DEB237B8793CE3EFB /* React-cxxreact-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-cxxreact-prefix.pch"; sourceTree = ""; }; - 2C851D543DA898087FD48BFEBD9AF1EC /* RCTBridge+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTBridge+Private.h"; sourceTree = ""; }; - 2CDC43207BF7D0D9A3B20FC81327868C /* Pods-CalendarsExample-tvOS-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CalendarsExample-tvOS-acknowledgements.plist"; sourceTree = ""; }; - 2CE80E2743B2534775BE1D1C92BB21CF /* React-RCTAnimation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTAnimation.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 2D289171A24CC44257995B60CB10CA4A /* RCTMaskedViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMaskedViewManager.h; sourceTree = ""; }; - 2D3EBD82A898DC9DE5928ECBB4903D1D /* MethodCall.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MethodCall.h; sourceTree = ""; }; - 2D8976AF1ECE625CFCAD95A0DD1C9F75 /* Constants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constants.h; path = lib/ios/Constants.h; sourceTree = ""; }; - 2E5F17B6676599A55BCE5F689F35D198 /* RCTActivityIndicatorViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorViewManager.h; sourceTree = ""; }; - 2E7D49AC41FCC1532B2568E8A372BB0C /* FBReactNativeSpec.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBReactNativeSpec.h; path = FBReactNativeSpec/FBReactNativeSpec.h; sourceTree = ""; }; - 2EA56FABCA70B92659AFDFF499D6B6A1 /* RNNSideMenuController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSideMenuController.h; path = lib/ios/RNNSideMenuController.h; sourceTree = ""; }; - 2EDD080A80620681365654753CE9BEB1 /* RNNReactComponentRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNReactComponentRegistry.m; path = lib/ios/RNNReactComponentRegistry.m; sourceTree = ""; }; - 2EEDCD48B4DBBCDCD50B81FB1B6C05AA /* ImageParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ImageParser.m; path = lib/ios/ImageParser.m; sourceTree = ""; }; - 2F655BB983B89C85A013898BAE4ACEBA /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAsyncLocalStorage.h; sourceTree = ""; }; - 2F71B2DE73283611496A7DCFDA947796 /* Param.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Param.h; path = lib/ios/Param.h; sourceTree = ""; }; - 2FE3797098F9D35253F1FC23D72348F8 /* log.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log.h; path = yoga/log.h; sourceTree = ""; }; - 30502828C350EC7CBFBE5CE39E02DCAA /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; - 313C9D94A616E223DBA7587F924E2923 /* React-CoreModules-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-CoreModules-prefix.pch"; sourceTree = ""; }; - 318695098CF9F9B065B005BEA7CB8296 /* RCTBaseTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputViewManager.h; sourceTree = ""; }; - 3187C804ADBFCA4DE139D8C6CAB1C496 /* RCTFrameAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameAnimation.h; sourceTree = ""; }; - 31C140428FBEA3341534E2A3535A999E /* RCTWrapperViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWrapperViewController.h; sourceTree = ""; }; - 31C4F3DC28A48898B96135FA70B134CD /* RNNBackgroundOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBackgroundOptions.h; path = lib/ios/RNNBackgroundOptions.h; sourceTree = ""; }; - 31E20DACE2BEA29DD5F84C7311C8F5BB /* RCTBridgeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeModule.h; sourceTree = ""; }; - 323D8F4BE8AFDFAFB59541AD6B134213 /* RCTViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTViewManager.m; sourceTree = ""; }; - 32645A6D361911131C08B9E20217B287 /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; - 3269CDCB86B3B898B6DD74EDB6599FEA /* RCTAppState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAppState.m; sourceTree = ""; }; - 328E002B1FD3A6FBBDA0B2EFBC1B5487 /* cached-powers.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "cached-powers.cc"; path = "double-conversion/cached-powers.cc"; sourceTree = ""; }; - 33093CB24CABE27F07D5F89D770811AC /* RNNExternalComponentStore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNExternalComponentStore.h; path = lib/ios/RNNExternalComponentStore.h; sourceTree = ""; }; - 330982C8A2A50FD06353093989FB1B36 /* JSDeltaBundleClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSDeltaBundleClient.h; sourceTree = ""; }; - 33280B41AF2C68E56E429B3B2113BA46 /* Pods-CalendarsExample-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExample-tvOS.debug.xcconfig"; sourceTree = ""; }; - 334A2D4077B13A934BF49E01A264E98A /* RCTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVersion.h; sourceTree = ""; }; - 335450844E0F151179FF4DCAD01A00BD /* RCTSpringAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSpringAnimation.h; sourceTree = ""; }; - 33D259157C3592B98A799AED1A67F633 /* RNNBackgroundOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBackgroundOptions.m; path = lib/ios/RNNBackgroundOptions.m; sourceTree = ""; }; - 33DF93CF771829D2D0F51A3B10481ADD /* Param.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Param.m; path = lib/ios/Param.m; sourceTree = ""; }; - 33FDCF928A30E0B020AC16951C95EBC0 /* RNNSideMenuOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSideMenuOptions.m; path = lib/ios/RNNSideMenuOptions.m; sourceTree = ""; }; - 3479C80AB1EA9438B5BEFD90886C8684 /* RCTComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponent.h; sourceTree = ""; }; - 347D2BEEC5741E43707740A69EBE384D /* RNNComponentPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNComponentPresenter.h; path = lib/ios/RNNComponentPresenter.h; sourceTree = ""; }; - 34923C5046743D939EF7B40B18E97241 /* RNNSegmentedControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSegmentedControl.m; path = lib/ios/RNNSegmentedControl.m; sourceTree = ""; }; - 34BE0A1A3DA4BAE8F653655664EF68EA /* RNNSwizzles.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSwizzles.h; path = lib/ios/RNNSwizzles.h; sourceTree = ""; }; - 34E52B89E6F1B9352FE00C829BBDA184 /* RCTLocalAssetImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLocalAssetImageLoader.h; path = Libraries/Image/RCTLocalAssetImageLoader.h; sourceTree = ""; }; - 35AEDED1111C4273F4845F2013E40635 /* RCTConvertHelpers.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTConvertHelpers.mm; sourceTree = ""; }; - 35B743362D9BC24CCF53F600FB5C542E /* RCTModuloAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModuloAnimatedNode.m; sourceTree = ""; }; - 3608241E061DE25D92D566E38A3A9C9B /* JSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSCallInvoker.h; path = jscallinvoker/ReactCommon/JSCallInvoker.h; sourceTree = ""; }; - 367236B9EE2C642379EA505D4F213C50 /* UIViewController+MMDrawerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIViewController+MMDrawerController.h"; sourceTree = ""; }; - 367808BB63C0C7782A272D833F5C8323 /* Yoga.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Yoga.h; path = yoga/Yoga.h; sourceTree = ""; }; - 3694633CEE484769C00F427DA6EEAA86 /* RNNAnimationsTransitionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNAnimationsTransitionDelegate.h; path = lib/ios/RNNAnimationsTransitionDelegate.h; sourceTree = ""; }; - 36EE35B2A3526F43BBA1364615213CEC /* YGStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGStyle.h; path = yoga/YGStyle.h; sourceTree = ""; }; - 37545C27CC0D1FE12E8AAA7C9CA2B47A /* RCTReconnectingWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTReconnectingWebSocket.h; path = Libraries/WebSocket/RCTReconnectingWebSocket.h; sourceTree = ""; }; - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 37858B221230C80044652C3970697594 /* RCTMultilineTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputView.m; sourceTree = ""; }; - 379BF27D423B6B4D8B56EB11FBD28E57 /* RCTKeyCommands.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyCommands.m; sourceTree = ""; }; - 37EDF28F0FDF631CABA35E991A1696ED /* BridgeJSCallInvoker.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = BridgeJSCallInvoker.cpp; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.cpp; sourceTree = ""; }; - 37F6296183ED22523A7C92398BCCF486 /* React-RCTText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.xcconfig"; sourceTree = ""; }; - 384A059444DF7CF08169E7F8112C748E /* LongLivedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LongLivedObject.h; path = turbomodule/core/LongLivedObject.h; sourceTree = ""; }; - 38894C2C0C2424DC664F986964296BDE /* React-RCTImage.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTImage.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 391E2451623FCAADBC2DD05C894C4674 /* RCTImageSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTImageSource.h; sourceTree = ""; }; - 39402DF3D3A5ABFDAE3E588A72AC2B20 /* RNNTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTransition.h; path = lib/ios/RNNTransition.h; sourceTree = ""; }; - 39642F188BB436E9EE66AAC6BE51C26E /* RCTScrollContentShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentShadowView.m; sourceTree = ""; }; - 3975B4F540D1A4C18211B5A38FC2B954 /* RCTUITextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextView.m; sourceTree = ""; }; - 399872F0187A22EA558CB9D045BD7B7D /* strtod.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = strtod.cc; path = "double-conversion/strtod.cc"; sourceTree = ""; }; - 39C82CB2C65B23E3AA7CF0FB8EE4F751 /* Dictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Dictionary.m; path = lib/ios/Dictionary.m; sourceTree = ""; }; - 3A26037510C4ADE50BB60703B1C836ED /* RNNControllerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNControllerFactory.h; path = lib/ios/RNNControllerFactory.h; sourceTree = ""; }; - 3A95203F5D10D564526A8B0ACE199714 /* RCTBackedTextInputViewProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputViewProtocol.h; sourceTree = ""; }; - 3B30BACE0722EC43A8A939DD8CD3EA94 /* RCTVirtualTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVirtualTextShadowView.m; sourceTree = ""; }; - 3B320790F68335739EEE00F2DEEC427D /* React-RCTActionSheet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTActionSheet-prefix.pch"; sourceTree = ""; }; - 3C35E2B85C9B011A2F7A08D98F3C6B74 /* RCTWebSocketExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketExecutor.h; path = Libraries/WebSocket/RCTWebSocketExecutor.h; sourceTree = ""; }; - 3C7EB8B3ADD18A55309B8FB2222078C9 /* bignum-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "bignum-dtoa.cc"; path = "double-conversion/bignum-dtoa.cc"; sourceTree = ""; }; - 3CA65566C0B15CB6B8230ADB63A9469E /* RCTSRWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTSRWebSocket.m; path = Libraries/WebSocket/RCTSRWebSocket.m; sourceTree = ""; }; - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CE5DFABEB0F74D08291FB3E4F9234F0 /* RCTBundleURLProvider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBundleURLProvider.m; sourceTree = ""; }; - 3D40FA84E1F55BBEE799A5AD6492A622 /* NullBool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullBool.m; path = lib/ios/NullBool.m; sourceTree = ""; }; - 3D5D425FD1C403307DD032B45FF400F1 /* RCTValueAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTValueAnimatedNode.h; sourceTree = ""; }; - 3DC2110FC2512DF3D44DABFB93FB1105 /* RNNBottomTabOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBottomTabOptions.m; path = lib/ios/RNNBottomTabOptions.m; sourceTree = ""; }; - 3DF2F1F2282D1EF242CAD4B28AD85615 /* UISplitViewController+RNNOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UISplitViewController+RNNOptions.m"; path = "lib/ios/UISplitViewController+RNNOptions.m"; sourceTree = ""; }; - 3E31EAEC40703AF4F67A242E00D3FAD8 /* RNNSwizzles.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSwizzles.m; path = lib/ios/RNNSwizzles.m; sourceTree = ""; }; - 3E3C310A6D6B65A1E1092B5951195C5B /* RCTDevLoadingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevLoadingView.h; sourceTree = ""; }; - 3E5175BFE53DDCD8D99599B536C5C0AE /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; - 3E519172D5C0A0DAE45333F1161708CB /* RCTEventAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventAnimation.m; sourceTree = ""; }; - 3E7CDF1F130D18D2748C7B25A5BA934B /* RCTDatePicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePicker.h; sourceTree = ""; }; - 3E8AC105BBA7BDBA7E4A3EDB53648CD4 /* RCTRedBox.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBox.m; sourceTree = ""; }; - 3E8B91A7F0DCF21522059B65F8A69ED2 /* UIImage+insets.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+insets.m"; path = "lib/ios/UIImage+insets.m"; sourceTree = ""; }; - 3E93EC1D0E1FC037D0112B4A3CED4993 /* RCTUIImageViewAnimated.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIImageViewAnimated.m; sourceTree = ""; }; - 3ED3C96627B43576957E27D0C506F5FF /* RCTNetInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetInfo.h; path = Libraries/Network/RCTNetInfo.h; sourceTree = ""; }; - 3F12EB5F9B186D5A7087633F447F53FE /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; - 3F1E3551FA78FD60F26B84D4DCE5C575 /* RCTSwitch.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitch.m; sourceTree = ""; }; - 3F377FDAE59148D2CDDC8BF4F903DA4C /* RCTFollyConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFollyConvert.h; sourceTree = ""; }; - 3F4DE362A580B84FBB629F426FC93A78 /* RCTTurboModuleManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModuleManager.h; sourceTree = ""; }; - 3F81A22A2D215848239E067650FE646A /* RCTModalHostViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewController.h; sourceTree = ""; }; - 3FB861268C709613DA86AF3B4F913256 /* Pods-CalendarsExample-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExample-tvOSTests.debug.xcconfig"; sourceTree = ""; }; - 40287A8CFB97DAEC25E9492F728C1261 /* Number.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Number.h; path = lib/ios/Number.h; sourceTree = ""; }; - 40B8E96BF8C364372DC5C739E7E208F6 /* RNNElementFinder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNElementFinder.m; path = lib/ios/RNNElementFinder.m; sourceTree = ""; }; - 4128D94331B157B05DACF5E225430B10 /* RCTMessageThread.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTMessageThread.mm; sourceTree = ""; }; - 4129574BFD6A1BE160BE240EE9DBA899 /* RCTSourceCode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSourceCode.h; sourceTree = ""; }; - 414D9A010131283E2468D9003710D36B /* FBReactNativeSpec-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBReactNativeSpec-prefix.pch"; sourceTree = ""; }; - 415061B06CDA036D4F60DF41662CA468 /* UIViewController+MMDrawerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+MMDrawerController.m"; sourceTree = ""; }; - 418AED58EBD377DF3F2157A1F166CB5F /* RNNStackController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNStackController.h; path = lib/ios/RNNStackController.h; sourceTree = ""; }; - 41DB623908F11E8A026B0AF96DA6D3F5 /* FBLazyVector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBLazyVector.xcconfig; sourceTree = ""; }; - 41E1B3E21C11EF845CFA1F0AE2F49297 /* MessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MessageQueueThread.h; sourceTree = ""; }; - 42321FA50BCB764483F9CD4995B8F677 /* Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Text.h; path = lib/ios/Text.h; sourceTree = ""; }; - 4262B0EC88101A06C3E1C2994998B301 /* React-RCTNetwork.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTNetwork.xcconfig"; sourceTree = ""; }; - 427621CE6C99E4A40D20AADAA384F4A8 /* RCTScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollView.h; sourceTree = ""; }; - 42B5E2BB226A9E5D827ECDAE0A3B5872 /* RCTTextAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTTextAttributes.h; path = Libraries/Text/RCTTextAttributes.h; sourceTree = ""; }; - 42B8D24B0E77BA01FF5F1EAAF69EEC72 /* RCTActionSheetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTActionSheetManager.h; path = Libraries/ActionSheetIOS/RCTActionSheetManager.h; sourceTree = ""; }; - 42BBE1908B08080479D342A63E92B6F2 /* RCTInputAccessoryShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryShadowView.h; sourceTree = ""; }; - 4328CAE6390B8D40D22536071F31D1F7 /* RCTTextAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextAttributes.m; sourceTree = ""; }; - 435738B2F4A7CC0F0C09EB6BD9CFC17F /* JSBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSBigString.h; sourceTree = ""; }; - 43B1E55981AA02355DC849C7109F1FEB /* RCTInspectorPackagerConnection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInspectorPackagerConnection.m; sourceTree = ""; }; - 43C8BC0D6BB8E7FCD22F83610E0CD920 /* RCTMultilineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputView.h; sourceTree = ""; }; - 4411504883632D23E9581C80DD2EDBE7 /* RNNComponentPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNComponentPresenter.m; path = lib/ios/RNNComponentPresenter.m; sourceTree = ""; }; - 441858F66C73E35C7DAE382D8A9BB5D7 /* RCTLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayout.m; sourceTree = ""; }; - 441F321EC5D7B2A778CCC7F95E18504D /* UIViewController+RNNOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+RNNOptions.m"; path = "lib/ios/UIViewController+RNNOptions.m"; sourceTree = ""; }; - 447DA2ED0D7A7A6B14D7D124190EA711 /* TurboCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboCxxModule.h; path = turbomodule/core/TurboCxxModule.h; sourceTree = ""; }; - 450A0CF5671584834814C9B7901CC63D /* UIViewController+LayoutProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LayoutProtocol.m"; path = "lib/ios/UIViewController+LayoutProtocol.m"; sourceTree = ""; }; - 453759ABBEFC7C808B3E049912729BF6 /* RCTFPSGraph.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFPSGraph.m; sourceTree = ""; }; - 455C905A60462FEA87968F14D9CCAD71 /* Unicode.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Unicode.cpp; path = folly/Unicode.cpp; sourceTree = ""; }; - 45968CC601129A2E129AA23EB9BF4520 /* UIImage+insets.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+insets.h"; path = "lib/ios/UIImage+insets.h"; sourceTree = ""; }; - 45B11FDF024B33D06FBD455A641647E1 /* RCTDataRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDataRequestHandler.m; sourceTree = ""; }; - 45F99DA070B5DB0606303FFD995E6806 /* RNNLayoutOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNLayoutOptions.h; path = lib/ios/RNNLayoutOptions.h; sourceTree = ""; }; - 4605100A173B23FFE60EB570CD608004 /* RCTSurfaceView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceView.h; sourceTree = ""; }; - 465CFF59382A8CE2B849D25D2116F625 /* RCTRedBox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBox.h; sourceTree = ""; }; - 46F47A340C4F3FA6FAF428D47CFE1A50 /* RCTRootContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootContentView.m; sourceTree = ""; }; - 473C1FFE9D70CB260FDBA993B1BD6298 /* IntNumberParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IntNumberParser.m; path = lib/ios/IntNumberParser.m; sourceTree = ""; }; - 4744243BE5D5DD52E516C8B3BB09ABF1 /* RCTRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootShadowView.m; sourceTree = ""; }; - 477E7D9C4DAF43B5F7D5C53E14F22384 /* RCTSinglelineTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputView.h; sourceTree = ""; }; - 47AFE01307A7B0453405FD3289FF6D33 /* TurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModule.h; path = turbomodule/core/TurboModule.h; sourceTree = ""; }; - 47BA26EEBF09A6906AEA18333731518B /* jsilib.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsilib.h; sourceTree = ""; }; - 47C9F058625A6B2267A03E5B26B25FC1 /* RCTAnimationType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationType.h; sourceTree = ""; }; - 47CC09E710CCEC47007E4E0BA3568061 /* Yoga.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Yoga.xcconfig; sourceTree = ""; }; - 48F2864485F008730716D49FFAA52CE4 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; - 494338768894718954CC51B2F1EA1F74 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; - 49C3241833BD2BD5CD87A68CABEFDD85 /* ReactNativeNavigation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactNativeNavigation-dummy.m"; sourceTree = ""; }; - 4A510B5BF0D7642E02791F87F943CCD1 /* UIView+Utils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+Utils.m"; sourceTree = ""; }; - 4A5D46F13321CE337D6D7888B5DA5FC2 /* RNNCommandsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNCommandsHandler.h; path = lib/ios/RNNCommandsHandler.h; sourceTree = ""; }; - 4A65832BD774C014CBA1965EDE268F18 /* signalhandler.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = signalhandler.cc; path = src/signalhandler.cc; sourceTree = ""; }; - 4A9EE4E13A7217DCA4B897E24417029F /* React-jsinspector.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsinspector.xcconfig"; sourceTree = ""; }; - 4AF5CE6BE03C21CE4BBC4080332092EE /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; - 4B606B0F67F33623980C3AF8D4584A1B /* RNNOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNOptions.m; path = lib/ios/RNNOptions.m; sourceTree = ""; }; - 4BA1DE00D4E5D35C53102D1F5B961EA8 /* RCTUIManagerUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerUtils.h; sourceTree = ""; }; - 4BC8560669F75B7D1C958E7D215699D0 /* RCTInterpolationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInterpolationAnimatedNode.h; sourceTree = ""; }; - 4BD8FF9A258C2B0E454A5E32EAD49FDB /* RCTTypeSafety.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTTypeSafety.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 4C0C8B130D8BFBEF2446A37836267E92 /* RNNBackButtonOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBackButtonOptions.m; path = lib/ios/RNNBackButtonOptions.m; sourceTree = ""; }; - 4C21E20C539E128C741FF49018AFE393 /* RCTFileRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileRequestHandler.h; path = Libraries/Network/RCTFileRequestHandler.h; sourceTree = ""; }; - 4C88A0A2E441EFBD9E7DBEE7E3592033 /* DispatchMessageQueueThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DispatchMessageQueueThread.h; sourceTree = ""; }; - 4CB67513BB58E0283ABF083343165629 /* DotIndicatorOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DotIndicatorOptions.m; path = lib/ios/DotIndicatorOptions.m; sourceTree = ""; }; - 4D837E33CBEA1FFB983933D1C6FA1CFB /* RCTBundleURLProvider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBundleURLProvider.h; sourceTree = ""; }; - 4E2997B69A3010805EEC56AE8D58BEF0 /* RNNLargeTitleOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNLargeTitleOptions.m; path = lib/ios/RNNLargeTitleOptions.m; sourceTree = ""; }; - 4E6978EF46710D0841BE5A29005D93D5 /* RCTErrorCustomizer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorCustomizer.h; sourceTree = ""; }; - 4E8349FA45346FE05BB7B1E1F11E3E74 /* React-RCTVibration.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTVibration.xcconfig"; sourceTree = ""; }; - 4ECD6724B545EC0264B4E063E6CCD25D /* VICMAImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = VICMAImageView.h; path = lib/ios/VICMAImageView.h; sourceTree = ""; }; - 4EFCD24FCFCB79DBBFB4DE8C20056846 /* threadsafe.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = threadsafe.h; sourceTree = ""; }; - 4F2B80BE92A8529D623C119DFAE8869B /* RCTSurfaceRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceRootView.mm; sourceTree = ""; }; - 4F526649CE0A5A8FFCF8FF6550EF74DA /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = experiments.cpp; sourceTree = ""; }; - 4F58D523D87FBD9FDAB439F60382EB2F /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; - 500DFEB3B276ABDED5C45E343D8E6EC8 /* RCTComponentEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentEvent.m; sourceTree = ""; }; - 50343087FFDAAAFCCC730F1BC14B7943 /* NullBool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullBool.h; path = lib/ios/NullBool.h; sourceTree = ""; }; - 50374B22222677A355CC6586DB38D49C /* RNNButtonOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNButtonOptions.m; path = lib/ios/RNNButtonOptions.m; sourceTree = ""; }; - 506D1F3E063D223EE3E1C08B1D6F35A6 /* YGNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNode.h; path = yoga/YGNode.h; sourceTree = ""; }; - 50A377BED6F492018D5F66CC43B1ED01 /* RCTRefreshControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControl.h; sourceTree = ""; }; - 5104F3BC26FEECA2D63D370C9458762A /* YGConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGConfig.cpp; path = yoga/YGConfig.cpp; sourceTree = ""; }; - 51163693ECA9DDB998E3F22BEFF2BD4A /* RCTMultilineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultilineTextInputViewManager.h; sourceTree = ""; }; - 514AC6E19240AB3F92AD30FCFEA06CF4 /* RNNFontAttributesCreator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNFontAttributesCreator.m; path = lib/ios/RNNFontAttributesCreator.m; sourceTree = ""; }; - 5209709C390F57CD1A9473DBD142DFD2 /* RCTConvert.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTConvert.m; sourceTree = ""; }; - 521300362C6D2BAF2B6B60B9B06F4B7B /* BoolParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = BoolParser.m; path = lib/ios/BoolParser.m; sourceTree = ""; }; - 521B36C6D595E37338BC19043EFAB4E5 /* double-conversion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "double-conversion.h"; path = "double-conversion/double-conversion.h"; sourceTree = ""; }; - 5220CEA7D5D4583F3A823DE07EE01D65 /* YGEnums.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGEnums.cpp; path = yoga/YGEnums.cpp; sourceTree = ""; }; - 523A0FB3932F7530DE6C58BEC3B53C25 /* DictionaryParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DictionaryParser.h; path = lib/ios/DictionaryParser.h; sourceTree = ""; }; - 52C39291AFCBFBBA77450E1A95909B20 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; - 52FC7ADD5A40E08BDB6CC5E3E10B1DFF /* RCTTransformAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTransformAnimatedNode.m; sourceTree = ""; }; - 532D19D6A9B79D1CFB9A19AB3F138B7D /* RCTShadowView+Layout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Layout.h"; sourceTree = ""; }; - 5425F9F3A78CB2B4016FF2F087A7D62E /* RNNInteractivePopAnimator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNInteractivePopAnimator.h; path = lib/ios/RNNInteractivePopAnimator.h; sourceTree = ""; }; - 54455C6DE0B16A75284E4ABD5D199608 /* RCTSlider.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSlider.m; sourceTree = ""; }; - 5473620513931A89508086D131F06F4D /* RCTSafeAreaView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaView.h; sourceTree = ""; }; - 54C0DBC3BF7A8D96632DFD8035872B17 /* RNNTopTabsOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTopTabsOptions.m; path = lib/ios/RNNTopTabsOptions.m; sourceTree = ""; }; - 54C64BE034BA1EAD0E16992498319D4C /* RecoverableError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RecoverableError.h; sourceTree = ""; }; - 5506189D967BB06749B3B0E48DD9DB87 /* String.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = String.cpp; path = folly/String.cpp; sourceTree = ""; }; - 553782007A784206D8DD0D0CC5EA1203 /* RNNAnimationsTransitionDelegate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNAnimationsTransitionDelegate.m; path = lib/ios/RNNAnimationsTransitionDelegate.m; sourceTree = ""; }; - 55441AAC940A4A155522308D20985631 /* RCTI18nUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nUtil.h; sourceTree = ""; }; - 55703FDAF407B0A1289B669DC7BEEF20 /* RCTSurfaceHostingProxyRootView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingProxyRootView.mm; sourceTree = ""; }; - 55B917ADEDB2467F69934A63A0EA1723 /* Double.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Double.h; path = lib/ios/Double.h; sourceTree = ""; }; - 55F0A34FCEADF7994FB47EA8BBF6AC51 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; - 56436F5C8E069F838D8FC15186251167 /* Bitfield.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bitfield.h; path = yoga/Bitfield.h; sourceTree = ""; }; - 569F3E07E36C4D16D09FAD9F83C3ED5B /* RNNSideMenuController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSideMenuController.m; path = lib/ios/RNNSideMenuController.m; sourceTree = ""; }; - 56CAE41B815E923F14C467766E852406 /* RCTBackedTextInputDelegateAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBackedTextInputDelegateAdapter.m; sourceTree = ""; }; - 56D44FF7988C658A7769CA316774E639 /* RNNReactView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNReactView.h; path = lib/ios/RNNReactView.h; sourceTree = ""; }; - 56DA5EC492C67F16EB91E3CEE99A0182 /* RNNSplitViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSplitViewController.m; path = lib/ios/RNNSplitViewController.m; sourceTree = ""; }; - 5724669C3C8119123534D8C73D5F3F06 /* React-jsiexecutor-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsiexecutor-dummy.m"; sourceTree = ""; }; - 5744EBF350C62F34F03195AE14C7F857 /* RCTTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextView.h; sourceTree = ""; }; - 576C0CACF6A9FB0D9AE650A5709B6E8C /* RNNTopTabsOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTopTabsOptions.h; path = lib/ios/RNNTopTabsOptions.h; sourceTree = ""; }; - 57C888C33257238115BECD16ADB79B70 /* RNNSubtitleOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSubtitleOptions.m; path = lib/ios/RNNSubtitleOptions.m; sourceTree = ""; }; - 581DB277C6DFE06032C10679B0C335BB /* RCTMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMacros.h; sourceTree = ""; }; - 582DCD537DF1195D48F574F0B098718F /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; - 58535C3660A057B0A37DFF7F8A1C1DE1 /* RCTSurfaceView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceView.mm; sourceTree = ""; }; - 589E864149D6B4EC9235E1EF3B40AE99 /* RCTUIManagerObserverCoordinator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManagerObserverCoordinator.h; sourceTree = ""; }; - 58DC2051B5C1AF0F0DE4FA11D059069A /* RCTBaseTextInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputView.m; sourceTree = ""; }; - 5906ECED277A6042AA14629C87BA165D /* RNNSideMenuSideOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSideMenuSideOptions.h; path = lib/ios/RNNSideMenuSideOptions.h; sourceTree = ""; }; - 5974228F17BECE82FA19022CEE9CF345 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; - 5995ECE62A806083435782937BD351DF /* RNNReactRootViewCreator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNReactRootViewCreator.m; path = lib/ios/RNNReactRootViewCreator.m; sourceTree = ""; }; - 59C5475642BD3CBDEE068F579A497A86 /* RCTConvert+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+Transform.h"; sourceTree = ""; }; - 59D8CB0592F15FAA666275A427F9A9BA /* RCTImageStoreManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageStoreManager.h; path = React/CoreModules/RCTImageStoreManager.h; sourceTree = ""; }; - 5A0B852A50FCD6739C27538CAEF5EE76 /* RCTInputAccessoryView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryView.h; sourceTree = ""; }; - 5A151EFFBE788F37926E741D073995D8 /* RCTDevMenu.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDevMenu.h; sourceTree = ""; }; - 5A4647EAC335697F917B30789997B624 /* RNNOverlayManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNOverlayManager.h; path = lib/ios/RNNOverlayManager.h; sourceTree = ""; }; - 5A61CE433E3041496AD13007E87758E7 /* NSTextStorage+FontScaling.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NSTextStorage+FontScaling.m"; sourceTree = ""; }; - 5B0E8060DCFA082DEA1399E6D881C566 /* logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = logging.h; path = src/glog/logging.h; sourceTree = ""; }; - 5B202FF1924B1FEA06E24AAD57CD5550 /* RCTRootContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootContentView.h; sourceTree = ""; }; - 5B85AA2245996223EC84EE69A80D1BEC /* RNNSplitViewControllerPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSplitViewControllerPresenter.m; path = lib/ios/RNNSplitViewControllerPresenter.m; sourceTree = ""; }; - 5BBD22D6966FBF4A9382047AB8FA1011 /* RCTBaseTextInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputView.h; sourceTree = ""; }; - 5C9D4774828B7DC376BFCA55B870F6C0 /* NSDataBigString.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = NSDataBigString.mm; sourceTree = ""; }; - 5C9D8B2254ACE50199D2188FC16ECAF4 /* RAMBundleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RAMBundleRegistry.h; sourceTree = ""; }; - 5CA96248D4206079C042058B48EA9FF4 /* RCTVibration.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVibration.m; sourceTree = ""; }; - 5CEC5DAA2679116F80A8C322CF9D82A7 /* Demangle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Demangle.cpp; path = folly/detail/Demangle.cpp; sourceTree = ""; }; - 5D0658FB95679C37795EA06854E64B58 /* HMSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = HMSegmentedControl.h; path = lib/ios/HMSegmentedControl.h; sourceTree = ""; }; - 5D57971A1A27B70660D9061B3DAB3B01 /* UIView+Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Utils.h"; sourceTree = ""; }; - 5D6BAB40C211C277619B933ED34DC504 /* RNNOverlayOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNOverlayOptions.h; path = lib/ios/RNNOverlayOptions.h; sourceTree = ""; }; - 5E2202D418DA037C4A962C8FCDAC3624 /* libPods-CalendarsExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-CalendarsExample.a"; path = "libPods-CalendarsExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E3EF28D89950F146ABDAEB23E595CFD /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5E4E8CE518664A208C9DABE65DD0C282 /* RNNSplitViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSplitViewController.h; path = lib/ios/RNNSplitViewController.h; sourceTree = ""; }; - 5EA89DFA27ABD1CB9297923AFD8283ED /* RNNElementView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNElementView.h; path = lib/ios/RNNElementView.h; sourceTree = ""; }; - 5EFDA71B7A33483309B188002282455F /* RCTAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedImage.m; sourceTree = ""; }; - 5F492C546D6F149D72B13F70998472D4 /* RCTUIUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUIUtils.m; sourceTree = ""; }; - 5F9B55349216C1E05D17ABE44324E3F3 /* JSCRuntime.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSCRuntime.cpp; sourceTree = ""; }; - 5FC56136546816E648CE0572D1F72B46 /* RCTImageLoaderProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageLoaderProtocol.h; path = Libraries/Image/RCTImageLoaderProtocol.h; sourceTree = ""; }; - 602DA9443017AFFEE971F78601AC23A2 /* ieee.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ieee.h; path = "double-conversion/ieee.h"; sourceTree = ""; }; - 6031DCDD2C80B324CB9CAE157A1D0C92 /* RCTLinkingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLinkingManager.m; sourceTree = ""; }; - 60A4FCD3AA548DF5214D2E094453C2CC /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIDynamic.cpp; sourceTree = ""; }; - 60C265A92994A15886CFD5F84077962F /* RNNDefaultOptionsHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNDefaultOptionsHelper.h; path = lib/ios/RNNDefaultOptionsHelper.h; sourceTree = ""; }; - 6100B7C43DD662044B863E3342C51B95 /* Folly-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Folly-dummy.m"; sourceTree = ""; }; - 61BF98CF122C2693B638D1FC09BFC19D /* RCTBorderStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderStyle.h; sourceTree = ""; }; - 620B1999128B8E7B76C9C21D533DD6E8 /* RCTErrorInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTErrorInfo.h; sourceTree = ""; }; - 624C132CA4F7794811C660B49A9DBEA6 /* RNNErrorHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNErrorHandler.h; path = lib/ios/RNNErrorHandler.h; sourceTree = ""; }; - 62508F7F737ECDD4B01F5B4D220124A8 /* RCTConvert+UIBarButtonSystemItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+UIBarButtonSystemItem.h"; path = "lib/ios/RCTConvert+UIBarButtonSystemItem.h"; sourceTree = ""; }; - 627072622FE6BE4F6905DD50997000CA /* RCTBaseTextInputShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputShadowView.m; sourceTree = ""; }; - 62B24E8F6E5520ED90BCC397559D2235 /* YGValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGValue.h; path = yoga/YGValue.h; sourceTree = ""; }; - 62BCAAD03B06469D91674966C66404C5 /* RCTUIManagerObserverCoordinator.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTUIManagerObserverCoordinator.mm; sourceTree = ""; }; - 634270CBEB618DB683EF7A470CCCBCA3 /* Color.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Color.m; path = lib/ios/Color.m; sourceTree = ""; }; - 6352E8AC4AF2F206CA7715B638AB2F9E /* RNNSideMenuSideOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSideMenuSideOptions.m; path = lib/ios/RNNSideMenuSideOptions.m; sourceTree = ""; }; - 6396E30878400E1658ED1A281FEB0394 /* React-RCTLinking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTLinking-prefix.pch"; sourceTree = ""; }; - 639A9FDEDB68B58886715691BA5D07E7 /* RCTSpringAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSpringAnimation.m; sourceTree = ""; }; - 63A5686EE92F85311D5845A729500ED3 /* NullIntNumber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullIntNumber.h; path = lib/ios/NullIntNumber.h; sourceTree = ""; }; - 63C5EA6D7E35B8328D9E57543FF3CD1E /* InspectorInterfaces.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = InspectorInterfaces.h; sourceTree = ""; }; - 63D3474FD84AC36AFFEDFBB30878605C /* RNNUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNUtils.m; path = lib/ios/RNNUtils.m; sourceTree = ""; }; - 63EFC38D17FDFC0D940F50D0154D9933 /* RCTUIManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUIManager.h; sourceTree = ""; }; - 641C5C9EE49F9599A0616245D9F64668 /* React-Core.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-Core.xcconfig"; sourceTree = ""; }; - 6438CBC641DD71DC1AC645CDC4887A6C /* RCTScrollViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollViewManager.h; sourceTree = ""; }; - 6449ABFF7CDAE0B823E4F4A2E19D1AC7 /* RCTSlider.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSlider.h; sourceTree = ""; }; - 64D65603B0974AB0A5FFE89C9C2DC51F /* ColorParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ColorParser.h; path = lib/ios/ColorParser.h; sourceTree = ""; }; - 651E6650E41ED0B01F1CDF56A42DC205 /* RCTCxxUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxUtils.h; sourceTree = ""; }; - 6563BDABC54B2612589EEE169A19D33D /* UIColor+RNNUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+RNNUtils.m"; sourceTree = ""; }; - 65994577A7D43E89898AE39D0AA8E7DA /* fast-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fast-dtoa.cc"; path = "double-conversion/fast-dtoa.cc"; sourceTree = ""; }; - 65BFF7C955710CC4E5FDDE46A3897ACC /* TextParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TextParser.m; path = lib/ios/TextParser.m; sourceTree = ""; }; - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 65EE387CB2C6A55611FC826472EB7635 /* Yoga.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Yoga.cpp; path = yoga/Yoga.cpp; sourceTree = ""; }; - 666FB1E13EE615C8503CD7CE43A40B58 /* NullImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullImage.m; path = lib/ios/NullImage.m; sourceTree = ""; }; - 66A20DB954FD6195AA2327980C175E7A /* RCTTurboModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTurboModule.h; sourceTree = ""; }; - 6705E3C368A77364A6E15E711ED58244 /* jsi.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = jsi.h; sourceTree = ""; }; - 672CBA840EECC156E328D829F6EECD46 /* RCTRequired.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = RCTRequired.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6759DEF127D8E02EFB2DEC5B8D147C60 /* RNNOverlayWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNOverlayWindow.h; path = lib/ios/RNNOverlayWindow.h; sourceTree = ""; }; - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 67A1A57778302F4E6FD0688CF9978FEB /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; - 67C6A9073BA9B1017E14C8C2214BDB4F /* Folly-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Folly-prefix.pch"; sourceTree = ""; }; - 68131146E46039D7D324F5B0935479FC /* RNNAnimatedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNAnimatedView.m; path = lib/ios/RNNAnimatedView.m; sourceTree = ""; }; - 682EA31449A74221A459882E11285198 /* RNNScreenTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNScreenTransition.m; path = lib/ios/RNNScreenTransition.m; sourceTree = ""; }; - 68A134D293D311430D1B25C9553BB8FD /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 68B45085B541B6D667C5AA8255025B1D /* RNNBridgeModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBridgeModule.m; path = lib/ios/RNNBridgeModule.m; sourceTree = ""; }; - 68B7C9B639315DF6D84671195DE6623A /* dynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = dynamic.cpp; path = folly/dynamic.cpp; sourceTree = ""; }; - 68D5945F8F07ABA38A2147442AB48156 /* RNNCustomTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNCustomTitleView.h; path = lib/ios/RNNCustomTitleView.h; sourceTree = ""; }; - 68EEE9B2163313B33F21F3AC19511331 /* RNNUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNUtils.h; path = lib/ios/RNNUtils.h; sourceTree = ""; }; - 6949E40905A2A8B925417BBB4E889279 /* RCTSinglelineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSinglelineTextInputViewManager.m; sourceTree = ""; }; - 69961E50E3FF9CD34AED7B5D42179506 /* RCTDivisionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDivisionAnimatedNode.h; sourceTree = ""; }; - 69AA48B4C5C3EBD03CE2D9760853CFF6 /* React-jsiexecutor-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsiexecutor-prefix.pch"; sourceTree = ""; }; - 69E8A5F10176DFB95B5443D74C3B9FF9 /* Pods-CalendarsExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExample.debug.xcconfig"; sourceTree = ""; }; - 6A956906F2D2D436BF69EB870D19E374 /* RCTAdditionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAdditionAnimatedNode.h; sourceTree = ""; }; - 6AABD7181EA87FBB810207DBC9667B4C /* F14Table.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = F14Table.cpp; path = folly/container/detail/F14Table.cpp; sourceTree = ""; }; - 6B2EBDC81BFAEBA9919550FB7A3CB081 /* TextParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TextParser.h; path = lib/ios/TextParser.h; sourceTree = ""; }; - 6B5FB339367A1F29B3D34F10C4A9EEE1 /* Pods-CalendarsExample-tvOSTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CalendarsExample-tvOSTests-dummy.m"; sourceTree = ""; }; - 6B825BA868E6EF3158B9BC99134CE0BA /* RCTPackagerConnection.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTPackagerConnection.mm; sourceTree = ""; }; - 6CDD487853885DB3F8B1D545C06BBCE5 /* RNNSplashScreen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSplashScreen.h; path = lib/ios/RNNSplashScreen.h; sourceTree = ""; }; - 6D0354A2FE387212321F65ACFDCE83EA /* RCTDevMenu.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDevMenu.m; sourceTree = ""; }; - 6D5EA87CEB99C21C4FF70F55AEC6D82B /* Pods-CalendarsExample-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExample-tvOS.release.xcconfig"; sourceTree = ""; }; - 6DB7384FC701053F99B9FF37A1BEE800 /* React-jsinspector-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-jsinspector-prefix.pch"; sourceTree = ""; }; - 6E494FC05FA88CA6A184878F66F3183A /* RNNAnimationsOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNAnimationsOptions.m; path = lib/ios/RNNAnimationsOptions.m; sourceTree = ""; }; - 6E52589935392C671AE55E0FAF1AA194 /* RCTImageViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageViewManager.h; path = Libraries/Image/RCTImageViewManager.h; sourceTree = ""; }; - 6EA51B81BB608A3DD581C07DF21C757B /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - 6EC3A210858134725FDE1E769DA157E0 /* RCTBaseTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextShadowView.m; sourceTree = ""; }; - 6F93F67E29DC8474438C7E5E74185C98 /* ReactCommon-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ReactCommon-dummy.m"; sourceTree = ""; }; - 6FE79CC3A7332B529783B70841DD4392 /* ReactNativeNavigation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactNativeNavigation-prefix.pch"; sourceTree = ""; }; - 6FE8788DBB79180DDF30C335192467CB /* SideMenuOpenMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SideMenuOpenMode.m; path = lib/ios/SideMenuOpenMode.m; sourceTree = ""; }; - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 70213BDC2825450815F0BEA54B215C24 /* ReactNativeNavigation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactNativeNavigation.xcconfig; sourceTree = ""; }; - 7042086D4F065B6D91B3E2E5530EC780 /* MMDrawerBarButtonItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMDrawerBarButtonItem.m; sourceTree = ""; }; - 707C33C2ABA5CF97DA752A623EA09C5B /* RCTAdditionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAdditionAnimatedNode.m; sourceTree = ""; }; - 70841852F39BED67F1BCD12D8D6AECA3 /* ReactNativeNavigation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ReactNativeNavigation.m; path = lib/ios/ReactNativeNavigation.m; sourceTree = ""; }; - 70D35A655DF0743FB42CEB4245D0D49E /* RCTDecayAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDecayAnimation.h; sourceTree = ""; }; - 712B6A3563E0FD339319789FDBBE6A83 /* RCTRootViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootViewDelegate.h; sourceTree = ""; }; - 713744D0A78412AD7422818098BAEEE6 /* RCTErrorInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTErrorInfo.m; sourceTree = ""; }; - 71BB78EA7C3BF3C1647C38DE4E10BCE5 /* RCTInputAccessoryViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewManager.m; sourceTree = ""; }; - 725A9F844AE29195C21EA5E64A60E3A2 /* RCTFileReaderModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFileReaderModule.h; path = Libraries/Blob/RCTFileReaderModule.h; sourceTree = ""; }; - 7260B6BA331D206810E449904548A049 /* React-jsiexecutor.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.xcconfig"; sourceTree = ""; }; - 72842E90145B249D3CFC79BDD5AAE508 /* RCTInvalidating.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInvalidating.h; sourceTree = ""; }; - 73163FA6594E465CD60D2E57079B072E /* RNNBasePresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBasePresenter.m; path = lib/ios/RNNBasePresenter.m; sourceTree = ""; }; - 733C388C1644EF3B884E8B060CF4BCD3 /* ReactNativeNavigation.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = ReactNativeNavigation.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7371619BFAB2A3EA00CD278B32951676 /* React-RCTImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTImage-prefix.pch"; sourceTree = ""; }; - 73B21794B5FC10B0E97D7F76E8C5F9B8 /* ModuleRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ModuleRegistry.h; sourceTree = ""; }; - 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTActionSheet.a"; path = "libReact-RCTActionSheet.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 74F6C1567B22122E5531589862A333C3 /* RCTAsyncLocalStorage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAsyncLocalStorage.m; sourceTree = ""; }; - 7529F537F7804FC7D5BCD10746EFD85D /* log.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = log.cpp; path = yoga/log.cpp; sourceTree = ""; }; - 75471EBACFD59D120F506EE093A8F3D9 /* RNNComponentOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNComponentOptions.h; path = lib/ios/RNNComponentOptions.h; sourceTree = ""; }; - 75E6D2FFDCD69BF12C59DEDFB996189F /* RCTNetworkTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNetworkTask.h; path = Libraries/Network/RCTNetworkTask.h; sourceTree = ""; }; - 762DA011AADEA77F32DFBEB6CBB1B4F3 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; - 768E288F54BFFA493AA402228B73295B /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; - 768F95791F596B31864858BF21DAC5F3 /* RCTKeyboardObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTKeyboardObserver.m; sourceTree = ""; }; - 76B67DD85955BFAC34F8B9A79565201A /* RCTFileReaderModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileReaderModule.m; sourceTree = ""; }; - 778464C8C7E56616FAC21ED35D8596C8 /* RCTDeviceInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDeviceInfo.m; sourceTree = ""; }; - 779629F1908EE528A95A40F890638DF3 /* RCTDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDisplayLink.m; sourceTree = ""; }; - 77C2E37C63327D81D3350FF517884154 /* RCTScrollViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollViewManager.m; sourceTree = ""; }; - 781D0F1108E95F3A2D89B11202C07254 /* RCTRequired.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTRequired.h; path = RCTRequired/RCTRequired.h; sourceTree = ""; }; - 78357446BDCE3930B1D3A5D52C9C8879 /* RCTEventDispatcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventDispatcher.m; sourceTree = ""; }; - 78564007560020F753E035FBF7687AD4 /* MMExampleDrawerVisualStateManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMExampleDrawerVisualStateManager.h; sourceTree = ""; }; - 7873028784D048FC29F696FD8BB59F98 /* NullText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullText.h; path = lib/ios/NullText.h; sourceTree = ""; }; - 78B58D11448A67E4659B943F36660CCA /* React-RCTSettings.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTSettings.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7900CB501EDDACDA6532B5288EFE1745 /* RCTBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBridge.m; sourceTree = ""; }; - 798913C836D4159FE568350B5478E2D1 /* glog.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = glog.xcconfig; sourceTree = ""; }; - 79A4C0C3F8FB8D246DE56011F9CB611E /* RCTFont.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFont.h; sourceTree = ""; }; - 79C4E16C8986BFEB88FD90DD1B437946 /* RCTJavaScriptLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptLoader.h; sourceTree = ""; }; - 7A97A523D4F0D17D576ADD9BB246DF1F /* RCTStyleAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTStyleAnimatedNode.m; sourceTree = ""; }; - 7B4AF3D25DEA8622A9422AC5499FD1D7 /* RCTSurfaceSizeMeasureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceSizeMeasureMode.h; sourceTree = ""; }; - 7B6C7F1A2539D3F0FEF83702BFEE27D8 /* RCTResizeMode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTResizeMode.m; sourceTree = ""; }; - 7C43630BD4053C637F032896E2A8F8DB /* RNNUIBarButtonItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNUIBarButtonItem.m; path = lib/ios/RNNUIBarButtonItem.m; sourceTree = ""; }; - 7C9F0D2CE4DAEA65C220D25343B211A4 /* RNNInsetsOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNInsetsOptions.m; path = lib/ios/RNNInsetsOptions.m; sourceTree = ""; }; - 7CB5ABB2625FA4E548A9E2FE150D9EE1 /* RNNSideMenuChildVC.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSideMenuChildVC.h; path = lib/ios/RNNSideMenuChildVC.h; sourceTree = ""; }; - 7CBC8D1C2E3D734FC5309FA5DABA90D3 /* UIView+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+Private.h"; sourceTree = ""; }; - 7CD44C3A245688D5B11382980BCD1C6D /* RCTAnimationUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimationUtils.h; path = Libraries/NativeAnimation/RCTAnimationUtils.h; sourceTree = ""; }; - 7D20393771A84C262F9F4F91592975D3 /* React-RCTNetwork.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTNetwork.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7DB6E080FFC0F25545C148F9FBA55792 /* MMDrawerController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMDrawerController.m; sourceTree = ""; }; - 7DC4CF3951E853A9D1CBDE563147D549 /* React-CoreModules.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-CoreModules.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 7DCAC5A67D1922CFBB12EB1F1850D48D /* IntNumberParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntNumberParser.h; path = lib/ios/IntNumberParser.h; sourceTree = ""; }; - 7DD8E8AB8DF27D73EA050746C3E6CA29 /* RCTSliderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSliderManager.m; sourceTree = ""; }; - 7E189B725277AF78EF896963AC8C0183 /* vlog_is_on.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = vlog_is_on.cc; path = src/vlog_is_on.cc; sourceTree = ""; }; - 7E2BC43BD56339CA3DED66A87707C54E /* bignum-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "bignum-dtoa.h"; path = "double-conversion/bignum-dtoa.h"; sourceTree = ""; }; - 7E2E72766F8E2B270DE2EC8E9556CE18 /* RNNSplashScreen.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSplashScreen.m; path = lib/ios/RNNSplashScreen.m; sourceTree = ""; }; - 7E821154F8A53025255D23A315D707EF /* RCTSurfaceDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceDelegate.h; sourceTree = ""; }; - 7ED53615BB406EB0A939A384F5AA273A /* JSINativeModules.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSINativeModules.h; path = jsireact/JSINativeModules.h; sourceTree = ""; }; - 7F0AFA67C4067E53F58DA1811422C36A /* UIViewController+RNNOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+RNNOptions.h"; path = "lib/ios/UIViewController+RNNOptions.h"; sourceTree = ""; }; - 7F0F77649262CBAA120B770DDFC5EDD0 /* JSIndexedRAMBundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIndexedRAMBundle.h; sourceTree = ""; }; - 7F214C3643741B724B4ABE58C9193ACE /* RCTSurfaceRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowView.h; sourceTree = ""; }; - 7F32B511168604F89C5615144F74BE99 /* RCTDiffClampAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDiffClampAnimatedNode.h; sourceTree = ""; }; - 80140684D6A61BEF1E352A2B445510FC /* RNNReactView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNReactView.m; path = lib/ios/RNNReactView.m; sourceTree = ""; }; - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 803B36F048E4FCA832160185B113D37E /* InspectorInterfaces.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = InspectorInterfaces.cpp; sourceTree = ""; }; - 8053D3DEED3FA3FF5426CDA9F50A216C /* RNNLayoutManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNLayoutManager.m; path = lib/ios/RNNLayoutManager.m; sourceTree = ""; }; - 806B4142C23D7B4C78FF61DDC21E53E7 /* RCTTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextViewManager.h; sourceTree = ""; }; - 807A5644AA4D947C13BCEE5788D8A5DD /* RCTParserUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTParserUtils.h; sourceTree = ""; }; - 807FC00761C178645A8AD2EDB077FF5C /* Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Utils.h; path = yoga/Utils.h; sourceTree = ""; }; - 80B4691223E981B9FD48F8CF3C4368E5 /* RCTTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextViewManager.m; sourceTree = ""; }; - 815C39E736D40B5FEF65FE40A7E705AE /* RCTParserUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTParserUtils.m; sourceTree = ""; }; - 8162E204CBD05C00DFBE954FE5BF70C8 /* RCTI18nManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nManager.m; sourceTree = ""; }; - 81ABD8B8D91971D0DF4F11F4A1CCE13B /* utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utils.h; path = "double-conversion/utils.h"; sourceTree = ""; }; - 81BD779E8816DA47BB6E335914EDD5FE /* UIViewController+Utils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+Utils.m"; sourceTree = ""; }; - 81C3CC280C715C4CE8A448A0024061E6 /* RCTURLRequestDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestDelegate.h; sourceTree = ""; }; - 81F426974F4E1BE8502CD0F9583A0839 /* RNNNavigationButtons.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNNavigationButtons.m; path = lib/ios/RNNNavigationButtons.m; sourceTree = ""; }; - 825CB70261E32AF3B0D074CD0A2CF0B0 /* RCTInputAccessoryShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryShadowView.m; sourceTree = ""; }; - 82728FA3CA40D7CAD8F913B9BFA303B4 /* Yoga.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Yoga.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 82E8830F3920D135A25C07520071F270 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; - 8319950D742594500982747AE2C8E0A2 /* RNNAnimationsOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNAnimationsOptions.h; path = lib/ios/RNNAnimationsOptions.h; sourceTree = ""; }; - 83A6FB2E0990CAE8EC487AF8C46E510C /* RNNAnimationConfigurationOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNAnimationConfigurationOptions.m; path = lib/ios/RNNAnimationConfigurationOptions.m; sourceTree = ""; }; - 8449345E0AD6FF686784C9D051872FE5 /* RCTMultipartStreamReader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartStreamReader.m; sourceTree = ""; }; - 84A422E230C18E3F661DE2E7B9F3C954 /* fixed-dtoa.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "fixed-dtoa.cc"; path = "double-conversion/fixed-dtoa.cc"; sourceTree = ""; }; - 84AC2ED43EAFDF71A182199DA73FE6A5 /* React-jsi.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsi.xcconfig"; sourceTree = ""; }; - 85D4381AC956F54701643ACBAA93039A /* RCTRawTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextShadowView.m; sourceTree = ""; }; - 85E465A02C7D36F2548A7C64F6E02FD2 /* RCTWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTWeakProxy.h; sourceTree = ""; }; - 86DEC2B868D6FDB87B390506ADA98D92 /* RCTWrapperViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWrapperViewController.m; sourceTree = ""; }; - 8746CF3B4D756FC87FE1DAAE59C7AE2D /* CompactValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CompactValue.h; path = yoga/CompactValue.h; sourceTree = ""; }; - 8747D67E4729DD620BC36F330B1DEB87 /* RCTHTTPRequestHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTHTTPRequestHandler.mm; sourceTree = ""; }; - 876A985D1A4B400C73D57FDC2AD64BCB /* RNNAnimatedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNAnimatedView.h; path = lib/ios/RNNAnimatedView.h; sourceTree = ""; }; - 8778FB8290FDF8708355090B05FB4A67 /* RCTPicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPicker.m; sourceTree = ""; }; - 87C5DA0A964DB88EBBC767D52BCEDAB6 /* RNNComponentOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNComponentOptions.m; path = lib/ios/RNNComponentOptions.m; sourceTree = ""; }; - 87DFF1BBC1BB8BFFE43733E8652B0E52 /* RNNTitleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTitleOptions.h; path = lib/ios/RNNTitleOptions.h; sourceTree = ""; }; - 8819B83142494EC4F171514ADFB7E31E /* React-cxxreact.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-cxxreact.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 8846BB2477A1BBA6009046E0D35DBE96 /* RCTImageViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageViewManager.m; sourceTree = ""; }; - 887324A581FBFBB59F9D0ED54FE816AC /* RCTImageShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageShadowView.h; path = Libraries/Image/RCTImageShadowView.h; sourceTree = ""; }; - 888388C41C5358481F4FA3213A0A4202 /* JSINativeModules.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSINativeModules.cpp; path = jsireact/JSINativeModules.cpp; sourceTree = ""; }; - 88B3608E0A658815F9CB0DF3F7B5BC5F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 88BC30E8D3EFF1C707E42C410A53202A /* RNNSubtitleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSubtitleOptions.h; path = lib/ios/RNNSubtitleOptions.h; sourceTree = ""; }; - 88DA73FA2AD805239382F786743EA9E2 /* UITabBarController+RNNOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITabBarController+RNNOptions.m"; path = "lib/ios/UITabBarController+RNNOptions.m"; sourceTree = ""; }; - 88F1EB33EE3EFA8766E883F361EF8DE8 /* RNNSideMenuChildVC.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSideMenuChildVC.m; path = lib/ios/RNNSideMenuChildVC.m; sourceTree = ""; }; - 89AEF54DCA65E36DF689CF56A56B5484 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; - 89BFB8C5AE42818229D93BFEC2FDE576 /* RCTNetworkTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetworkTask.m; sourceTree = ""; }; - 8A15703D71AB822DDE385540FCB7EB76 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = RAMBundleRegistry.cpp; sourceTree = ""; }; - 8A36571815975FC9FCA72C12CA002542 /* RCTBaseTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextViewManager.m; sourceTree = ""; }; - 8AB707CD04C354850F9E1E18538774CE /* RNNTabBarItemCreator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTabBarItemCreator.m; path = lib/ios/RNNTabBarItemCreator.m; sourceTree = ""; }; - 8AF166160353D2DAAE40C5FAFE5B6690 /* UINavigationController+RNNOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+RNNOptions.m"; path = "lib/ios/UINavigationController+RNNOptions.m"; sourceTree = ""; }; - 8B17FBE158393912112CB23A7A2AB163 /* RNNSplitViewOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSplitViewOptions.h; path = lib/ios/RNNSplitViewOptions.h; sourceTree = ""; }; - 8B6DB3A98CDABF0FEB0099759A780F3A /* SideMenuOpenGestureModeParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SideMenuOpenGestureModeParser.h; path = lib/ios/SideMenuOpenGestureModeParser.h; sourceTree = ""; }; - 8BD9DEBA4F7947E1736D19328F3A5BAC /* RCTModalHostViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewController.m; sourceTree = ""; }; - 8CD3DA5D379B17AE5CBBA0CB02C24728 /* RNNDotIndicatorPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNDotIndicatorPresenter.m; path = lib/ios/RNNDotIndicatorPresenter.m; sourceTree = ""; }; - 8CF4F08A03A6844B5D424985E5655C8F /* RCTAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimatedNode.h; sourceTree = ""; }; - 8D4A6F8A45C9258AACCA74565403D5B8 /* RCTConvert+CoreLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTConvert+CoreLocation.h"; sourceTree = ""; }; - 8D55AE1C4304FCFCA2250C5CCF578F1C /* React-RCTText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTText-dummy.m"; sourceTree = ""; }; - 8F251CCD3FAB2F22D168F2739ABDB374 /* RCTInspectorDevServerHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorDevServerHelper.h; sourceTree = ""; }; - 8F5D5CF3C3240DC85D9D4B0FAD84E3E5 /* NullDouble.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullDouble.h; path = lib/ios/NullDouble.h; sourceTree = ""; }; - 8FC7C3CBD3D74E15AA130B0610A26626 /* Dictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Dictionary.h; path = lib/ios/Dictionary.h; sourceTree = ""; }; - 8FF6724665637E865B342F2EA886CE4D /* RCTProfileTrampoline-i386.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-i386.S"; sourceTree = ""; }; - 909FC2BB5413B6748B749CD7E4EDE68D /* RCTURLRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTURLRequestHandler.h; sourceTree = ""; }; - 90AF144106B1E742AFFBC2278F11295C /* Pods-CalendarsExample-tvOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CalendarsExample-tvOS-dummy.m"; sourceTree = ""; }; - 90F106A05F805D1079E325A566827A0F /* strtod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strtod.h; path = "double-conversion/strtod.h"; sourceTree = ""; }; - 910661C3AAE0212AE349CAF265F9CD65 /* SideMenuOpenMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SideMenuOpenMode.h; path = lib/ios/SideMenuOpenMode.h; sourceTree = ""; }; - 9123B9771888D66F2B7C9BF85D5A6CD3 /* RNNTopTabOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTopTabOptions.m; path = lib/ios/RNNTopTabOptions.m; sourceTree = ""; }; - 91396E34BF573BF8F3AD33C8D61BBA9D /* JSModulesUnbundle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSModulesUnbundle.h; sourceTree = ""; }; - 9167C865A955BC28138FAD4567198012 /* RCTImageEditingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageEditingManager.h; path = React/CoreModules/RCTImageEditingManager.h; sourceTree = ""; }; - 919961F9128F1522DEADDE6E0E1EECD9 /* React-RCTVibration.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTVibration.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 91E1E9F914DF55120CE7D134493D3667 /* RCTFollyConvert.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFollyConvert.mm; sourceTree = ""; }; - 91EAACD39C88ECA47632CDAD273FFCC4 /* React-RCTImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTImage-dummy.m"; sourceTree = ""; }; - 922C942114037F6643F08CF44AF3F900 /* RCTRootView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootView.h; sourceTree = ""; }; - 922F05EFCE659DC7AA658398F15D6A5E /* RCTInputAccessoryViewContent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTInputAccessoryViewContent.m; sourceTree = ""; }; - 923191235442827557D8B3B153CCABB7 /* RNNSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSegmentedControl.h; path = lib/ios/RNNSegmentedControl.h; sourceTree = ""; }; - 925C366087BC780B691035EA5B5A7818 /* Text.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Text.m; path = lib/ios/Text.m; sourceTree = ""; }; - 93435D1558BE7063E455377CBA45032C /* RCTModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalManager.m; sourceTree = ""; }; - 9354C46598EE367BA1F3BF631F7CF6CD /* NoColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NoColor.h; path = lib/ios/NoColor.h; sourceTree = ""; }; - 939A0F30B5CC5BC995EB9E20BD590B46 /* CxxNativeModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = CxxNativeModule.cpp; sourceTree = ""; }; - 93DFEF934BAB107B39B8269D27442911 /* RNNComponentViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNComponentViewController.h; path = lib/ios/RNNComponentViewController.h; sourceTree = ""; }; - 9422A0CFFEEDA369378826897E7E3F33 /* RNNTransitionStateHolder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTransitionStateHolder.m; path = lib/ios/RNNTransitionStateHolder.m; sourceTree = ""; }; - 948F446B4881A6C512730ECDC0A1B8D9 /* React-CoreModules.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-CoreModules.xcconfig"; sourceTree = ""; }; - 94F3F61C5D3942C486563BEDDFB25A42 /* YGNodePrint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGNodePrint.h; path = yoga/YGNodePrint.h; sourceTree = ""; }; - 950A981F9AAC8C497F40A285A730A5F2 /* RCTInspectorDevServerHelper.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspectorDevServerHelper.mm; sourceTree = ""; }; - 950E55DD912B2A3CAF0AAFAE54BFEFFA /* RNNEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNEventEmitter.h; path = lib/ios/RNNEventEmitter.h; sourceTree = ""; }; - 9538A2B26E41A08E25AEECA0781EC122 /* RCTReloadCommand.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTReloadCommand.h; sourceTree = ""; }; - 9597A17212FCE2861BDDB702A042D1C0 /* RNNStackPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNStackPresenter.m; path = lib/ios/RNNStackPresenter.m; sourceTree = ""; }; - 95B30E73F061724D233D78D1DFAA0B86 /* RCTModalHostViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostViewManager.h; sourceTree = ""; }; - 961FFAD4611F889FE09FD0D5560897E1 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; - 9643F59F0A5A70F23A15E364EBFDC26C /* RCTVibration.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibration.h; path = Libraries/Vibration/RCTVibration.h; sourceTree = ""; }; - 965716ADD5BF1EAB31925E3CD756565A /* RCTSurfaceView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTSurfaceView+Internal.h"; sourceTree = ""; }; - 96A4EFBFD6D10A490E202CBE96270C3B /* RCTReconnectingWebSocket.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTReconnectingWebSocket.m; path = Libraries/WebSocket/RCTReconnectingWebSocket.m; sourceTree = ""; }; - 96FB9828E2904A75CAF4A1397AD6492C /* RCTRawTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextViewManager.h; sourceTree = ""; }; - 9761B14A3C1259E73252236689C58345 /* RCTExceptionsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTExceptionsManager.h; path = React/CoreModules/RCTExceptionsManager.h; sourceTree = ""; }; - 97752372C9650A05DB1B4343C460F6B4 /* json.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = json.cpp; path = folly/json.cpp; sourceTree = ""; }; - 97E085E4B0C1156BA4247F9D7FFE4DE5 /* NullNumber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullNumber.h; path = lib/ios/NullNumber.h; sourceTree = ""; }; - 982462EB908FB9EB92D2FFC16EA51758 /* Double.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Double.m; path = lib/ios/Double.m; sourceTree = ""; }; - 986418BB0C18EDC912098CAB50FD2387 /* RCTEventAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventAnimation.h; sourceTree = ""; }; - 98A4EB55B7A5C99BFB725FC0A7D4CA14 /* React-cxxreact.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-cxxreact.xcconfig"; sourceTree = ""; }; - 99143EC4D3ED53EBCC9C9E756C2BF52F /* Pods-CalendarsExample-tvOSTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CalendarsExample-tvOSTests-acknowledgements.markdown"; sourceTree = ""; }; - 9922984F5B3982A8303CA9C5FE8A77DD /* RNNBridgeManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBridgeManager.m; path = lib/ios/RNNBridgeManager.m; sourceTree = ""; }; - 992F514B66E6CB075D43A3E8BB9B140A /* RCTPropsAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPropsAnimatedNode.m; sourceTree = ""; }; - 995C942B2254716E1D2BD0E7F78FE98F /* React-RCTBlob.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTBlob.xcconfig"; sourceTree = ""; }; - 9979F1FBEB004FDF2ECA7760D53CFCDB /* RCTPerfMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerfMonitor.m; sourceTree = ""; }; - 99F07AB8A5E67027F423838C94045AB7 /* RNNCustomTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNCustomTitleView.m; path = lib/ios/RNNCustomTitleView.m; sourceTree = ""; }; - 9A64644BF144220DDE65EB521742A3AF /* RCTLayoutAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimation.h; sourceTree = ""; }; - 9A73F75D8F4704EA202665B4EC5F5CEF /* NoColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NoColor.m; path = lib/ios/NoColor.m; sourceTree = ""; }; - 9A88301B90E2EDA1BEFA309AEB09F093 /* Bool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Bool.h; path = lib/ios/Bool.h; sourceTree = ""; }; - 9A923AAE78CDB5BEC9ACE072850528D7 /* RNNErrorHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNErrorHandler.m; path = lib/ios/RNNErrorHandler.m; sourceTree = ""; }; - 9AB30E32353BF149D2895C55653D20E1 /* RCTWebSocketExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTWebSocketExecutor.m; path = Libraries/WebSocket/RCTWebSocketExecutor.m; sourceTree = ""; }; - 9B4CC989918311563C70901E5E1EDF97 /* RCTTypedModuleConstants.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTypedModuleConstants.mm; sourceTree = ""; }; - 9B56B39BECDC0C9A4A857E89A10E010C /* DoubleParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DoubleParser.h; path = lib/ios/DoubleParser.h; sourceTree = ""; }; - 9B838255578726AAA8713710460D9393 /* RCTAccessibilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAccessibilityManager.m; sourceTree = ""; }; - 9B9AEBF5436C82CA6AC3C25107D815EA /* RCTReloadCommand.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTReloadCommand.m; sourceTree = ""; }; - 9BAA8E5FE297E96AB972F9E1D3EEDC66 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = Instance.cpp; sourceTree = ""; }; - 9C8BEA5DAED178AABFFBC4AD7B366E6F /* RCTAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAssert.h; sourceTree = ""; }; - 9CED3452BEC03824202FB005DC51187F /* RCTTypeSafety.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTTypeSafety.xcconfig; sourceTree = ""; }; - 9D45EF495A54515638276A8335890DA5 /* RCTBaseTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBaseTextInputViewManager.m; sourceTree = ""; }; - 9D6060A5325D587F13E0D38C6AC29699 /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 9DCB325FDA8DB07113B67FAB97CDEDA5 /* Pods-CalendarsExampleTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CalendarsExampleTests-acknowledgements.plist"; sourceTree = ""; }; - 9DF5A3EC34EA43F9AFD71AA5FAC48A67 /* React-RCTSettings-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTSettings-dummy.m"; sourceTree = ""; }; - 9E3305379C933C2E9D750F8A93845A51 /* SideMenuOpenGestureModeParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SideMenuOpenGestureModeParser.m; path = lib/ios/SideMenuOpenGestureModeParser.m; sourceTree = ""; }; - 9E40EE1A5278AE6E5C8265B69AB04E5C /* RCTSliderManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSliderManager.h; sourceTree = ""; }; - 9E66E515A0E5EA563229D1834C5A297E /* libPods-CalendarsExample-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-CalendarsExample-tvOS.a"; path = "libPods-CalendarsExample-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9E90EA48CA1FB495759ED8E40E01ED04 /* RCTResizeMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTResizeMode.h; path = Libraries/Image/RCTResizeMode.h; sourceTree = ""; }; - 9ED7B438AA331FBA672301E40828CA56 /* RCTInspectorPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInspectorPackagerConnection.h; sourceTree = ""; }; - 9EFA79CDEF0DD7144F7A897D4978F981 /* RCTTypeSafety-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTTypeSafety-dummy.m"; sourceTree = ""; }; - 9F0F01DD8B3F13179E2A1FA4A6BB8EAD /* RCTConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvert.h; sourceTree = ""; }; - 9F113C7755F018AA5B72AC0D0C5E993F /* RCTJavaScriptLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTJavaScriptLoader.mm; sourceTree = ""; }; - 9F36EE8094CCCBF4FAF2FF71DEDC83AB /* RCTI18nManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTI18nManager.h; sourceTree = ""; }; - 9F5D6D52B247DF0CAEF7BE7057869C1F /* RCTPackagerConnection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerConnection.h; sourceTree = ""; }; - 9FACC257CF02548488B0151181CEE749 /* YGConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGConfig.h; path = yoga/YGConfig.h; sourceTree = ""; }; - 9FC820B5579AEA6BB3688B0D6F2B7924 /* double-conversion.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "double-conversion.cc"; path = "double-conversion/double-conversion.cc"; sourceTree = ""; }; - 9FF0782503A736A7B3092F94AB518B77 /* Constants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Constants.m; path = lib/ios/Constants.m; sourceTree = ""; }; - A01AD282405DC0D6EE2178B8506685D7 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; - A028D474F9255F169047EACB6875B92B /* RCTImageDataDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageDataDecoder.h; path = Libraries/Image/RCTImageDataDecoder.h; sourceTree = ""; }; - A029B4E21A6E4DC708748040C589B913 /* RCTRefreshControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRefreshControlManager.h; sourceTree = ""; }; - A02E324501FBDF09F5864A1CD1DDB4C8 /* RCTSurface.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurface.h; sourceTree = ""; }; - A042396874B449715ED41EC8F243A08A /* React-RCTActionSheet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTActionSheet-dummy.m"; sourceTree = ""; }; - A077E5CD4E57D3A75BEA838885931791 /* RCTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTVersion.m; sourceTree = ""; }; - A0D95B1B16B6702CD417F9E8179207CF /* Conv.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Conv.cpp; path = folly/Conv.cpp; sourceTree = ""; }; - A180CF3F413DD7F4AC01ADECA08CEF49 /* RCTImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageCache.m; sourceTree = ""; }; - A1A0603E67156BF02A3BE3D6542BD981 /* RNNBasePresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBasePresenter.h; path = lib/ios/RNNBasePresenter.h; sourceTree = ""; }; - A1AF4F85DD137C5CB7BFD13F91CC3E0F /* React-jsi.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsi.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A1D74792E3339E76BF78117B4ACED121 /* TurboCxxModule.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboCxxModule.cpp; path = turbomodule/core/TurboCxxModule.cpp; sourceTree = ""; }; - A1F6F8E328182CF88963035C5E3F710D /* RCTVirtualTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextShadowView.h; sourceTree = ""; }; - A203D26B208358AF76994BCD88BEC57C /* RCTRedBoxExtraDataViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRedBoxExtraDataViewController.m; sourceTree = ""; }; - A22176877F17A27D2F00994D43D8022D /* RCTJavaScriptExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTJavaScriptExecutor.h; sourceTree = ""; }; - A246A3461C0E5FE85F1B3C731A6537B0 /* RCTDataRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDataRequestHandler.h; path = Libraries/Network/RCTDataRequestHandler.h; sourceTree = ""; }; - A295436D502F9E54E923CF53EF1093D1 /* RCTUITextField.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUITextField.m; sourceTree = ""; }; - A2C86738C8FAC870C3AB0F7BD1032833 /* RCTAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAnimatedImage.h; path = Libraries/Image/RCTAnimatedImage.h; sourceTree = ""; }; - A3090E4BFC52D9D68D287FB2A637D819 /* RCTMultiplicationAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultiplicationAnimatedNode.h; sourceTree = ""; }; - A4217C4D86676EF0412E6F975E5DD2DE /* RCTCxxMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxMethod.mm; sourceTree = ""; }; - A456078C3E5865145DBCD44ADF6BEC8C /* JSIExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = JSIExecutor.cpp; path = jsireact/JSIExecutor.cpp; sourceTree = ""; }; - A4560AA32DF372AEF3E00939CE22009E /* RCTBaseTextInputShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBaseTextInputShadowView.h; sourceTree = ""; }; - A4E7F2EC449E7D4215E070BC76F28991 /* RCTAccessibilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAccessibilityManager.h; sourceTree = ""; }; - A54FCE56B249AAA151A089183E1C2A99 /* React-RCTNetwork-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTNetwork-dummy.m"; sourceTree = ""; }; - A5C911F39BE442C7C87C2A57E97EBD7A /* utilities.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = utilities.cc; path = src/utilities.cc; sourceTree = ""; }; - A61263388424BDA608FCAE004E8C0582 /* event.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = event.h; sourceTree = ""; }; - A634F89BFECF15D0B73B3A0693EDD659 /* React-RCTActionSheet.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTActionSheet.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A6413EAB13B17A8A26C20AB5D1E7CF60 /* TurboModuleUtils.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleUtils.cpp; path = turbomodule/core/TurboModuleUtils.cpp; sourceTree = ""; }; - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A69C3F0FC2AC55D978A0E91BBD7F29D7 /* RNNStackPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNStackPresenter.h; path = lib/ios/RNNStackPresenter.h; sourceTree = ""; }; - A70A7C38B15B55AE0A8CEE583F50C0A1 /* TurboModuleBinding.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = TurboModuleBinding.cpp; path = turbomodule/core/TurboModuleBinding.cpp; sourceTree = ""; }; - A74BD18F82117122287CB4CE38DBA2C0 /* RCTEventEmitter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventEmitter.h; sourceTree = ""; }; - A7BB41D8950B8051E64A4119C7105DD5 /* RCTView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTView.m; sourceTree = ""; }; - A7FAB890B5846EF19252C32D02331253 /* RCTShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTShadowView.h; sourceTree = ""; }; - A80B3BEFAE68FF64AA96B932FE5CACD1 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleUtils.h; path = turbomodule/core/TurboModuleUtils.h; sourceTree = ""; }; - A80FB301586F3DED2AEA9A7C04C0A45F /* fixed-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fixed-dtoa.h"; path = "double-conversion/fixed-dtoa.h"; sourceTree = ""; }; - A8136AE85FA25415720AD3B8FE6F2D87 /* RNNAnimationConfigurationOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNAnimationConfigurationOptions.h; path = lib/ios/RNNAnimationConfigurationOptions.h; sourceTree = ""; }; - A82BA0A221562386814382E817B450DF /* RCTConvert+CoreLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+CoreLocation.m"; sourceTree = ""; }; - A8EABFA83161D21E2A5BBB45E36E51F1 /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; - A91B3555FA2641F9143CFD8500CF4336 /* RNNSideMenuPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSideMenuPresenter.m; path = lib/ios/RNNSideMenuPresenter.m; sourceTree = ""; }; - A91C3414060E1C9B6C71EE7B472C9AAA /* RCTKeyboardObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTKeyboardObserver.h; sourceTree = ""; }; - A9784D59E4413FE211157E1E72FD4A53 /* TurboModuleBinding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TurboModuleBinding.h; path = turbomodule/core/TurboModuleBinding.h; sourceTree = ""; }; - AA1F1ED4AC987C5325177C65914EF9E4 /* RCTMultiplicationAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultiplicationAnimatedNode.m; sourceTree = ""; }; - AA87E2613B9530738123B9B11FDA406D /* UITabBarController+RNNUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UITabBarController+RNNUtils.m"; sourceTree = ""; }; - AAA5A6FA87DDF9FBAF9B733C196DD5B7 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; - AAEB8BCDAF6D516091ACCD64E1529C3D /* RNNElementTransitionOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNElementTransitionOptions.m; path = lib/ios/RNNElementTransitionOptions.m; sourceTree = ""; }; - AB5CF1B022082DDAC0BCC23D71022AA3 /* RNNModalManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNModalManager.m; path = lib/ios/RNNModalManager.m; sourceTree = ""; }; - AB6D11B384DA10147CDDF2E9275DA49D /* React-Core-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-Core-prefix.pch"; sourceTree = ""; }; - AB9140C24753535E9A5DCD48E489F4E7 /* RCTSurfaceRootShadowViewDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceRootShadowViewDelegate.h; sourceTree = ""; }; - ABE6EBE357D347A3161C6003F6E9153E /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; - ABFC015187A9D21E74EB5C9583FB5802 /* RNNNavigationStackManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNNavigationStackManager.h; path = lib/ios/RNNNavigationStackManager.h; sourceTree = ""; }; - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; - AC3D4D7E183F98DCAC79B6E7C576573E /* React-RCTText.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTText.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - AC5967DF1BC1DC2F25A0D1D5F627DC31 /* UIView+React.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIView+React.m"; sourceTree = ""; }; - AC5BE92CBD4C47B291ED6FA562DCF336 /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; - AC9137FA693D24F7BC2F8771EFB0110A /* VICMAImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = VICMAImageView.m; path = lib/ios/VICMAImageView.m; sourceTree = ""; }; - ACA4F6AF1D40C02B99CDEB3C16CB5738 /* RNNViewLocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNViewLocation.m; path = lib/ios/RNNViewLocation.m; sourceTree = ""; }; - AD82FD75E2A81BBE54672EAB8C6BFCD2 /* RNNBottomTabsOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBottomTabsOptions.h; path = lib/ios/RNNBottomTabsOptions.h; sourceTree = ""; }; - AD9FC8868716F35BD4B85880C8AAAE32 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; - ADB0B115EA87FB9AFE78D7B154E4210B /* FBLazyVector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyVector.h; path = FBLazyVector/FBLazyVector.h; sourceTree = ""; }; - ADE615100BF35DB9CACFF64B8273AD9D /* RCTHelpers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RCTHelpers.m; path = lib/ios/RCTHelpers.m; sourceTree = ""; }; - ADFE8829EEEFF8AE76C8B61A1476F5DE /* RCTBridgeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeDelegate.h; sourceTree = ""; }; - AE11805378B14C74B0E22C35E399E131 /* RCTAppState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAppState.h; sourceTree = ""; }; - AE3051FC52ED46764910CFB936F2E59F /* Yoga-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Yoga-dummy.m"; sourceTree = ""; }; - AEB45211AB386CD5B88900738C8226FA /* MMDrawerVisualState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMDrawerVisualState.h; sourceTree = ""; }; - AEE62A4079BC2B9F273E23D013A8EA0A /* RCTUIImageViewAnimated.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTUIImageViewAnimated.h; path = Libraries/Image/RCTUIImageViewAnimated.h; sourceTree = ""; }; - AEE95448B1D8FBB0BB0095E172DC37C9 /* vlog_is_on.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = vlog_is_on.h; path = src/glog/vlog_is_on.h; sourceTree = ""; }; - B0850C46EB9FC3FDD83A4B6982848745 /* RCTLocalAssetImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLocalAssetImageLoader.m; sourceTree = ""; }; - B0CE202A6B5F205CE188F4D0AE679A90 /* RCTModalHostView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalHostView.h; sourceTree = ""; }; - B0EB53DE323BAF40BF28F0EDACE64668 /* UINavigationController+RNNOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+RNNOptions.h"; path = "lib/ios/UINavigationController+RNNOptions.h"; sourceTree = ""; }; - B1CBCBC4E5B9005E0C1082527F2E9537 /* RNNLayoutNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNLayoutNode.h; path = lib/ios/RNNLayoutNode.h; sourceTree = ""; }; - B1D08C5245D3560FB9D2DDB97861B4B4 /* fast-dtoa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "fast-dtoa.h"; path = "double-conversion/fast-dtoa.h"; sourceTree = ""; }; - B22F688B397D75074ECC4E925A75F04D /* NullText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullText.m; path = lib/ios/NullText.m; sourceTree = ""; }; - B29B1E3D9C35BE2D808678F2B5501BFA /* NumberParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NumberParser.h; path = lib/ios/NumberParser.h; sourceTree = ""; }; - B30B20D906190CB8D421C837BE3A918A /* React-RCTSettings-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTSettings-prefix.pch"; sourceTree = ""; }; - B3104BE1411E50C8101AFFFE5D4BAA07 /* RCTNativeAnimatedModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTNativeAnimatedModule.h; path = Libraries/NativeAnimation/RCTNativeAnimatedModule.h; sourceTree = ""; }; - B360BD9150C793C47FA5E394E241BBD1 /* CoreModulesPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CoreModulesPlugins.h; path = React/CoreModules/CoreModulesPlugins.h; sourceTree = ""; }; - B3841E4820B4836849047CAF5C7839E8 /* RCTComponentData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTComponentData.m; sourceTree = ""; }; - B39064E2DA9A997F5A77CE4930128118 /* RCTFont.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTFont.mm; sourceTree = ""; }; - B390D217C66194AA3670FAD679FAD333 /* RCTImageEditingManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageEditingManager.m; sourceTree = ""; }; - B45E71A51E77962B6036B8A43FCE76BF /* RCTTouchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTouchHandler.h; sourceTree = ""; }; - B4A68CE4EE215D7CAF524BD53A2A0CC3 /* RNNPreviewOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNPreviewOptions.h; path = lib/ios/RNNPreviewOptions.h; sourceTree = ""; }; - B4E4EE0FBE23F7E13529451283DFB090 /* experiments-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "experiments-inl.h"; sourceTree = ""; }; - B500B971CE01657900458C6D9FE5E61C /* FBReactNativeSpec.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FBReactNativeSpec.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B5C36CD158A29DD76240EF90B32DE278 /* RCTImageBlurUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageBlurUtils.h; path = Libraries/Image/RCTImageBlurUtils.h; sourceTree = ""; }; - B6031950041AD3B5C92A11D4C964D2FF /* RCTModalHostViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTModalHostViewManager.m; sourceTree = ""; }; - B63B709F57AEC104C180E2655C918B14 /* UIViewController+SideMenuController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+SideMenuController.m"; path = "lib/ios/UIViewController+SideMenuController.m"; sourceTree = ""; }; - B64804466422970BF61ED6711A2E69E3 /* Pods-CalendarsExample-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CalendarsExample-acknowledgements.plist"; sourceTree = ""; }; - B6871F73A44F64A70F4A8EDD765D4F67 /* RCTTrackingAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTrackingAnimatedNode.m; sourceTree = ""; }; - B696F3BA0976E6D241368F572DAC6DAA /* RCTVirtualTextViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTVirtualTextViewManager.h; sourceTree = ""; }; - B699B3B25922C8A8990E4C6E4B629D68 /* RNNInteractivePopAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNInteractivePopAnimator.m; path = lib/ios/RNNInteractivePopAnimator.m; sourceTree = ""; }; - B75B30AC91ECCF58EC3B478A45952D94 /* React-RCTActionSheet.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.xcconfig"; sourceTree = ""; }; - B7C0B2238EDC557AAFC85F948D06BFA5 /* libPods-CalendarsExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-CalendarsExampleTests.a"; path = "libPods-CalendarsExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B7ED0C2019912DC8A14DAB54BDDB66B1 /* IntNumber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IntNumber.m; path = lib/ios/IntNumber.m; sourceTree = ""; }; - B84DFB14D4C5ACE499155E9A4B3152ED /* jsilib-windows.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-windows.cpp"; sourceTree = ""; }; - B858E7CB9AC6995BDA9E1D7E8B7A5956 /* JSExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSExecutor.cpp; sourceTree = ""; }; - B8A03F8871AE8F3B1A27125414A7FAF3 /* RNNSplitViewOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNSplitViewOptions.m; path = lib/ios/RNNSplitViewOptions.m; sourceTree = ""; }; - B8BB27849171E8B0946B7EBB904EEC99 /* RCTI18nUtil.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTI18nUtil.m; sourceTree = ""; }; - B8F1DC1196CB63EA896A7D3E81F978B2 /* RCTTextDecorationLineType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextDecorationLineType.h; sourceTree = ""; }; - B8FCB614ED4106C00E836F147C837DF0 /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; - B9B193261C51823A4001C51A46721646 /* RNNTitleViewHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTitleViewHelper.h; path = lib/ios/RNNTitleViewHelper.h; sourceTree = ""; }; - B9B56722F346846FFBEC7A94B5B891E3 /* RNNTopTabOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTopTabOptions.h; path = lib/ios/RNNTopTabOptions.h; sourceTree = ""; }; - BA2FD71363213733EEF44111F2620EDC /* RCTAutoInsetsProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAutoInsetsProtocol.h; sourceTree = ""; }; - BA4625964CE26008FB4EE481D5068CC1 /* React-Core.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-Core.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BAC0A693504B9CF87C54A6B6E9DB1B27 /* RCTNativeAnimatedModule.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedModule.m; sourceTree = ""; }; - BB6498F642E8AA0FA63F632AFBA6F747 /* FBLazyIterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBLazyIterator.h; path = FBLazyVector/FBLazyIterator.h; sourceTree = ""; }; - BC306705D9FA29D4B1DA55738582D7C2 /* MMDrawerBarButtonItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMDrawerBarButtonItem.h; sourceTree = ""; }; - BC5A3A72906F2399E0ED498B28BDAC93 /* RCTRawTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRawTextShadowView.h; sourceTree = ""; }; - BD69F3BBBB135EC56F29FD49C2138AD8 /* RNNTitleOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTitleOptions.m; path = lib/ios/RNNTitleOptions.m; sourceTree = ""; }; - BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BD9320D3E9D8B1AA398C4B4C0A00B1BA /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - BDDC4F6E0A86ED85F4225081BDDCF96D /* RCTTextSelection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextSelection.m; sourceTree = ""; }; - BDE16DB92486C28D1271077E9FF787B7 /* RNNDotIndicatorPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNDotIndicatorPresenter.h; path = lib/ios/RNNDotIndicatorPresenter.h; sourceTree = ""; }; - BDF30AF7B890E090C0827A3734D2E444 /* RCTNativeModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNativeModule.mm; sourceTree = ""; }; - BE918DF2A718D184D55C482385581A03 /* UIImage+tint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+tint.h"; path = "lib/ios/UIImage+tint.h"; sourceTree = ""; }; - BE9621AAB3A28DF807AA0D070F8BA21C /* RNNStatusBarOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNStatusBarOptions.m; path = lib/ios/RNNStatusBarOptions.m; sourceTree = ""; }; - BF2E7EAAC36F5A460FCDE5433CDCB8B4 /* RCTShadowView+Internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTShadowView+Internal.h"; sourceTree = ""; }; - BF81425EBEABE2E41C95654C24B5842C /* MMDrawerVisualState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MMDrawerVisualState.m; sourceTree = ""; }; - BFD5B4829B7922A757678722426CFC4C /* NullNumber.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullNumber.m; path = lib/ios/NullNumber.m; sourceTree = ""; }; - C05248AB2232B1870D5494DC7C31EE65 /* YGEnums.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGEnums.h; path = yoga/YGEnums.h; sourceTree = ""; }; - C084A4A1B5B5BDA13063B65656533B18 /* Image.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Image.m; path = lib/ios/Image.m; sourceTree = ""; }; - C0C4440D8051CD6A17622DC4BD06579E /* RCTBackedTextInputDelegateAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegateAdapter.h; sourceTree = ""; }; - C10D1B77107E8C1DD0A926E49FBD5257 /* RCTPickerManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPickerManager.m; sourceTree = ""; }; - C12A6FCB61883BDB732D34EDE3BF2692 /* RNNBottomTabsPresenter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBottomTabsPresenter.m; path = lib/ios/RNNBottomTabsPresenter.m; sourceTree = ""; }; - C14302B918865FBAA823A0314CE2ADC9 /* RCTTextShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextShadowView.h; sourceTree = ""; }; - C1457075F76C79493731B43A3366B688 /* RCTBackedTextInputDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBackedTextInputDelegate.h; sourceTree = ""; }; - C1A0CEDE46698A9AC1514BE542599830 /* RCTBlobCollector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBlobCollector.h; sourceTree = ""; }; - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C1F70FDAC9A15FC536022FCB66A9378A /* RCTUITextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextView.h; sourceTree = ""; }; - C227C9B03F6D2B827A3CCAF9C0F2BB96 /* RCTImageUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageUtils.m; sourceTree = ""; }; - C2F3D95960D0D71F54725ED1041428E5 /* ReactCommon-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ReactCommon-prefix.pch"; sourceTree = ""; }; - C2F458557C9FD986BF7BEAE300A6E6A4 /* RCTSourceCode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSourceCode.m; sourceTree = ""; }; - C32F45F3BB59BDF29CC111F790CE3C22 /* RCTConvertHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTConvertHelpers.h; sourceTree = ""; }; - C35C9114619B7D01D10CA19BB44A25D9 /* glog-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "glog-prefix.pch"; sourceTree = ""; }; - C3D5C8179443F70EA30F12A4D8D494E2 /* RCTAnimationDriver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTAnimationDriver.h; sourceTree = ""; }; - C40DB10C2855D72D64853A98A1DFF654 /* jsi.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = jsi.cpp; sourceTree = ""; }; - C4197F6398A086CC3F296B2CC43A300A /* RCTImageShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageShadowView.m; sourceTree = ""; }; - C47EA9425827495D437AC3FC89D67DB5 /* RCTConvert+SideMenuOpenGestureMode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+SideMenuOpenGestureMode.h"; path = "lib/ios/RCTConvert+SideMenuOpenGestureMode.h"; sourceTree = ""; }; - C4B352F5A71A2C1556CEE1223C20F415 /* RCTProfileTrampoline-arm64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm64.S"; sourceTree = ""; }; - C4BCB0FF9B2B1FD52B8C0BD5A4F9E237 /* RCTTextShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextShadowView.m; sourceTree = ""; }; - C529E1955B548D8A3657FF10F2B42B75 /* React-jsinspector-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsinspector-dummy.m"; sourceTree = ""; }; - C530A2AAE3002611BC47F4DBDC0A30AB /* RCTModuleData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleData.h; sourceTree = ""; }; - C5BCF33FA964711FA6C6A7A8944B6F68 /* DictionaryParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DictionaryParser.m; path = lib/ios/DictionaryParser.m; sourceTree = ""; }; - C65C7D2D0EB77F379B96C3A58434F4BE /* React-RCTLinking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTLinking-dummy.m"; sourceTree = ""; }; - C6779BC87B31A2A94F4C39AB36851A90 /* RCTConvert+Modal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Modal.h"; path = "lib/ios/RCTConvert+Modal.h"; sourceTree = ""; }; - C69A4BD79650D897829F8DF1BBACD8D7 /* Pods-CalendarsExampleTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CalendarsExampleTests-acknowledgements.markdown"; sourceTree = ""; }; - C6A8B9A377B48A683CE15BE2226EA28D /* raw_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = raw_logging.h; path = src/glog/raw_logging.h; sourceTree = ""; }; - C72840CA71F1BB5682B0E3011293B846 /* RCTSegmentedControlManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControlManager.h; sourceTree = ""; }; - C728B0594F15F0889C3CEF0FC98442EC /* RCTTransformAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTransformAnimatedNode.h; sourceTree = ""; }; - C793FE93C450AB0335E35A4BFE1350DB /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; - C7D232974AF4A2D80B66EEFD60F5FEE7 /* RNNScreenTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNScreenTransition.h; path = lib/ios/RNNScreenTransition.h; sourceTree = ""; }; - C8257CD18CDDA4DE7FBC3539871D42BB /* RCTProfileTrampoline-arm.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-arm.S"; sourceTree = ""; }; - C87224B233BDBADED78BB2C66A0FAB99 /* Pods-CalendarsExample-tvOS-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CalendarsExample-tvOS-acknowledgements.markdown"; sourceTree = ""; }; - C8ADFB973B4F5A810A75F1763F35D168 /* UIImage+tint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+tint.m"; path = "lib/ios/UIImage+tint.m"; sourceTree = ""; }; - C8BD6B413C89DCCBA2396C7627F6DF44 /* RCTDiffClampAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDiffClampAnimatedNode.m; sourceTree = ""; }; - C8E9C68D7949B40160F4628B761DAE59 /* RCTShadowView+Layout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Layout.m"; sourceTree = ""; }; - C954DF3D8E96AC4E949B25D6FE4A2022 /* RCTDatePicker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDatePicker.m; sourceTree = ""; }; - CA22F3159CEB5386A6C82CDA18FC432C /* JSCRuntime.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSCRuntime.h; sourceTree = ""; }; - CA685D5A8B1303A8E9CD72CB916AC673 /* RNNSideMenuPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSideMenuPresenter.h; path = lib/ios/RNNSideMenuPresenter.h; sourceTree = ""; }; - CA70260C8C3F951204F0867BC94DDED0 /* IntNumber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntNumber.h; path = lib/ios/IntNumber.h; sourceTree = ""; }; - CA8CB9EE0648A051E6B6CB94644E1E7C /* RCTView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTView.h; sourceTree = ""; }; - CA8D9523F3E3AC242D9E4C122C7DCCFB /* FBReactNativeSpec-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBReactNativeSpec-dummy.m"; sourceTree = ""; }; - CB594A1C136A93F653D4A3244DFA08EB /* RCTBorderDrawing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTBorderDrawing.m; sourceTree = ""; }; - CB77E88459E541B7EBFFD50C142C6A0C /* UIColor+RNNUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+RNNUtils.h"; sourceTree = ""; }; - CBAE917460D363DFDC49C49A719365A6 /* RCTNullability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNullability.h; sourceTree = ""; }; - CBD8ACF3774E94AC871070EBA70CB076 /* RCTRedBoxExtraDataViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRedBoxExtraDataViewController.h; sourceTree = ""; }; - CBEB8DBAF02D9F6691FFE0CE3F5A10FC /* MMDrawerController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MMDrawerController.h; sourceTree = ""; }; - CC78DA59E970F6E16B1325A8E4D40A40 /* RNNNavigationStackManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNNavigationStackManager.m; path = lib/ios/RNNNavigationStackManager.m; sourceTree = ""; }; - CCACDF74B1F425E39B89D1865E698C33 /* jsi-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "jsi-inl.h"; sourceTree = ""; }; - CCBD1DB0678F11663FD34FE3294E38FC /* JsArgumentHelpers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JsArgumentHelpers.h; sourceTree = ""; }; - CCE08E7B33FAE85FB15D11AAC4A96748 /* RCTModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModalManager.h; sourceTree = ""; }; - CCE98D777DF8C4FD667F174C22029BEF /* RNNTransitionStateHolder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTransitionStateHolder.h; path = lib/ios/RNNTransitionStateHolder.h; sourceTree = ""; }; - CD32DFCDAE7E7287AF689F1063AFF2FD /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; - CD907649F913C671526E75D18074D17D /* RCTNativeAnimatedNodesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNativeAnimatedNodesManager.m; sourceTree = ""; }; - CD92147706373775A172EBF685032629 /* event.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = event.cpp; sourceTree = ""; }; - CDA55892C9653F7685C84113AA6CEC69 /* JSIDynamic.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSIDynamic.h; sourceTree = ""; }; - CDABC9C31A0B1BD65CFF9907EB28095E /* UIViewController+SideMenuController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+SideMenuController.h"; path = "lib/ios/UIViewController+SideMenuController.h"; sourceTree = ""; }; - CDB5A161AA8B089A28DA294F4B3595BD /* RCTFrameUpdate.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFrameUpdate.m; sourceTree = ""; }; - CDDC4AA8F140B686EA50E3D1DCCA0764 /* RCTInspector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTInspector.mm; sourceTree = ""; }; - CDF3BB7D6CB7BDF66FAB6E340589D41D /* RCTAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimatedNode.m; sourceTree = ""; }; - CEEF76F71DBB7D81CE20167BF6142B90 /* RCTScrollContentShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentShadowView.h; sourceTree = ""; }; - CFD3FAAC6C07F1505AF8FFFB9AB501C4 /* RNNPushAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNPushAnimation.m; path = lib/ios/RNNPushAnimation.m; sourceTree = ""; }; - CFDC14AC300FC35151E359B1385607F7 /* RNNViewLocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNViewLocation.h; path = lib/ios/RNNViewLocation.h; sourceTree = ""; }; - CFE11545EF2FB4D9C5B2C8B82BD682CA /* MethodCall.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = MethodCall.cpp; sourceTree = ""; }; - CFF83EABCD5B95AD3477110BAEA360F8 /* RNNModalManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNModalManager.h; path = lib/ios/RNNModalManager.h; sourceTree = ""; }; - CFFB525A8BADDBAD75A3A7D419DF7E9D /* RCTSinglelineTextInputViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSinglelineTextInputViewManager.h; sourceTree = ""; }; - D03DBD0AFFC8242C2888CB675DDA75EE /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - D05C96D4FFC9165534BE40514F031A57 /* RCTScrollContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTScrollContentView.h; sourceTree = ""; }; - D05E987A3D4A6A0E56AE2E18BDB0EE04 /* SpookyHashV2.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = SpookyHashV2.cpp; path = folly/hash/SpookyHashV2.cpp; sourceTree = ""; }; - D0937065237454C54627BFDC85C3777D /* RCTCxxConvert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxConvert.h; sourceTree = ""; }; - D0CF3BE4A070A2916D7390E915D0D64E /* NumberParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NumberParser.m; path = lib/ios/NumberParser.m; sourceTree = ""; }; - D0EA4960F1190594DD6F0A9E65298FB0 /* RCTTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTextView.m; sourceTree = ""; }; - D1270F67E2FF5411F7E13DD17B9ADB74 /* experiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = experiments.h; sourceTree = ""; }; - D161AC749DED7DADC482B15125FA45AC /* React-RCTBlob-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTBlob-prefix.pch"; sourceTree = ""; }; - D17CA2440232E07A925309E8491A9D33 /* RCTEventDispatcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTEventDispatcher.h; sourceTree = ""; }; - D18C32E7320535B2F7D2DB45ED715B50 /* RNNNavigationButtons.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNNavigationButtons.h; path = lib/ios/RNNNavigationButtons.h; sourceTree = ""; }; - D1EE870544C5688435350160527CB746 /* RCTSurfacePresenterStub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfacePresenterStub.m; sourceTree = ""; }; - D233FCB20BC2B6222473BD0E553123B0 /* RCTPropsAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPropsAnimatedNode.h; sourceTree = ""; }; - D24985BEE473C08F7BA5E134665AE957 /* RNNLayoutOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNLayoutOptions.m; path = lib/ios/RNNLayoutOptions.m; sourceTree = ""; }; - D29887FC2DE221F4566B302019341437 /* BoolParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BoolParser.h; path = lib/ios/BoolParser.h; sourceTree = ""; }; - D3316F06E55BCA94C595A9C19FFAB91B /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFPSGraph.h; sourceTree = ""; }; - D368C4177C1FA2164F46FA0E54B2E31F /* RCTEventEmitter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTEventEmitter.m; sourceTree = ""; }; - D39008DDFF75881943582DACC28D30CA /* RNNSharedElementAnimationOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSharedElementAnimationOptions.h; path = lib/ios/RNNSharedElementAnimationOptions.h; sourceTree = ""; }; - D3B71655F4F0DA696B72981FDDDB3A20 /* RCTRefreshControlManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControlManager.m; sourceTree = ""; }; - D3F2B3683EC2453E194788622CE63F90 /* NativeToJsBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NativeToJsBridge.h; sourceTree = ""; }; - D4963FFC77CF5D97D4F6F0FB6A03D556 /* RCTFrameUpdate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTFrameUpdate.h; sourceTree = ""; }; - D4F1846B3A2F7991DF814E2113D939F3 /* YGNodePrint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGNodePrint.cpp; path = yoga/YGNodePrint.cpp; sourceTree = ""; }; - D51942D20A1B4F246A73D544A59C2BC7 /* RCTNetInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTNetInfo.m; sourceTree = ""; }; - D56B9820A42AD428400281647287F981 /* RNNElementTransitionOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNElementTransitionOptions.h; path = lib/ios/RNNElementTransitionOptions.h; sourceTree = ""; }; - D58231930B03B56441B9AC0814C006E8 /* RNNFontAttributesCreator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNFontAttributesCreator.h; path = lib/ios/RNNFontAttributesCreator.h; sourceTree = ""; }; - D5BF6D20138DCB83BFBFD1A775576B5C /* React-RCTAnimation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTAnimation.xcconfig"; sourceTree = ""; }; - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; - D6458CDF2FBB27BCDADA2BCBFE4E39E4 /* RCTLayoutAnimationGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimationGroup.m; sourceTree = ""; }; - D6B502C194FF3A94453320004FB86384 /* ScopeGuard.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = ScopeGuard.cpp; path = folly/ScopeGuard.cpp; sourceTree = ""; }; - D7AA4419F67DE21415BE8040A2783A27 /* NullColor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullColor.h; path = lib/ios/NullColor.h; sourceTree = ""; }; - D808E2D59D9C733A2D196905E4CF386B /* RCTMultipartDataTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMultipartDataTask.h; sourceTree = ""; }; - D948A6D5A87AB9E3A2D94F86F4B48C55 /* RCTSubtractionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSubtractionAnimatedNode.m; sourceTree = ""; }; - D95199542512FFE661264049CA4E7763 /* Assume.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = Assume.cpp; path = folly/lang/Assume.cpp; sourceTree = ""; }; - D96946FFD03D744AFEE87F1802C62847 /* Number.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Number.m; path = lib/ios/Number.m; sourceTree = ""; }; - D9BABCD98FE1A3317A52BD521A84551F /* RCTConvert+Text.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "RCTConvert+Text.h"; path = "Libraries/Text/RCTConvert+Text.h"; sourceTree = ""; }; - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - DA73AAD7BF4BE5A2DD202ED4F4C2A682 /* RCTWebSocketModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTWebSocketModule.h; path = Libraries/WebSocket/RCTWebSocketModule.h; sourceTree = ""; }; - DA8CF138276E2EAC189574DDA11F2CF4 /* RCTDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDisplayLink.h; sourceTree = ""; }; - DB04760AD193B3520EAA7F4C1E1E89C0 /* RCTBlobCollector.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTBlobCollector.mm; sourceTree = ""; }; - DB4AA889CC5532C22C21C50D77842C79 /* RCTSwitchManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSwitchManager.m; sourceTree = ""; }; - DB51DBFFCAFE2897F1D6AE90C5792ABB /* RCTAlertManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAlertManager.m; sourceTree = ""; }; - DBAE074FE3D9E4029F39DB8998C3B119 /* RCTImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageCache.h; path = Libraries/Image/RCTImageCache.h; sourceTree = ""; }; - DBE7313D77E6244CEB86560D04AF8ECE /* RNNTabBarItemCreator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTabBarItemCreator.h; path = lib/ios/RNNTabBarItemCreator.h; sourceTree = ""; }; - DC5EB6885B4D960576C31E1DF1A0B569 /* RNNLayoutNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNLayoutNode.m; path = lib/ios/RNNLayoutNode.m; sourceTree = ""; }; - DC8BC113D226B45339D8A3D0C7859A5C /* RCTSafeAreaViewLocalData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaViewLocalData.m; sourceTree = ""; }; - DD359B7DDFE52FA9CD9C4F32D0141226 /* RCTBlobManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTBlobManager.h; path = Libraries/Blob/RCTBlobManager.h; sourceTree = ""; }; - DDC7E009030ACF17F0978C4D1167ABDF /* DotIndicatorParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DotIndicatorParser.m; path = lib/ios/DotIndicatorParser.m; sourceTree = ""; }; - DE544FD1200AA51D19B58C98BB0E4181 /* RCTModuleMethod.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleMethod.mm; sourceTree = ""; }; - DE6E720E32DD28ED3B7ABD0B8C8CFA02 /* RNNPushAnimation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNPushAnimation.h; path = lib/ios/RNNPushAnimation.h; sourceTree = ""; }; - DEA6EB5ED39D325FBA35CF82920E077D /* RCTUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUtils.h; sourceTree = ""; }; - DEAB0DACF016F20F7AD6E1492D036C9E /* RCTTypeSafety-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RCTTypeSafety-prefix.pch"; sourceTree = ""; }; - DEBAAFB865F6038D6022ADA00AD5E168 /* RCTWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTWeakProxy.m; sourceTree = ""; }; - DEDC6148E06FE92E5D3928DCC93A74E3 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; - DEE5B538CB6876F865D951DB00ED5633 /* RNNStatusBarOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNStatusBarOptions.h; path = lib/ios/RNNStatusBarOptions.h; sourceTree = ""; }; - DF5D8CCDEC78962FF6CCFA096A633BCA /* RNNTitleViewHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTitleViewHelper.m; path = lib/ios/RNNTitleViewHelper.m; sourceTree = ""; }; - DF9D49DD11CFEBF42F0A7270E5585B9D /* RCTSettingsManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSettingsManager.m; sourceTree = ""; }; - DF9DDB5527A3F181F65E42C588A8C804 /* Pods-CalendarsExample-tvOSTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CalendarsExample-tvOSTests-acknowledgements.plist"; sourceTree = ""; }; - E03A901F89EFBB23A0989CA72C86952E /* Yoga-internal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Yoga-internal.h"; path = "yoga/Yoga-internal.h"; sourceTree = ""; }; - E05509899F6809B068C28D44DA6DBC6D /* RCTBorderDrawing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBorderDrawing.h; sourceTree = ""; }; - E0B1E9E83E3F23C9645D081598C13DAF /* RCTDatePickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTDatePickerManager.h; sourceTree = ""; }; - E0CA454DF3746295DD9CE9CCAD57310A /* RCTBridgeMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridgeMethod.h; sourceTree = ""; }; - E0CB1705B520BC5FB0A23615647DFC5E /* RCTMessageThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTMessageThread.h; sourceTree = ""; }; - E0E4E614C43C58D849FF2AD772F6F1D2 /* RNNTopBarOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNTopBarOptions.h; path = lib/ios/RNNTopBarOptions.h; sourceTree = ""; }; - E0FAB9B1D17DB3562554B345EAC3EBAD /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; - E11B968E8BA795477E95025AEF0DA963 /* React-RCTVibration-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTVibration-dummy.m"; sourceTree = ""; }; - E16D39A69CE1891993FE6AE4FCB76DF4 /* glog-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "glog-dummy.m"; sourceTree = ""; }; - E1A1ED8C8AADB359C4A7FFFBDC09857D /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; - E1BA9A6104418CC9988A9F456539AA4E /* RNNSideMenuOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSideMenuOptions.h; path = lib/ios/RNNSideMenuOptions.h; sourceTree = ""; }; - E1CC2E3FD6015F50B6D441EFFF8B6188 /* RNNTopBarOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTopBarOptions.m; path = lib/ios/RNNTopBarOptions.m; sourceTree = ""; }; - E210BCF627CEB700173A70A917BB2101 /* React-RCTAnimation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-RCTAnimation-dummy.m"; sourceTree = ""; }; - E22377BFCEFE6555E4FF3A0E58D217FB /* NullDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullDictionary.m; path = lib/ios/NullDictionary.m; sourceTree = ""; }; - E25CBEBE2F5B826D575547E0C590FCB5 /* RCTModuleData.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTModuleData.mm; sourceTree = ""; }; - E2ABFC6B9EEF67C2FBE06EB2A58B9867 /* RCTSRWebSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSRWebSocket.h; path = Libraries/WebSocket/RCTSRWebSocket.h; sourceTree = ""; }; - E2B40F932D30B66BC7DDBDD45D5D2D31 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; - E2D8806A700836BCD1344D91401A7172 /* React.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = React.xcconfig; sourceTree = ""; }; - E2EABE336903FA5AB1371999AA7401E0 /* ColorParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = ColorParser.m; path = lib/ios/ColorParser.m; sourceTree = ""; }; - E31E54F680820D1E7F294786C300A8A9 /* JSExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = JSExecutor.h; sourceTree = ""; }; - E3442213C8C74123BC7E70B211B01ACD /* React-RCTNetwork-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTNetwork-prefix.pch"; sourceTree = ""; }; - E36A1DA0906C7FFF7615C5814CFCEF7F /* DoubleParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DoubleParser.m; path = lib/ios/DoubleParser.m; sourceTree = ""; }; - E37F74E1F3335B3B28071B9E2324AA57 /* RCTNetworking.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTNetworking.mm; sourceTree = ""; }; - E392DE667EAFEFAF53A54FD59D82D315 /* UIView+React.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIView+React.h"; sourceTree = ""; }; - E39506F7F9EE6CCCF4ADDD06251B57DC /* RCTNativeModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTNativeModule.h; sourceTree = ""; }; - E3E2E32FBCC1F05FFAA79AB104A8CFE5 /* RCTRequired.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.xcconfig; sourceTree = ""; }; - E45179F221615A279A06F94190C1BE64 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - E48AAC107B1E5EBD6D6D57EADE536C49 /* React-CoreModules-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-CoreModules-dummy.m"; sourceTree = ""; }; - E55075C1F807031264ECFE696505C406 /* RNNExternalComponentStore.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNExternalComponentStore.m; path = lib/ios/RNNExternalComponentStore.m; sourceTree = ""; }; - E59898A483D763EAD65BB911FD08EA04 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; - E5B9589645C73BF5E2EEA29BF8601507 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - E5C273ABEF7E424AC03750B6D82699DA /* FBReactNativeSpec.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBReactNativeSpec.xcconfig; sourceTree = ""; }; - E60C2334D474872EB1C09858BFABEE56 /* RCTConvert+UIBarButtonSystemItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "RCTConvert+UIBarButtonSystemItem.m"; path = "lib/ios/RCTConvert+UIBarButtonSystemItem.m"; sourceTree = ""; }; - E63960AF9821CA4C2B292CA798F5723C /* React-RCTImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTImage.xcconfig"; sourceTree = ""; }; - E66CD76C10B3D7E79D06A8D3711E5532 /* RCTScrollContentViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentViewManager.m; sourceTree = ""; }; - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - E6BBD6E4DA7EAE081782B600CAD9DDDC /* RNNBottomTabOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBottomTabOptions.h; path = lib/ios/RNNBottomTabOptions.h; sourceTree = ""; }; - E7079B32F8A394862F30C27024A1A451 /* DotIndicatorParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DotIndicatorParser.h; path = lib/ios/DotIndicatorParser.h; sourceTree = ""; }; - E78C035C14EFD10BA7AC05F82C8C5F88 /* Instance.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Instance.h; sourceTree = ""; }; - E7BCE3DC03B8C5722207937419DBA697 /* Color.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Color.h; path = lib/ios/Color.h; sourceTree = ""; }; - E8B8097F70B6A4B17210AC4D1F7E3DAD /* RNNCommandsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNCommandsHandler.m; path = lib/ios/RNNCommandsHandler.m; sourceTree = ""; }; - E8D613A48051BE0729DE29C815AF83F1 /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; - E8FE232AE9E4390BDAA3CCCCA727427B /* RCTFileRequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTFileRequestHandler.m; sourceTree = ""; }; - E900B0B8E64B5CA201557483E7C35D62 /* diy-fp.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "diy-fp.h"; path = "double-conversion/diy-fp.h"; sourceTree = ""; }; - E90A72F8731FB658BD8A3B5F37D16342 /* RCTMaskedViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMaskedViewManager.m; sourceTree = ""; }; - E989F6316A747D8F1D48607134C17D99 /* boost-for-react-native.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "boost-for-react-native.xcconfig"; sourceTree = ""; }; - E996AB713DE9D81A81651BF7FED71816 /* RCTPointerEvents.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPointerEvents.h; sourceTree = ""; }; - E9A4B21CEA80E2A73454540BDED38848 /* UISplitViewController+RNNOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UISplitViewController+RNNOptions.h"; path = "lib/ios/UISplitViewController+RNNOptions.h"; sourceTree = ""; }; - E9B4CF2AE75EB64A568A7698C347DE3A /* RCTLinkingManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTLinkingManager.h; path = Libraries/LinkingIOS/RCTLinkingManager.h; sourceTree = ""; }; - E9B5A406ACED4FF277403ED5D737F1D4 /* diy-fp.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = "diy-fp.cc"; path = "double-conversion/diy-fp.cc"; sourceTree = ""; }; - E9D14304DE47E263A3BA34DCFAA167E0 /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; - EA1A7DEA39461C26BDC554504F98A16B /* UIViewController+LayoutProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LayoutProtocol.h"; path = "lib/ios/UIViewController+LayoutProtocol.h"; sourceTree = ""; }; - EA2A678375F5C31C6AD957FD9A6F7626 /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; - EAB87BA0B6F824D806B4A18F40DE390C /* RNNOverlayOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNOverlayOptions.m; path = lib/ios/RNNOverlayOptions.m; sourceTree = ""; }; - EB29CF7FADD4B5B166E1EBF1403A0F63 /* RCTSurfaceHostingView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceHostingView.h; sourceTree = ""; }; - EB4FE8EFCB65F9AD3772AEA242CD6725 /* RCTActivityIndicatorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTActivityIndicatorView.h; sourceTree = ""; }; - EB60D70CB48AB3257E82E10DA899A445 /* RNNButtonOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNButtonOptions.h; path = lib/ios/RNNButtonOptions.h; sourceTree = ""; }; - EBD1BDE09865E9B94AE500B8524D36D5 /* Pods-CalendarsExample-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExample-tvOSTests.release.xcconfig"; sourceTree = ""; }; - EBF009A08E7894DE82843DD0F1C994F0 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; - EC3F91F2DE79309450FA23990DA93692 /* BridgeJSCallInvoker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BridgeJSCallInvoker.h; path = jscallinvoker/ReactCommon/BridgeJSCallInvoker.h; sourceTree = ""; }; - EC4DF645D2E86D523A4A783918892F21 /* RCTDivisionAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDivisionAnimatedNode.m; sourceTree = ""; }; - EC9636F8A6EAB9957634A88807D5E7C1 /* RCTSubtractionAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSubtractionAnimatedNode.h; sourceTree = ""; }; - ECAFEFF1F4135DFEC9F141290B785AB7 /* Pods-CalendarsExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExample.release.xcconfig"; sourceTree = ""; }; - ECF617813FBD747ED72FCF654AC045BB /* YGFloatOptional.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = YGFloatOptional.h; path = yoga/YGFloatOptional.h; sourceTree = ""; }; - ED23170B5BEE71C5CC036347DF870B6C /* RCTSurfaceRootShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceRootShadowView.m; sourceTree = ""; }; - ED7D6E8105796CDA00AE6D5FB278AD55 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; - EE0588F0CF5CF783A7BD12C4D41E1CAE /* RNNBottomTabsController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBottomTabsController.m; path = lib/ios/RNNBottomTabsController.m; sourceTree = ""; }; - EE1C7D0E297A47F198360A65DDBE250E /* RNNLayoutInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNLayoutInfo.h; path = lib/ios/RNNLayoutInfo.h; sourceTree = ""; }; - EE2145AC7DA3C8A98035956E748CB8F9 /* RCTSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSafeAreaShadowView.m; sourceTree = ""; }; - EEAC55EA923FD229DAC177F954BC59CB /* React-RCTLinking.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTLinking.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EEB06BB9D563A1A3623900B7FF127F8D /* RNNLayoutInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNLayoutInfo.m; path = lib/ios/RNNLayoutInfo.m; sourceTree = ""; }; - EEC2D1F71686D8BB3ACF9F1E3A685B83 /* RCTModuleMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuleMethod.h; sourceTree = ""; }; - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EEFEBA26E1BAE2E9418438B460486D91 /* React.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = React.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - EF18B3F43B65CFA9ECDF2FB8176B19E9 /* RCTCxxMethod.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTCxxMethod.h; sourceTree = ""; }; - EFE5A3065915F6F490D65F2A2D1A11D0 /* CxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = CxxModule.h; sourceTree = ""; }; - EFF8E8FE921130CB6FDA5B3A055A3F5E /* RCTHTTPRequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTHTTPRequestHandler.h; path = Libraries/Network/RCTHTTPRequestHandler.h; sourceTree = ""; }; - F02C61A58E46A3814A75A7859E6D7453 /* RCTSurfaceHostingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurfaceHostingView.mm; sourceTree = ""; }; - F04A5895D938A47825A96584A8BF5F61 /* RCTProfile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProfile.m; sourceTree = ""; }; - F063979F6CF75179BE554F3EBE7F765C /* UIViewController+Utils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Utils.h"; sourceTree = ""; }; - F096FE44D32A29895D250F973CE14BB7 /* NullColor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NullColor.m; path = lib/ios/NullColor.m; sourceTree = ""; }; - F12215003A0C3F0BC3EE156EEB07B92F /* NullDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NullDictionary.h; path = lib/ios/NullDictionary.h; sourceTree = ""; }; - F13C9E5676219DD29EDC357BB552EB0E /* RCTTextSelection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTextSelection.h; sourceTree = ""; }; - F262E8F3B59C3955F489C749732B30C2 /* JSIExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = JSIExecutor.h; path = jsireact/JSIExecutor.h; sourceTree = ""; }; - F2702042AA830A67EAB0339CC661191A /* RCTStyleAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStyleAnimatedNode.h; sourceTree = ""; }; - F2C923818661C8FAB26028C501C6DFC1 /* UITabBarController+RNNUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UITabBarController+RNNUtils.h"; sourceTree = ""; }; - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F327FEFBCDDA924FEBF0DC759CD2E7ED /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTClipboard.h; sourceTree = ""; }; - F3563633992A41694B8E719D908E67AF /* RCTClipboard.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTClipboard.m; sourceTree = ""; }; - F38298D43E7D573B3EF14A9B0329B165 /* RNNElementView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNElementView.m; path = lib/ios/RNNElementView.m; sourceTree = ""; }; - F3CD491E69BF7AD280D642F418C75FB1 /* RNNLeafProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNLeafProtocol.h; path = lib/ios/RNNLeafProtocol.h; sourceTree = ""; }; - F426DFFFC816F43AF70119B7328C49A4 /* SharedProxyCxxModule.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SharedProxyCxxModule.h; sourceTree = ""; }; - F43EF7F8B678380686B13F2E4054DF87 /* RNNSplitViewControllerPresenter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNSplitViewControllerPresenter.h; path = lib/ios/RNNSplitViewControllerPresenter.h; sourceTree = ""; }; - F4904845AA14A593332F7AC37C0C3A24 /* RNNBridgeManagerDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNBridgeManagerDelegate.h; path = lib/ios/RNNBridgeManagerDelegate.h; sourceTree = ""; }; - F4BC78E5962164C4FAF4739F2DA6D776 /* RNNLayoutProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNLayoutProtocol.h; path = lib/ios/RNNLayoutProtocol.h; sourceTree = ""; }; - F4DED003C159A6C888A05B6AF81D9867 /* RCTImageSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageSource.m; sourceTree = ""; }; - F4EC80CF38B588C71E446A14DA9AEBAB /* RNNBottomTabsOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNBottomTabsOptions.m; path = lib/ios/RNNBottomTabsOptions.m; sourceTree = ""; }; - F50A7C1442A3CD013567D6D275CC8484 /* RCTImageStoreManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageStoreManager.m; sourceTree = ""; }; - F5A497153276E861872CBBF552BDEC71 /* RCTSegmentedControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSegmentedControl.h; sourceTree = ""; }; - F5D61A5A3B5FC8B5A7FFF8707D3B6C9F /* RCTTypedModuleConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTypedModuleConstants.h; sourceTree = ""; }; - F634691499E4B031851E00D5D45F3D03 /* RNNTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNTransition.m; path = lib/ios/RNNTransition.m; sourceTree = ""; }; - F6D195269B7539E7C154B536CBA5D46B /* RCTSafeAreaShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSafeAreaShadowView.h; sourceTree = ""; }; - F6F1C69F2B4F9CA1F7B4479136307A5D /* YGStyle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGStyle.cpp; path = yoga/YGStyle.cpp; sourceTree = ""; }; - F6F4D0112D630F1C84AD2616A91568C3 /* YGValue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGValue.cpp; path = yoga/YGValue.cpp; sourceTree = ""; }; - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F748A1FA1E9DD1B0B355DFF8EF176A96 /* RCTStatusBarManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTStatusBarManager.h; sourceTree = ""; }; - F78C33F3ADA6EF83241BA5111BBFA730 /* YGLayout.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = YGLayout.cpp; path = yoga/YGLayout.cpp; sourceTree = ""; }; - F78D3C905DB9CB60890A773F693A8562 /* JSBigString.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = JSBigString.cpp; sourceTree = ""; }; - F7E90A10F93365A40FEA14C2EFF98CF0 /* RCTActionSheetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActionSheetManager.m; sourceTree = ""; }; - F81965D089149ED2F7675B6A59EE14E7 /* RCTActivityIndicatorViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTActivityIndicatorViewManager.m; sourceTree = ""; }; - F8434108D746DAAC27267A9227D7AF2C /* MMDrawerController+Subclass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MMDrawerController+Subclass.h"; sourceTree = ""; }; - F8A849189879083BC6F69596EDDB099F /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; - F8D8BB205638CC51098F8B06C85DAA34 /* RCTObjcExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTObjcExecutor.h; sourceTree = ""; }; - F8FC928BA88DD64AC1991C1296F4A881 /* RNNPreviewOptions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNPreviewOptions.m; path = lib/ios/RNNPreviewOptions.m; sourceTree = ""; }; - F9203B81A9547AF7A9867DB5750EF536 /* RCTProfileTrampoline-x86_64.S */ = {isa = PBXFileReference; includeInIndex = 1; path = "RCTProfileTrampoline-x86_64.S"; sourceTree = ""; }; - F92F6FA7FAC51A8FAB71C85C3F1C70DF /* RCTAnimationUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTAnimationUtils.m; sourceTree = ""; }; - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F9FDE2BC9F3B55AB387A25B772635350 /* cached-powers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "cached-powers.h"; path = "double-conversion/cached-powers.h"; sourceTree = ""; }; - FA4702CE5DFFC8F2767486D296565305 /* RCTBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTBridge.h; sourceTree = ""; }; - FAC8FD356CEFC111420ABC01C7B51E01 /* React-cxxreact-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-cxxreact-dummy.m"; sourceTree = ""; }; - FB11EC2C236B1DA20F12452DC9CABE27 /* RCTMultilineTextInputViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultilineTextInputViewManager.m; sourceTree = ""; }; - FB3E4C611C685225176645252AC58CB4 /* RCTGIFImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTGIFImageDecoder.h; path = Libraries/Image/RCTGIFImageDecoder.h; sourceTree = ""; }; - FB969C56EBFEEDE10BD75B908E115939 /* RCTPlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTPlatform.h; path = React/CoreModules/RCTPlatform.h; sourceTree = ""; }; - FBB61D5216A28041D736476B6CB0A25B /* NSDataBigString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = NSDataBigString.h; sourceTree = ""; }; - FBD4C30437285D031146EA01C45A5125 /* Pods-CalendarsExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExampleTests.release.xcconfig"; sourceTree = ""; }; - FC2431932EDE38C398134223E10EA1C6 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; - FC25AC5141DFF5E47D0ED5CD65C13E0C /* ReactCommon.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ReactCommon.xcconfig; sourceTree = ""; }; - FC95D8A149D214E0070E7832BE198B21 /* Pods-CalendarsExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CalendarsExampleTests.debug.xcconfig"; sourceTree = ""; }; - FCCAC166BDCEFBACA0AA3E8561B2066D /* RNNControllerFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNNControllerFactory.m; path = lib/ios/RNNControllerFactory.m; sourceTree = ""; }; - FD1A5921A84A8413DD00C34BCCFEE3DA /* LongLivedObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; name = LongLivedObject.cpp; path = turbomodule/core/LongLivedObject.cpp; sourceTree = ""; }; - FD560B8A2B05DC9A28E9E27FF1546C1A /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; - FD751D7CFA65AC7836270B8EC708C031 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; - FDC18B4187B8C41FAB842AEB6EC2EAD9 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; path = "jsilib-posix.cpp"; sourceTree = ""; }; - FDFD2AA1283D978C11A076EE0C0327BE /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - FE553C027FE496C8039C90D18D56E433 /* RCTImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTImageView.m; sourceTree = ""; }; - FE615D58A030F19B5EB89E2F52F5B59A /* libReactNativeNavigation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactNativeNavigation.a; path = libReactNativeNavigation.a; sourceTree = BUILT_PRODUCTS_DIR; }; - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FEDAB4DAFF9BB2E2800A7DEDF81F7051 /* RCTViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTViewManager.h; sourceTree = ""; }; - FF2707CB874C69785F42D90F60D3F61F /* RNNLargeTitleOptions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RNNLargeTitleOptions.h; path = lib/ios/RNNLargeTitleOptions.h; sourceTree = ""; }; - FF48D94CF6C9C65A9964C9C013291EA4 /* RCTRawTextViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRawTextViewManager.m; sourceTree = ""; }; - FF892E41F1FED90AEE6676F39271CBBC /* RCTTiming.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTTiming.h; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 0F22F363690501476F87C3CF49F3CAAE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1D9FBFC27F48ED49157326664661BB23 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 21D6E00098A7CB90C0BA7E45C04305D5 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 25095242B0CFE41F0498529D9DFBFFE9 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 259B651A917B59A1F99D0A0DBA0A908E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 26CD778AE91E176797368D2CFC719B5D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2C85EAC75591A18C2CC840E90510046E /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2FD2631246EDB041A184841AA40A0DA4 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 34618A4C29E91989F6AD026ECAEE32CE /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4A2ABA1AA8EE85189CC08C1086DA90E7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5591E8F3CC96B6F0AE855AEF60F373CA /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 623F54F2BA701C7829C868A5DB9CFB0B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 68E4DC721715B13364B7CFA56B002488 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6DD9904294E49E592DD8A7DB2844210F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7131604671D03650071395198894C85F /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 72B0967E2588D1C1B6670C7B5B86B766 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 76A390C6543E22DA369BEF8C92C9683D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A0BAB3AC30EF632F21AC9FBA815163A2 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A67DE1447F6E2B32E4311F1865648051 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BCCBD7FF002375C8E814AD3A7B41A539 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BED2399A00D7DE5EB608669BB45F5958 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BF9F698DD7C23237EF331D0A7B7C027C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CDAFAF1D1F783376A3CC817FD99176DD /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D423137B03B405755C59CCDE6C0425FD /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D6FCCF6CC7AFF2FA946531CF89854D0D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F6172A486540C9B6029B4E86390D5E18 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F6EE96130CA9A5BFFB13A5A95B1B8885 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 02E94AEB4236B480DB49172BBAAF0344 /* Base */ = { - isa = PBXGroup; - children = ( - 9C8BEA5DAED178AABFFBC4AD7B366E6F /* RCTAssert.h */, - 2058FC698A820826BE1AC9711815202B /* RCTAssert.m */, - FA4702CE5DFFC8F2767486D296565305 /* RCTBridge.h */, - 7900CB501EDDACDA6532B5288EFE1745 /* RCTBridge.m */, - 2C851D543DA898087FD48BFEBD9AF1EC /* RCTBridge+Private.h */, - ADFE8829EEEFF8AE76C8B61A1476F5DE /* RCTBridgeDelegate.h */, - E0CA454DF3746295DD9CE9CCAD57310A /* RCTBridgeMethod.h */, - 31E20DACE2BEA29DD5F84C7311C8F5BB /* RCTBridgeModule.h */, - 4D837E33CBEA1FFB983933D1C6FA1CFB /* RCTBundleURLProvider.h */, - 3CE5DFABEB0F74D08291FB3E4F9234F0 /* RCTBundleURLProvider.m */, - 22B1C5E85BB0EEBBFD5BFF8A93B987D3 /* RCTComponentEvent.h */, - 500DFEB3B276ABDED5C45E343D8E6EC8 /* RCTComponentEvent.m */, - 9F0F01DD8B3F13179E2A1FA4A6BB8EAD /* RCTConvert.h */, - 5209709C390F57CD1A9473DBD142DFD2 /* RCTConvert.m */, - D0937065237454C54627BFDC85C3777D /* RCTCxxConvert.h */, - 26E12779E15333BB5D08424B7C06E75D /* RCTCxxConvert.m */, - 1A6575C235FE505FEAF7584EBF9969A3 /* RCTDefines.h */, - DA8CF138276E2EAC189574DDA11F2CF4 /* RCTDisplayLink.h */, - 779629F1908EE528A95A40F890638DF3 /* RCTDisplayLink.m */, - 4E6978EF46710D0841BE5A29005D93D5 /* RCTErrorCustomizer.h */, - 620B1999128B8E7B76C9C21D533DD6E8 /* RCTErrorInfo.h */, - 713744D0A78412AD7422818098BAEEE6 /* RCTErrorInfo.m */, - D17CA2440232E07A925309E8491A9D33 /* RCTEventDispatcher.h */, - 78357446BDCE3930B1D3A5D52C9C8879 /* RCTEventDispatcher.m */, - D4963FFC77CF5D97D4F6F0FB6A03D556 /* RCTFrameUpdate.h */, - CDB5A161AA8B089A28DA294F4B3595BD /* RCTFrameUpdate.m */, - 391E2451623FCAADBC2DD05C894C4674 /* RCTImageSource.h */, - F4DED003C159A6C888A05B6AF81D9867 /* RCTImageSource.m */, - 72842E90145B249D3CFC79BDD5AAE508 /* RCTInvalidating.h */, - A22176877F17A27D2F00994D43D8022D /* RCTJavaScriptExecutor.h */, - 79C4E16C8986BFEB88FD90DD1B437946 /* RCTJavaScriptLoader.h */, - 9F113C7755F018AA5B72AC0D0C5E993F /* RCTJavaScriptLoader.mm */, - 12D23E39890DBC55F08CEECB8E859955 /* RCTJSStackFrame.h */, - 12A322935B776098A41D19FB0672BAD5 /* RCTJSStackFrame.m */, - 2479B1F355CE1C29F8B05B6B9FDDEB1F /* RCTKeyCommands.h */, - 379BF27D423B6B4D8B56EB11FBD28E57 /* RCTKeyCommands.m */, - 1E77D572CC14D30096096347FBF66832 /* RCTLog.h */, - BD9320D3E9D8B1AA398C4B4C0A00B1BA /* RCTLog.mm */, - 0442186B35FD501B0AD7519A4C02B782 /* RCTManagedPointer.h */, - E1A1ED8C8AADB359C4A7FFFBDC09857D /* RCTManagedPointer.mm */, - C530A2AAE3002611BC47F4DBDC0A30AB /* RCTModuleData.h */, - E25CBEBE2F5B826D575547E0C590FCB5 /* RCTModuleData.mm */, - EEC2D1F71686D8BB3ACF9F1E3A685B83 /* RCTModuleMethod.h */, - DE544FD1200AA51D19B58C98BB0E4181 /* RCTModuleMethod.mm */, - D808E2D59D9C733A2D196905E4CF386B /* RCTMultipartDataTask.h */, - 32645A6D361911131C08B9E20217B287 /* RCTMultipartDataTask.m */, - 0B41753D2CDADDAC0570F0807B4071FE /* RCTMultipartStreamReader.h */, - 8449345E0AD6FF686784C9D051872FE5 /* RCTMultipartStreamReader.m */, - CBAE917460D363DFDC49C49A719365A6 /* RCTNullability.h */, - 807A5644AA4D947C13BCEE5788D8A5DD /* RCTParserUtils.h */, - 815C39E736D40B5FEF65FE40A7E705AE /* RCTParserUtils.m */, - E0FAB9B1D17DB3562554B345EAC3EBAD /* RCTPerformanceLogger.h */, - 2646FBCC43BC6F636304844AE27AFF5D /* RCTPerformanceLogger.m */, - 9538A2B26E41A08E25AEECA0781EC122 /* RCTReloadCommand.h */, - 9B9AEBF5436C82CA6AC3C25107D815EA /* RCTReloadCommand.m */, - 5B202FF1924B1FEA06E24AAD57CD5550 /* RCTRootContentView.h */, - 46F47A340C4F3FA6FAF428D47CFE1A50 /* RCTRootContentView.m */, - 922C942114037F6643F08CF44AF3F900 /* RCTRootView.h */, - 52C39291AFCBFBBA77450E1A95909B20 /* RCTRootView.m */, - 712B6A3563E0FD339319789FDBBE6A83 /* RCTRootViewDelegate.h */, - 0A1F586EFD8125D53AE0065274F8AF03 /* RCTRootViewInternal.h */, - 162EC7AC852D69D192FCCAAC76E5B1FE /* RCTTouchEvent.h */, - 67A1A57778302F4E6FD0688CF9978FEB /* RCTTouchEvent.m */, - B45E71A51E77962B6036B8A43FCE76BF /* RCTTouchHandler.h */, - 14F135D48F3F4F79BCC207C6A1ECA0B5 /* RCTTouchHandler.m */, - 81C3CC280C715C4CE8A448A0024061E6 /* RCTURLRequestDelegate.h */, - 909FC2BB5413B6748B749CD7E4EDE68D /* RCTURLRequestHandler.h */, - DEA6EB5ED39D325FBA35CF82920E077D /* RCTUtils.h */, - F8A849189879083BC6F69596EDDB099F /* RCTUtils.m */, - 334A2D4077B13A934BF49E01A264E98A /* RCTVersion.h */, - A077E5CD4E57D3A75BEA838885931791 /* RCTVersion.m */, - 85E465A02C7D36F2548A7C64F6E02FD2 /* RCTWeakProxy.h */, - DEBAAFB865F6038D6022ADA00AD5E168 /* RCTWeakProxy.m */, - CBAE714AED83151115A44A30CB9B2C3C /* Surface */, - ); - name = Base; - path = React/Base; - sourceTree = ""; - }; - 066D225111F5094AC1D1F9F58042E6F8 /* RCTVibrationHeaders */ = { - isa = PBXGroup; - children = ( - 9643F59F0A5A70F23A15E364EBFDC26C /* RCTVibration.h */, - ); - name = RCTVibrationHeaders; - sourceTree = ""; - }; - 06F86E8C662A3D03B521CDBE4C87ECDE /* Pod */ = { - isa = PBXGroup; - children = ( - 919961F9128F1522DEADDE6E0E1EECD9 /* React-RCTVibration.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 07675DCF48E92B45C426F9597C9621D5 /* Support Files */ = { - isa = PBXGroup; - children = ( - 98A4EB55B7A5C99BFB725FC0A7D4CA14 /* React-cxxreact.xcconfig */, - FAC8FD356CEFC111420ABC01C7B51E01 /* React-cxxreact-dummy.m */, - 2C6B6F70B519C77DEB237B8793CE3EFB /* React-cxxreact-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-cxxreact"; - sourceTree = ""; - }; - 08194D213ACCE286AEF22A2F1A3390DE /* DevSupport */ = { - isa = PBXGroup; - children = ( - 9C13AC9C1DFAEEBA9AEAA72031D8AF55 /* DevSupport */, - 9493D647FB9BA8018DA3A0C38A587240 /* Inspector */, - ); - name = DevSupport; - sourceTree = ""; - }; - 0C605AD2C0750C64CB36F83EAAD6DDDF /* React-RCTActionSheet */ = { - isa = PBXGroup; - children = ( - F7E90A10F93365A40FEA14C2EFF98CF0 /* RCTActionSheetManager.m */, - 6AAE595DD9431C70B6AA93EAA6D1E7EB /* Pod */, - 7C1D9BEB3673BF327886F19E7D925581 /* Support Files */, - ); - name = "React-RCTActionSheet"; - path = "../../node_modules/react-native/Libraries/ActionSheetIOS"; - sourceTree = ""; - }; - 0DC241F77F62729333F696931B5D5972 /* internal */ = { - isa = PBXGroup; - children = ( - 4F526649CE0A5A8FFCF8FF6550EF74DA /* experiments.cpp */, - D1270F67E2FF5411F7E13DD17B9ADB74 /* experiments.h */, - B4E4EE0FBE23F7E13529451283DFB090 /* experiments-inl.h */, - ); - name = internal; - path = yoga/internal; - sourceTree = ""; - }; - 102ED1B57E48F5187161E717167E221A /* RCTAnimationHeaders */ = { - isa = PBXGroup; - children = ( - 7CD44C3A245688D5B11382980BCD1C6D /* RCTAnimationUtils.h */, - B3104BE1411E50C8101AFFFE5D4BAA07 /* RCTNativeAnimatedModule.h */, - 204DFB1287A1AE4430453B9F93A13FD3 /* RCTNativeAnimatedNodesManager.h */, - F7E576887DC16462EDDAA7FFBE76333B /* Drivers */, - 7FC66AA605FB6C50E77AA5C78093BC2B /* Nodes */, - ); - name = RCTAnimationHeaders; - sourceTree = ""; - }; - 106054CD22FBE31491DAC259C75405A7 /* Pod */ = { - isa = PBXGroup; - children = ( - AC3D4D7E183F98DCAC79B6E7C576573E /* React-RCTText.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 10D80D682BF44F83D512FC75FC5117DB /* Support Files */ = { - isa = PBXGroup; - children = ( - 4262B0EC88101A06C3E1C2994998B301 /* React-RCTNetwork.xcconfig */, - A54FCE56B249AAA151A089183E1C2A99 /* React-RCTNetwork-dummy.m */, - E3442213C8C74123BC7E70B211B01ACD /* React-RCTNetwork-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTNetwork"; - sourceTree = ""; - }; - 161F1C11E27E48A42C0EC0F2E2E87B24 /* DoubleConversion */ = { - isa = PBXGroup; - children = ( - 48F2864485F008730716D49FFAA52CE4 /* bignum.cc */, - 031C5965B07323877B0BE65B16336886 /* bignum.h */, - 3C7EB8B3ADD18A55309B8FB2222078C9 /* bignum-dtoa.cc */, - 7E2BC43BD56339CA3DED66A87707C54E /* bignum-dtoa.h */, - 328E002B1FD3A6FBBDA0B2EFBC1B5487 /* cached-powers.cc */, - F9FDE2BC9F3B55AB387A25B772635350 /* cached-powers.h */, - E9B5A406ACED4FF277403ED5D737F1D4 /* diy-fp.cc */, - E900B0B8E64B5CA201557483E7C35D62 /* diy-fp.h */, - 9FC820B5579AEA6BB3688B0D6F2B7924 /* double-conversion.cc */, - 521B36C6D595E37338BC19043EFAB4E5 /* double-conversion.h */, - 65994577A7D43E89898AE39D0AA8E7DA /* fast-dtoa.cc */, - B1D08C5245D3560FB9D2DDB97861B4B4 /* fast-dtoa.h */, - 84A422E230C18E3F661DE2E7B9F3C954 /* fixed-dtoa.cc */, - A80FB301586F3DED2AEA9A7C04C0A45F /* fixed-dtoa.h */, - 602DA9443017AFFEE971F78601AC23A2 /* ieee.h */, - 399872F0187A22EA558CB9D045BD7B7D /* strtod.cc */, - 90F106A05F805D1079E325A566827A0F /* strtod.h */, - 81ABD8B8D91971D0DF4F11F4A1CCE13B /* utils.h */, - ED6AFEEC89E5C603484CEB87C7B0125D /* Support Files */, - ); - name = DoubleConversion; - path = DoubleConversion; - sourceTree = ""; - }; - 172B8F383787A0C37582C011EEED99D7 /* SafeAreaView */ = { - isa = PBXGroup; - children = ( - F6D195269B7539E7C154B536CBA5D46B /* RCTSafeAreaShadowView.h */, - EE2145AC7DA3C8A98035956E748CB8F9 /* RCTSafeAreaShadowView.m */, - 5473620513931A89508086D131F06F4D /* RCTSafeAreaView.h */, - 080B5E22117B43686FAFF7BA21131215 /* RCTSafeAreaView.m */, - 00A07CA3EF719BEADD7E4DFA51690FFA /* RCTSafeAreaViewLocalData.h */, - DC8BC113D226B45339D8A3D0C7859A5C /* RCTSafeAreaViewLocalData.m */, - 132E0739023CB34E339EEF1A98D742FC /* RCTSafeAreaViewManager.h */, - 146CD87FD4607DA46D1FAA57765BEF87 /* RCTSafeAreaViewManager.m */, - ); - name = SafeAreaView; - path = SafeAreaView; - sourceTree = ""; - }; - 1A922FD82E986D7FCAFFC5DEE92C2860 /* Text */ = { - isa = PBXGroup; - children = ( - A01AD282405DC0D6EE2178B8506685D7 /* NSTextStorage+FontScaling.h */, - C14302B918865FBAA823A0314CE2ADC9 /* RCTTextShadowView.h */, - 5744EBF350C62F34F03195AE14C7F857 /* RCTTextView.h */, - 806B4142C23D7B4C78FF61DDC21E53E7 /* RCTTextViewManager.h */, - ); - name = Text; - path = Libraries/Text/Text; - sourceTree = ""; - }; - 1A9D7DDC76D5E899C11082BB1E78B43D /* glog */ = { - isa = PBXGroup; - children = ( - 0E5AB846E7B6EC132A680BB16C120686 /* demangle.cc */, - E59898A483D763EAD65BB911FD08EA04 /* log_severity.h */, - 13DBD99C7DFED7152D5C6A624A767497 /* logging.cc */, - 5B0E8060DCFA082DEA1399E6D881C566 /* logging.h */, - 0817E5AF80154B06352E4403C4215E92 /* raw_logging.cc */, - C6A8B9A377B48A683CE15BE2226EA28D /* raw_logging.h */, - 4A65832BD774C014CBA1965EDE268F18 /* signalhandler.cc */, - 30502828C350EC7CBFBE5CE39E02DCAA /* stl_logging.h */, - 3F12EB5F9B186D5A7087633F447F53FE /* symbolize.cc */, - A5C911F39BE442C7C87C2A57E97EBD7A /* utilities.cc */, - 7E189B725277AF78EF896963AC8C0183 /* vlog_is_on.cc */, - AEE95448B1D8FBB0BB0095E172DC37C9 /* vlog_is_on.h */, - 655F89925F983C697B5266150A3A201E /* Support Files */, - ); - name = glog; - path = glog; - sourceTree = ""; - }; - 1E0CBEF2FC974547A388EC7DAEAFF9B5 /* Pod */ = { - isa = PBXGroup; - children = ( - B500B971CE01657900458C6D9FE5E61C /* FBReactNativeSpec.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1EA10E7377415F2F539CDBD5959FA732 /* Pod */ = { - isa = PBXGroup; - children = ( - 7D20393771A84C262F9F4F91592975D3 /* React-RCTNetwork.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 1F82E571B7CD6BFD5567FD28BBFF6C82 /* CxxBridge */ = { - isa = PBXGroup; - children = ( - 21F43A85D42E8151863B74D29D537567 /* JSCExecutorFactory.h */, - 0273AE3D6F89A62F42CA168CF0CB0A8C /* JSCExecutorFactory.mm */, - FBB61D5216A28041D736476B6CB0A25B /* NSDataBigString.h */, - 5C9D4774828B7DC376BFCA55B870F6C0 /* NSDataBigString.mm */, - AD9FC8868716F35BD4B85880C8AAAE32 /* RCTCxxBridge.mm */, - 18120C78E15D606F488EE572B2E4C5C1 /* RCTCxxBridgeDelegate.h */, - E0CB1705B520BC5FB0A23615647DFC5E /* RCTMessageThread.h */, - 4128D94331B157B05DACF5E225430B10 /* RCTMessageThread.mm */, - F8D8BB205638CC51098F8B06C85DAA34 /* RCTObjcExecutor.h */, - FC2431932EDE38C398134223E10EA1C6 /* RCTObjcExecutor.mm */, - ); - name = CxxBridge; - path = React/CxxBridge; - sourceTree = ""; - }; - 1FEE014F2C820D7494872E292AF90D1D /* Pod */ = { - isa = PBXGroup; - children = ( - 2B53A43C6673DDE4C1DAAC4BCAFB2AA9 /* React-RCTBlob.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2191FFBD4B5A7677AF9C49C831AD2632 /* Pods */ = { - isa = PBXGroup; - children = ( - 9DE091FD90417FD2C182CA5ED6BE5D8B /* boost-for-react-native */, - 161F1C11E27E48A42C0EC0F2E2E87B24 /* DoubleConversion */, - F3C76AAE2BCA3FDDDD8761F3996046E5 /* Folly */, - 1A9D7DDC76D5E899C11082BB1E78B43D /* glog */, - ); - name = Pods; - sourceTree = ""; - }; - 258324FD077F6139F2FEA11D02A3D814 /* UIUtils */ = { - isa = PBXGroup; - children = ( - 2B1F5A81715E7690DA7C632AF69E66CB /* RCTUIUtils.h */, - 5F492C546D6F149D72B13F70998472D4 /* RCTUIUtils.m */, - ); - name = UIUtils; - path = React/UIUtils; - sourceTree = ""; - }; - 27E541AADFB1B5F94DA85628B188FBB7 /* Support Files */ = { - isa = PBXGroup; - children = ( - E2D8806A700836BCD1344D91401A7172 /* React.xcconfig */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React"; - sourceTree = ""; - }; - 28DF35BC864F53D4902EB27D40E62D2E /* RCTRequired */ = { - isa = PBXGroup; - children = ( - 781D0F1108E95F3A2D89B11202C07254 /* RCTRequired.h */, - 2C277758F8E66E4FBF023DDFE1D1A6FD /* Pod */, - 5EE9A025D58C3CEB6E317A0A3CECA05A /* Support Files */, - ); - name = RCTRequired; - path = "../../node_modules/react-native/Libraries/RCTRequired"; - sourceTree = ""; - }; - 2A0A79B93F7D140FDB68887E7C79416A /* FBLazyVector */ = { - isa = PBXGroup; - children = ( - BB6498F642E8AA0FA63F632AFBA6F747 /* FBLazyIterator.h */, - ADB0B115EA87FB9AFE78D7B154E4210B /* FBLazyVector.h */, - 740957B1008D2DF958D2972EA4D6529E /* Pod */, - FAD67FC0D40D114E7BA25361E4D98CE6 /* Support Files */, - ); - name = FBLazyVector; - path = "../../node_modules/react-native/Libraries/FBLazyVector"; - sourceTree = ""; - }; - 2A7B7625D94E77747709C64DAAEC6252 /* Nodes */ = { - isa = PBXGroup; - children = ( - 707C33C2ABA5CF97DA752A623EA09C5B /* RCTAdditionAnimatedNode.m */, - CDF3BB7D6CB7BDF66FAB6E340589D41D /* RCTAnimatedNode.m */, - C8BD6B413C89DCCBA2396C7627F6DF44 /* RCTDiffClampAnimatedNode.m */, - EC4DF645D2E86D523A4A783918892F21 /* RCTDivisionAnimatedNode.m */, - 07A9A15910C5245CC5531542E9FB0428 /* RCTInterpolationAnimatedNode.m */, - 35B743362D9BC24CCF53F600FB5C542E /* RCTModuloAnimatedNode.m */, - AA1F1ED4AC987C5325177C65914EF9E4 /* RCTMultiplicationAnimatedNode.m */, - 992F514B66E6CB075D43A3E8BB9B140A /* RCTPropsAnimatedNode.m */, - 7A97A523D4F0D17D576ADD9BB246DF1F /* RCTStyleAnimatedNode.m */, - D948A6D5A87AB9E3A2D94F86F4B48C55 /* RCTSubtractionAnimatedNode.m */, - B6871F73A44F64A70F4A8EDD765D4F67 /* RCTTrackingAnimatedNode.m */, - 52FC7ADD5A40E08BDB6CC5E3E10B1DFF /* RCTTransformAnimatedNode.m */, - B8FCB614ED4106C00E836F147C837DF0 /* RCTValueAnimatedNode.m */, - ); - name = Nodes; - path = Nodes; - sourceTree = ""; - }; - 2C0292374E9FA510621EAAA0970BCB32 /* React-RCTLinking */ = { - isa = PBXGroup; - children = ( - 6031DCDD2C80B324CB9CAE157A1D0C92 /* RCTLinkingManager.m */, - 66B73C16B3EB0D92E1E9A8884FC69040 /* Pod */, - C0C7D7DD0F3D7539D11A2514EDD7EFB1 /* Support Files */, - ); - name = "React-RCTLinking"; - path = "../../node_modules/react-native/Libraries/LinkingIOS"; - sourceTree = ""; - }; - 2C277758F8E66E4FBF023DDFE1D1A6FD /* Pod */ = { - isa = PBXGroup; - children = ( - 672CBA840EECC156E328D829F6EECD46 /* RCTRequired.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 2CC877769D3D03A8867E788C7256689F /* RawText */ = { - isa = PBXGroup; - children = ( - BC5A3A72906F2399E0ED498B28BDAC93 /* RCTRawTextShadowView.h */, - 96FB9828E2904A75CAF4A1397AD6492C /* RCTRawTextViewManager.h */, - ); - name = RawText; - path = Libraries/Text/RawText; - sourceTree = ""; - }; - 326961220FAE68CB137A753E8DB50F82 /* Pods-CalendarsExample */ = { - isa = PBXGroup; - children = ( - 20142B02A0B11E18F1FA79A3A4F3A0BB /* Pods-CalendarsExample-acknowledgements.markdown */, - B64804466422970BF61ED6711A2E69E3 /* Pods-CalendarsExample-acknowledgements.plist */, - 272B2CCE012ADBC38A786D5790AFCF6E /* Pods-CalendarsExample-dummy.m */, - 69E8A5F10176DFB95B5443D74C3B9FF9 /* Pods-CalendarsExample.debug.xcconfig */, - ECAFEFF1F4135DFEC9F141290B785AB7 /* Pods-CalendarsExample.release.xcconfig */, - ); - name = "Pods-CalendarsExample"; - path = "Target Support Files/Pods-CalendarsExample"; - sourceTree = ""; - }; - 32B036437AD9146F2DADD291FC26B1EF /* Pods-CalendarsExample-tvOS */ = { - isa = PBXGroup; - children = ( - C87224B233BDBADED78BB2C66A0FAB99 /* Pods-CalendarsExample-tvOS-acknowledgements.markdown */, - 2CDC43207BF7D0D9A3B20FC81327868C /* Pods-CalendarsExample-tvOS-acknowledgements.plist */, - 90AF144106B1E742AFFBC2278F11295C /* Pods-CalendarsExample-tvOS-dummy.m */, - 33280B41AF2C68E56E429B3B2113BA46 /* Pods-CalendarsExample-tvOS.debug.xcconfig */, - 6D5EA87CEB99C21C4FF70F55AEC6D82B /* Pods-CalendarsExample-tvOS.release.xcconfig */, - ); - name = "Pods-CalendarsExample-tvOS"; - path = "Target Support Files/Pods-CalendarsExample-tvOS"; - sourceTree = ""; - }; - 334CBD1C1ABA1245D4B2AC4AB8F55F00 /* Pod */ = { - isa = PBXGroup; - children = ( - E5B9589645C73BF5E2EEA29BF8601507 /* React-jsiexecutor.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 3B5A7E0781EAE233035255CB357806D2 /* BaseText */ = { - isa = PBXGroup; - children = ( - 6EC3A210858134725FDE1E769DA157E0 /* RCTBaseTextShadowView.m */, - 8A36571815975FC9FCA72C12CA002542 /* RCTBaseTextViewManager.m */, - ); - name = BaseText; - path = BaseText; - sourceTree = ""; - }; - 3BBAA3003CCA8FE8F9DD8BD840F799FB /* React-RCTText */ = { - isa = PBXGroup; - children = ( - 083A0FC23958038719069B4D1B96ADC2 /* RCTConvert+Text.m */, - 4328CAE6390B8D40D22536071F31D1F7 /* RCTTextAttributes.m */, - 3B5A7E0781EAE233035255CB357806D2 /* BaseText */, - 106054CD22FBE31491DAC259C75405A7 /* Pod */, - 4AD904713AB833CF039CDB811346D2B9 /* RawText */, - 908073281088DF1F66AE977AA016916D /* Support Files */, - CDD58EE6045CE3300570FDCA339CE4D3 /* Text */, - D1AED2EA85ED45459A8ABFE413A3CAF8 /* TextInput */, - 424C9CC9B94E3B24EE0992FB9ED19693 /* VirtualText */, - ); - name = "React-RCTText"; - path = "../../node_modules/react-native/Libraries/Text"; - sourceTree = ""; - }; - 3E65D659DB8AB285323AEBBB2FCA0B36 /* event */ = { - isa = PBXGroup; - children = ( - CD92147706373775A172EBF685032629 /* event.cpp */, - A61263388424BDA608FCAE004E8C0582 /* event.h */, - ); - name = event; - path = yoga/event; - sourceTree = ""; - }; - 424C9CC9B94E3B24EE0992FB9ED19693 /* VirtualText */ = { - isa = PBXGroup; - children = ( - 3B30BACE0722EC43A8A939DD8CD3EA94 /* RCTVirtualTextShadowView.m */, - 0441028D91C270CB0FD3C8132D4F3100 /* RCTVirtualTextViewManager.m */, - ); - name = VirtualText; - path = VirtualText; - sourceTree = ""; - }; - 456713168D515853182FC8930AA773F0 /* RCTTextHeaders */ = { - isa = PBXGroup; - children = ( - D9BABCD98FE1A3317A52BD521A84551F /* RCTConvert+Text.h */, - 42B5E2BB226A9E5D827ECDAE0A3B5872 /* RCTTextAttributes.h */, - 040E750C69CF2DDCE589FA708713123A /* RCTTextTransform.h */, - EAC6716DDD1BE5CFAF283CEABCA4D198 /* BaseText */, - 2CC877769D3D03A8867E788C7256689F /* RawText */, - 1A922FD82E986D7FCAFFC5DEE92C2860 /* Text */, - A97D677CB8F61A3986501A506124B9D3 /* TextInput */, - DB8EC1CED6B6407FA0AF93AB1C5DF0F2 /* VirtualText */, - ); - name = RCTTextHeaders; - sourceTree = ""; - }; - 4AD904713AB833CF039CDB811346D2B9 /* RawText */ = { - isa = PBXGroup; - children = ( - 85D4381AC956F54701643ACBAA93039A /* RCTRawTextShadowView.m */, - FF48D94CF6C9C65A9964C9C013291EA4 /* RCTRawTextViewManager.m */, - ); - name = RawText; - path = RawText; - sourceTree = ""; - }; - 4C74CD6636AB394429B2D4E56973C51E /* Products */ = { - isa = PBXGroup; - children = ( - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - 5E2202D418DA037C4A962C8FCDAC3624 /* libPods-CalendarsExample.a */, - 9E66E515A0E5EA563229D1834C5A297E /* libPods-CalendarsExample-tvOS.a */, - 1351F289036E894546328C02A1B77766 /* libPods-CalendarsExample-tvOSTests.a */, - B7C0B2238EDC557AAFC85F948D06BFA5 /* libPods-CalendarsExampleTests.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - FE615D58A030F19B5EB89E2F52F5B59A /* libReactNativeNavigation.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - ); - name = Products; - sourceTree = ""; - }; - 4D98027CDA7571951817E7F0AA9CC050 /* Pod */ = { - isa = PBXGroup; - children = ( - 38894C2C0C2424DC664F986964296BDE /* React-RCTImage.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 4FACE4E47DE746971FC972708D40D664 /* Support Files */ = { - isa = PBXGroup; - children = ( - 9CED3452BEC03824202FB005DC51187F /* RCTTypeSafety.xcconfig */, - 9EFA79CDEF0DD7144F7A897D4978F981 /* RCTTypeSafety-dummy.m */, - DEAB0DACF016F20F7AD6E1492D036C9E /* RCTTypeSafety-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTTypeSafety"; - sourceTree = ""; - }; - 517DF0E574E74A27D8CDD022EAD3D7C6 /* RCTBlobHeaders */ = { - isa = PBXGroup; - children = ( - DD359B7DDFE52FA9CD9C4F32D0141226 /* RCTBlobManager.h */, - 725A9F844AE29195C21EA5E64A60E3A2 /* RCTFileReaderModule.h */, - ); - name = RCTBlobHeaders; - sourceTree = ""; - }; - 586F5744F76A55DD83B87E32BF9C1BC7 /* Multiline */ = { - isa = PBXGroup; - children = ( - 37858B221230C80044652C3970697594 /* RCTMultilineTextInputView.m */, - FB11EC2C236B1DA20F12452DC9CABE27 /* RCTMultilineTextInputViewManager.m */, - 3975B4F540D1A4C18211B5A38FC2B954 /* RCTUITextView.m */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 5A92F31F5FC5A305C57003E40B96BDAF /* Pod */ = { - isa = PBXGroup; - children = ( - 8819B83142494EC4F171514ADFB7E31E /* React-cxxreact.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 5EE9A025D58C3CEB6E317A0A3CECA05A /* Support Files */ = { - isa = PBXGroup; - children = ( - E3E2E32FBCC1F05FFAA79AB104A8CFE5 /* RCTRequired.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/RCTRequired"; - sourceTree = ""; - }; - 5FA663F3A4F51554B680555320228E21 /* Support Files */ = { - isa = PBXGroup; - children = ( - 0115063272DD6DCB19B655C513262606 /* React-RCTSettings.xcconfig */, - 9DF5A3EC34EA43F9AFD71AA5FAC48A67 /* React-RCTSettings-dummy.m */, - B30B20D906190CB8D421C837BE3A918A /* React-RCTSettings-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTSettings"; - sourceTree = ""; - }; - 600B9539D1404356AD4DC03D62235FBB /* jscallinvoker */ = { - isa = PBXGroup; - children = ( - 37EDF28F0FDF631CABA35E991A1696ED /* BridgeJSCallInvoker.cpp */, - EC3F91F2DE79309450FA23990DA93692 /* BridgeJSCallInvoker.h */, - 3608241E061DE25D92D566E38A3A9C9B /* JSCallInvoker.h */, - ); - name = jscallinvoker; - sourceTree = ""; - }; - 61FF4270DF6486F722DCE9FE4C12445F /* Support Files */ = { - isa = PBXGroup; - children = ( - D5BF6D20138DCB83BFBFD1A775576B5C /* React-RCTAnimation.xcconfig */, - E210BCF627CEB700173A70A917BB2101 /* React-RCTAnimation-dummy.m */, - 246D9BF922F04133002A60BF3779D98C /* React-RCTAnimation-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTAnimation"; - sourceTree = ""; - }; - 62057E24DBA81B23DD36A4758BBFC4B1 /* Support Files */ = { - isa = PBXGroup; - children = ( - E5C273ABEF7E424AC03750B6D82699DA /* FBReactNativeSpec.xcconfig */, - CA8D9523F3E3AC242D9E4C122C7DCCFB /* FBReactNativeSpec-dummy.m */, - 414D9A010131283E2468D9003710D36B /* FBReactNativeSpec-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBReactNativeSpec"; - sourceTree = ""; - }; - 628A82B5713B32D32FCEB9E40D245E06 /* Pod */ = { - isa = PBXGroup; - children = ( - A1AF4F85DD137C5CB7BFD13F91CC3E0F /* React-jsi.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6296E9E4B7264166DC3C9311E33B9005 /* CxxUtils */ = { - isa = PBXGroup; - children = ( - 3F377FDAE59148D2CDDC8BF4F903DA4C /* RCTFollyConvert.h */, - 91E1E9F914DF55120CE7D134493D3667 /* RCTFollyConvert.mm */, - ); - name = CxxUtils; - path = React/CxxUtils; - sourceTree = ""; - }; - 630C1ABA44BBA41E4DD059A491868934 /* Pod */ = { - isa = PBXGroup; - children = ( - 88B3608E0A658815F9CB0DF3F7B5BC5F /* LICENSE */, - 733C388C1644EF3B884E8B060CF4BCD3 /* ReactNativeNavigation.podspec */, - 5E3EF28D89950F146ABDAEB23E595CFD /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - 639898FA5E307D425C2152A5BD7B9BE4 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1397723F36DBA3811F2B788D71AF3965 /* Folly.xcconfig */, - 6100B7C43DD662044B863E3342C51B95 /* Folly-dummy.m */, - 67C6A9073BA9B1017E14C8C2214BDB4F /* Folly-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Folly"; - sourceTree = ""; - }; - 6417A0B4B0C56DA8CECA3031FAEECEB9 /* ReactCommon */ = { - isa = PBXGroup; - children = ( - 600B9539D1404356AD4DC03D62235FBB /* jscallinvoker */, - 787851D2764D9F27609599721CFE6F56 /* Support Files */, - FCDF0195C3B251DA8B712C9FBE4ACB03 /* turbomodule */, - ); - name = ReactCommon; - path = "../../node_modules/react-native/ReactCommon"; - sourceTree = ""; - }; - 655F89925F983C697B5266150A3A201E /* Support Files */ = { - isa = PBXGroup; - children = ( - 798913C836D4159FE568350B5478E2D1 /* glog.xcconfig */, - E16D39A69CE1891993FE6AE4FCB76DF4 /* glog-dummy.m */, - C35C9114619B7D01D10CA19BB44A25D9 /* glog-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/glog"; - sourceTree = ""; - }; - 66B73C16B3EB0D92E1E9A8884FC69040 /* Pod */ = { - isa = PBXGroup; - children = ( - EEAC55EA923FD229DAC177F954BC59CB /* React-RCTLinking.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6AAE595DD9431C70B6AA93EAA6D1E7EB /* Pod */ = { - isa = PBXGroup; - children = ( - A634F89BFECF15D0B73B3A0693EDD659 /* React-RCTActionSheet.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6D54170BB42CD0720BAF7AA86DBC50B7 /* React */ = { - isa = PBXGroup; - children = ( - B140C4D7F6E6081739D97ADC0DF160C4 /* Pod */, - 27E541AADFB1B5F94DA85628B188FBB7 /* Support Files */, - ); - name = React; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 6E625E949C35B046456920B3B18D9DCD /* Pod */ = { - isa = PBXGroup; - children = ( - 2CE80E2743B2534775BE1D1C92BB21CF /* React-RCTAnimation.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 6F7DAF3C32B3FC098E880C1522A56FB5 /* MMDrawerController */ = { - isa = PBXGroup; - children = ( - BC306705D9FA29D4B1DA55738582D7C2 /* MMDrawerBarButtonItem.h */, - 7042086D4F065B6D91B3E2E5530EC780 /* MMDrawerBarButtonItem.m */, - CBEB8DBAF02D9F6691FFE0CE3F5A10FC /* MMDrawerController.h */, - 7DB6E080FFC0F25545C148F9FBA55792 /* MMDrawerController.m */, - F8434108D746DAAC27267A9227D7AF2C /* MMDrawerController+Subclass.h */, - AEB45211AB386CD5B88900738C8226FA /* MMDrawerVisualState.h */, - BF81425EBEABE2E41C95654C24B5842C /* MMDrawerVisualState.m */, - 78564007560020F753E035FBF7687AD4 /* MMExampleDrawerVisualStateManager.h */, - 259EF0FB5BBBD9263511E2BAD8D55EF1 /* MMExampleDrawerVisualStateManager.m */, - 367236B9EE2C642379EA505D4F213C50 /* UIViewController+MMDrawerController.h */, - 415061B06CDA036D4F60DF41662CA468 /* UIViewController+MMDrawerController.m */, - ); - name = MMDrawerController; - path = MMDrawerController; - sourceTree = ""; - }; - 707FD124B9DCFC958F4EB106651931B8 /* Development Pods */ = { - isa = PBXGroup; - children = ( - 2A0A79B93F7D140FDB68887E7C79416A /* FBLazyVector */, - EB6912B7E396D059A0CB1DFA3D5DF3D0 /* FBReactNativeSpec */, - 28DF35BC864F53D4902EB27D40E62D2E /* RCTRequired */, - FA57BF70FD4817198AC2EE147AFC0353 /* RCTTypeSafety */, - 6D54170BB42CD0720BAF7AA86DBC50B7 /* React */, - 97B7F9C2B69DC8A7A448807DB2F624F5 /* React-Core */, - FE5D047D3E91360394B224DF1A492F08 /* React-CoreModules */, - 9D7A399E79CDF75A2850174BBE68BBA4 /* React-cxxreact */, - 8ECAB3953B8D76E43279BE2D9BB4A96F /* React-jsi */, - 7E2313D086462B78ADE796271FC7796D /* React-jsiexecutor */, - CA824842BA5E9595ADD67CA603FAC664 /* React-jsinspector */, - 0C605AD2C0750C64CB36F83EAAD6DDDF /* React-RCTActionSheet */, - F6999CD61187D5D5F18E477BE030AD53 /* React-RCTAnimation */, - E17AA09A8142497471966A87185580F4 /* React-RCTBlob */, - 81D0BED997CBFCEE7D3156174A5431DA /* React-RCTImage */, - 2C0292374E9FA510621EAAA0970BCB32 /* React-RCTLinking */, - DC792DB1A8F4D0D986056C3733CC4258 /* React-RCTNetwork */, - E252E29E4FDE3ADA1492E572D477F047 /* React-RCTSettings */, - 3BBAA3003CCA8FE8F9DD8BD840F799FB /* React-RCTText */, - D1BF266CAA67482701AB39FB22675779 /* React-RCTVibration */, - 6417A0B4B0C56DA8CECA3031FAEECEB9 /* ReactCommon */, - 94484D4912C53E32181F84B111B188F8 /* ReactNativeNavigation */, - B7B21E2C8C7C41E3E4ED7EE1AEBD9672 /* Yoga */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - 740957B1008D2DF958D2972EA4D6529E /* Pod */ = { - isa = PBXGroup; - children = ( - 2C3F76299388D2CEAB52B74D982BFD3B /* FBLazyVector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7684C67C3B8051BBDB31F29D3A86404F /* Pod */ = { - isa = PBXGroup; - children = ( - 4BD8FF9A258C2B0E454A5E32EAD49FDB /* RCTTypeSafety.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 787851D2764D9F27609599721CFE6F56 /* Support Files */ = { - isa = PBXGroup; - children = ( - FC25AC5141DFF5E47D0ED5CD65C13E0C /* ReactCommon.xcconfig */, - 6F93F67E29DC8474438C7E5E74185C98 /* ReactCommon-dummy.m */, - C2F3D95960D0D71F54725ED1041428E5 /* ReactCommon-prefix.pch */, - ); - name = "Support Files"; - path = "../../../ios/Pods/Target Support Files/ReactCommon"; - sourceTree = ""; - }; - 78F5A6413A9EFDDC67EEA56A685616EE /* Singleline */ = { - isa = PBXGroup; - children = ( - 01DEDC73B2276B48FA5701E10C022CD6 /* RCTSinglelineTextInputView.m */, - 6949E40905A2A8B925417BBB4E889279 /* RCTSinglelineTextInputViewManager.m */, - A295436D502F9E54E923CF53EF1093D1 /* RCTUITextField.m */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - 7B7C3EC9AC9EF56E64107E0F486603CC /* Pod */ = { - isa = PBXGroup; - children = ( - BA4625964CE26008FB4EE481D5068CC1 /* React-Core.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - 7C1D9BEB3673BF327886F19E7D925581 /* Support Files */ = { - isa = PBXGroup; - children = ( - B75B30AC91ECCF58EC3B478A45952D94 /* React-RCTActionSheet.xcconfig */, - A042396874B449715ED41EC8F243A08A /* React-RCTActionSheet-dummy.m */, - 3B320790F68335739EEE00F2DEEC427D /* React-RCTActionSheet-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTActionSheet"; - sourceTree = ""; - }; - 7E2313D086462B78ADE796271FC7796D /* React-jsiexecutor */ = { - isa = PBXGroup; - children = ( - A456078C3E5865145DBCD44ADF6BEC8C /* JSIExecutor.cpp */, - F262E8F3B59C3955F489C749732B30C2 /* JSIExecutor.h */, - 888388C41C5358481F4FA3213A0A4202 /* JSINativeModules.cpp */, - 7ED53615BB406EB0A939A384F5AA273A /* JSINativeModules.h */, - 334CBD1C1ABA1245D4B2AC4AB8F55F00 /* Pod */, - EE7134FAA5EFC1AAE62375336EC519AF /* Support Files */, - ); - name = "React-jsiexecutor"; - path = "../../node_modules/react-native/ReactCommon/jsiexecutor"; - sourceTree = ""; - }; - 7E6C03875BD6C646D1F56FE3F643EAF0 /* RCTImageHeaders */ = { - isa = PBXGroup; - children = ( - A2C86738C8FAC870C3AB0F7BD1032833 /* RCTAnimatedImage.h */, - FB3E4C611C685225176645252AC58CB4 /* RCTGIFImageDecoder.h */, - B5C36CD158A29DD76240EF90B32DE278 /* RCTImageBlurUtils.h */, - DBAE074FE3D9E4029F39DB8998C3B119 /* RCTImageCache.h */, - A028D474F9255F169047EACB6875B92B /* RCTImageDataDecoder.h */, - 5FC56136546816E648CE0572D1F72B46 /* RCTImageLoaderProtocol.h */, - 887324A581FBFBB59F9D0ED54FE816AC /* RCTImageShadowView.h */, - 23A1EAF9965D3D36E1A4759573B35702 /* RCTImageURLLoader.h */, - 29C06FD93613186ACCFA8FA44EB9924A /* RCTImageUtils.h */, - 5974228F17BECE82FA19022CEE9CF345 /* RCTImageView.h */, - 6E52589935392C671AE55E0FAF1AA194 /* RCTImageViewManager.h */, - 34E52B89E6F1B9352FE00C829BBDA184 /* RCTLocalAssetImageLoader.h */, - 9E90EA48CA1FB495759ED8E40E01ED04 /* RCTResizeMode.h */, - AEE62A4079BC2B9F273E23D013A8EA0A /* RCTUIImageViewAnimated.h */, - ); - name = RCTImageHeaders; - sourceTree = ""; - }; - 7FC66AA605FB6C50E77AA5C78093BC2B /* Nodes */ = { - isa = PBXGroup; - children = ( - 6A956906F2D2D436BF69EB870D19E374 /* RCTAdditionAnimatedNode.h */, - 8CF4F08A03A6844B5D424985E5655C8F /* RCTAnimatedNode.h */, - 7F32B511168604F89C5615144F74BE99 /* RCTDiffClampAnimatedNode.h */, - 69961E50E3FF9CD34AED7B5D42179506 /* RCTDivisionAnimatedNode.h */, - 4BC8560669F75B7D1C958E7D215699D0 /* RCTInterpolationAnimatedNode.h */, - 89AEF54DCA65E36DF689CF56A56B5484 /* RCTModuloAnimatedNode.h */, - A3090E4BFC52D9D68D287FB2A637D819 /* RCTMultiplicationAnimatedNode.h */, - D233FCB20BC2B6222473BD0E553123B0 /* RCTPropsAnimatedNode.h */, - F2702042AA830A67EAB0339CC661191A /* RCTStyleAnimatedNode.h */, - EC9636F8A6EAB9957634A88807D5E7C1 /* RCTSubtractionAnimatedNode.h */, - 147A40E954158342BA632620C3B406B0 /* RCTTrackingAnimatedNode.h */, - C728B0594F15F0889C3CEF0FC98442EC /* RCTTransformAnimatedNode.h */, - 3D5D425FD1C403307DD032B45FF400F1 /* RCTValueAnimatedNode.h */, - ); - name = Nodes; - path = Libraries/NativeAnimation/Nodes; - sourceTree = ""; - }; - 81BA25E5A5416FD97F73EB177CC4EC45 /* Support Files */ = { - isa = PBXGroup; - children = ( - 4E8349FA45346FE05BB7B1E1F11E3E74 /* React-RCTVibration.xcconfig */, - E11B968E8BA795477E95025AEF0DA963 /* React-RCTVibration-dummy.m */, - 1EA4F9BEB16D7B979907E8ECC4C0907D /* React-RCTVibration-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTVibration"; - sourceTree = ""; - }; - 81D0BED997CBFCEE7D3156174A5431DA /* React-RCTImage */ = { - isa = PBXGroup; - children = ( - 5EFDA71B7A33483309B188002282455F /* RCTAnimatedImage.m */, - 118C418922485EBF4F4746402DBC0EE8 /* RCTGIFImageDecoder.m */, - 12943BAEBDD20A8A231BC088AADE9E54 /* RCTImageBlurUtils.m */, - A180CF3F413DD7F4AC01ADECA08CEF49 /* RCTImageCache.m */, - C4197F6398A086CC3F296B2CC43A300A /* RCTImageShadowView.m */, - C227C9B03F6D2B827A3CCAF9C0F2BB96 /* RCTImageUtils.m */, - FE553C027FE496C8039C90D18D56E433 /* RCTImageView.m */, - 8846BB2477A1BBA6009046E0D35DBE96 /* RCTImageViewManager.m */, - B0850C46EB9FC3FDD83A4B6982848745 /* RCTLocalAssetImageLoader.m */, - 7B6C7F1A2539D3F0FEF83702BFEE27D8 /* RCTResizeMode.m */, - 3E93EC1D0E1FC037D0112B4A3CED4993 /* RCTUIImageViewAnimated.m */, - 4D98027CDA7571951817E7F0AA9CC050 /* Pod */, - D0B392AFDCA388571939398FC7D91D96 /* Support Files */, - ); - name = "React-RCTImage"; - path = "../../node_modules/react-native/Libraries/Image"; - sourceTree = ""; - }; - 82FC959DE8DFD00FCC3958C57A629596 /* Support Files */ = { - isa = PBXGroup; - children = ( - 47CC09E710CCEC47007E4E0BA3568061 /* Yoga.xcconfig */, - AE3051FC52ED46764910CFB936F2E59F /* Yoga-dummy.m */, - 0B8704B856FEA13CA5D1B12BD53115AA /* Yoga-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/Yoga"; - sourceTree = ""; - }; - 852C7D1C69442E3016E980CAB8E43C23 /* Multiline */ = { - isa = PBXGroup; - children = ( - 43C8BC0D6BB8E7FCD22F83610E0CD920 /* RCTMultilineTextInputView.h */, - 51163693ECA9DDB998E3F22BEFF2BD4A /* RCTMultilineTextInputViewManager.h */, - C1F70FDAC9A15FC536022FCB66A9378A /* RCTUITextView.h */, - ); - name = Multiline; - path = Multiline; - sourceTree = ""; - }; - 85DF9F8CCE42B0A8D397B34CF20013CE /* Support Files */ = { - isa = PBXGroup; - children = ( - 641C5C9EE49F9599A0616245D9F64668 /* React-Core.xcconfig */, - 1E92EDE32655DEA85F2A30EDBA0E2797 /* React-Core-dummy.m */, - AB6D11B384DA10147CDDF2E9275DA49D /* React-Core-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/React-Core"; - sourceTree = ""; - }; - 886099C08F7C716BB6C0F3D6124AA77E /* Views */ = { - isa = PBXGroup; - children = ( - EB4FE8EFCB65F9AD3772AEA242CD6725 /* RCTActivityIndicatorView.h */, - 0A3D0EE3305EA11ABDCB7F6855CA4AF9 /* RCTActivityIndicatorView.m */, - 2E5F17B6676599A55BCE5F689F35D198 /* RCTActivityIndicatorViewManager.h */, - F81965D089149ED2F7675B6A59EE14E7 /* RCTActivityIndicatorViewManager.m */, - 47C9F058625A6B2267A03E5B26B25FC1 /* RCTAnimationType.h */, - BA2FD71363213733EEF44111F2620EDC /* RCTAutoInsetsProtocol.h */, - E05509899F6809B068C28D44DA6DBC6D /* RCTBorderDrawing.h */, - CB594A1C136A93F653D4A3244DFA08EB /* RCTBorderDrawing.m */, - 61BF98CF122C2693B638D1FC09BFC19D /* RCTBorderStyle.h */, - 3479C80AB1EA9438B5BEFD90886C8684 /* RCTComponent.h */, - 288CB373883875AD5E355D4E4D017072 /* RCTComponentData.h */, - B3841E4820B4836849047CAF5C7839E8 /* RCTComponentData.m */, - 8D4A6F8A45C9258AACCA74565403D5B8 /* RCTConvert+CoreLocation.h */, - A82BA0A221562386814382E817B450DF /* RCTConvert+CoreLocation.m */, - 59C5475642BD3CBDEE068F579A497A86 /* RCTConvert+Transform.h */, - EBF009A08E7894DE82843DD0F1C994F0 /* RCTConvert+Transform.m */, - 3E7CDF1F130D18D2748C7B25A5BA934B /* RCTDatePicker.h */, - C954DF3D8E96AC4E949B25D6FE4A2022 /* RCTDatePicker.m */, - E0B1E9E83E3F23C9645D081598C13DAF /* RCTDatePickerManager.h */, - 10E8799B026295A0C406ABEA5A5DABC8 /* RCTDatePickerManager.m */, - 79A4C0C3F8FB8D246DE56011F9CB611E /* RCTFont.h */, - B39064E2DA9A997F5A77CE4930128118 /* RCTFont.mm */, - 0FD26BB41525D0A741221F35256655CC /* RCTLayout.h */, - 441858F66C73E35C7DAE382D8A9BB5D7 /* RCTLayout.m */, - 236FA90408A2F638F23910BDF2879339 /* RCTMaskedView.h */, - 0EC42832E04430874BA6AB53C1754083 /* RCTMaskedView.m */, - 2D289171A24CC44257995B60CB10CA4A /* RCTMaskedViewManager.h */, - E90A72F8731FB658BD8A3B5F37D16342 /* RCTMaskedViewManager.m */, - B0CE202A6B5F205CE188F4D0AE679A90 /* RCTModalHostView.h */, - 14207BD06B65D08BB20C5F4BD54D07A9 /* RCTModalHostView.m */, - 3F81A22A2D215848239E067650FE646A /* RCTModalHostViewController.h */, - 8BD9DEBA4F7947E1736D19328F3A5BAC /* RCTModalHostViewController.m */, - 95B30E73F061724D233D78D1DFAA0B86 /* RCTModalHostViewManager.h */, - B6031950041AD3B5C92A11D4C964D2FF /* RCTModalHostViewManager.m */, - CCE08E7B33FAE85FB15D11AAC4A96748 /* RCTModalManager.h */, - 93435D1558BE7063E455377CBA45032C /* RCTModalManager.m */, - 82E8830F3920D135A25C07520071F270 /* RCTPicker.h */, - 8778FB8290FDF8708355090B05FB4A67 /* RCTPicker.m */, - 494338768894718954CC51B2F1EA1F74 /* RCTPickerManager.h */, - C10D1B77107E8C1DD0A926E49FBD5257 /* RCTPickerManager.m */, - E996AB713DE9D81A81651BF7FED71816 /* RCTPointerEvents.h */, - A8EABFA83161D21E2A5BBB45E36E51F1 /* RCTProgressViewManager.h */, - 6EA51B81BB608A3DD581C07DF21C757B /* RCTProgressViewManager.m */, - 50A377BED6F492018D5F66CC43B1ED01 /* RCTRefreshControl.h */, - E8D613A48051BE0729DE29C815AF83F1 /* RCTRefreshControl.m */, - A029B4E21A6E4DC708748040C589B913 /* RCTRefreshControlManager.h */, - D3B71655F4F0DA696B72981FDDDB3A20 /* RCTRefreshControlManager.m */, - 762DA011AADEA77F32DFBEB6CBB1B4F3 /* RCTRootShadowView.h */, - 4744243BE5D5DD52E516C8B3BB09ABF1 /* RCTRootShadowView.m */, - F5A497153276E861872CBBF552BDEC71 /* RCTSegmentedControl.h */, - 013032C397C99E4423C2A4152EA6B502 /* RCTSegmentedControl.m */, - C72840CA71F1BB5682B0E3011293B846 /* RCTSegmentedControlManager.h */, - 102431F87017AA45A6B3DEEB8FA7ECA1 /* RCTSegmentedControlManager.m */, - A7FAB890B5846EF19252C32D02331253 /* RCTShadowView.h */, - AC5BE92CBD4C47B291ED6FA562DCF336 /* RCTShadowView.m */, - BF2E7EAAC36F5A460FCDE5433CDCB8B4 /* RCTShadowView+Internal.h */, - 768E288F54BFFA493AA402228B73295B /* RCTShadowView+Internal.m */, - 532D19D6A9B79D1CFB9A19AB3F138B7D /* RCTShadowView+Layout.h */, - C8E9C68D7949B40160F4628B761DAE59 /* RCTShadowView+Layout.m */, - 6449ABFF7CDAE0B823E4F4A2E19D1AC7 /* RCTSlider.h */, - 54455C6DE0B16A75284E4ABD5D199608 /* RCTSlider.m */, - 9E40EE1A5278AE6E5C8265B69AB04E5C /* RCTSliderManager.h */, - 7DD8E8AB8DF27D73EA050746C3E6CA29 /* RCTSliderManager.m */, - 17446EB4A9A89D53D52836B661BB3034 /* RCTSwitch.h */, - 3F1E3551FA78FD60F26B84D4DCE5C575 /* RCTSwitch.m */, - 0C28C37C32F3DD498FB9444A1822907F /* RCTSwitchManager.h */, - DB4AA889CC5532C22C21C50D77842C79 /* RCTSwitchManager.m */, - B8F1DC1196CB63EA896A7D3E81F978B2 /* RCTTextDecorationLineType.h */, - CA8CB9EE0648A051E6B6CB94644E1E7C /* RCTView.h */, - A7BB41D8950B8051E64A4119C7105DD5 /* RCTView.m */, - FEDAB4DAFF9BB2E2800A7DEDF81F7051 /* RCTViewManager.h */, - 323D8F4BE8AFDFAFB59541AD6B134213 /* RCTViewManager.m */, - 31C140428FBEA3341534E2A3535A999E /* RCTWrapperViewController.h */, - 86DEC2B868D6FDB87B390506ADA98D92 /* RCTWrapperViewController.m */, - 7CBC8D1C2E3D734FC5309FA5DABA90D3 /* UIView+Private.h */, - E392DE667EAFEFAF53A54FD59D82D315 /* UIView+React.h */, - AC5967DF1BC1DC2F25A0D1D5F627DC31 /* UIView+React.m */, - 172B8F383787A0C37582C011EEED99D7 /* SafeAreaView */, - B6E0D4C5D43FDB73279CDA37BF63ED5D /* ScrollView */, - ); - name = Views; - path = React/Views; - sourceTree = ""; - }; - 8B4CFE4507D7CB7AEE8AA2669E0D1EA8 /* Utils */ = { - isa = PBXGroup; - children = ( - CB77E88459E541B7EBFFD50C142C6A0C /* UIColor+RNNUtils.h */, - 6563BDABC54B2612589EEE169A19D33D /* UIColor+RNNUtils.m */, - F2C923818661C8FAB26028C501C6DFC1 /* UITabBarController+RNNUtils.h */, - AA87E2613B9530738123B9B11FDA406D /* UITabBarController+RNNUtils.m */, - 5D57971A1A27B70660D9061B3DAB3B01 /* UIView+Utils.h */, - 4A510B5BF0D7642E02791F87F943CCD1 /* UIView+Utils.m */, - F063979F6CF75179BE554F3EBE7F765C /* UIViewController+Utils.h */, - 81BD779E8816DA47BB6E335914EDD5FE /* UIViewController+Utils.m */, - ); - name = Utils; - path = lib/ios/Utils; - sourceTree = ""; - }; - 8ECAB3953B8D76E43279BE2D9BB4A96F /* React-jsi */ = { - isa = PBXGroup; - children = ( - 5F9B55349216C1E05D17ABE44324E3F3 /* JSCRuntime.cpp */, - CA22F3159CEB5386A6C82CDA18FC432C /* JSCRuntime.h */, - F7A0CB61EE44E1DB147B7B1BDAC5218E /* jsi */, - 628A82B5713B32D32FCEB9E40D245E06 /* Pod */, - F6033D5C22C93A956CF238DE8CD97E3E /* Support Files */, - ); - name = "React-jsi"; - path = "../../node_modules/react-native/ReactCommon/jsi"; - sourceTree = ""; - }; - 908073281088DF1F66AE977AA016916D /* Support Files */ = { - isa = PBXGroup; - children = ( - 37F6296183ED22523A7C92398BCCF486 /* React-RCTText.xcconfig */, - 8D55AE1C4304FCFCA2250C5CCF578F1C /* React-RCTText-dummy.m */, - 1B2D2DD710BA8FD6DADCE3B0EBE65438 /* React-RCTText-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTText"; - sourceTree = ""; - }; - 94484D4912C53E32181F84B111B188F8 /* ReactNativeNavigation */ = { - isa = PBXGroup; - children = ( - 9A88301B90E2EDA1BEFA309AEB09F093 /* Bool.h */, - 1D545353038E6AB4F01A6133FABC1AB9 /* Bool.m */, - D29887FC2DE221F4566B302019341437 /* BoolParser.h */, - 521300362C6D2BAF2B6B60B9B06F4B7B /* BoolParser.m */, - E7BCE3DC03B8C5722207937419DBA697 /* Color.h */, - 634270CBEB618DB683EF7A470CCCBCA3 /* Color.m */, - 64D65603B0974AB0A5FFE89C9C2DC51F /* ColorParser.h */, - E2EABE336903FA5AB1371999AA7401E0 /* ColorParser.m */, - 2D8976AF1ECE625CFCAD95A0DD1C9F75 /* Constants.h */, - 9FF0782503A736A7B3092F94AB518B77 /* Constants.m */, - 8FC7C3CBD3D74E15AA130B0610A26626 /* Dictionary.h */, - 39C82CB2C65B23E3AA7CF0FB8EE4F751 /* Dictionary.m */, - 523A0FB3932F7530DE6C58BEC3B53C25 /* DictionaryParser.h */, - C5BCF33FA964711FA6C6A7A8944B6F68 /* DictionaryParser.m */, - 0FFF79D1298B1B7B436444103DA68A9D /* DotIndicatorOptions.h */, - 4CB67513BB58E0283ABF083343165629 /* DotIndicatorOptions.m */, - E7079B32F8A394862F30C27024A1A451 /* DotIndicatorParser.h */, - DDC7E009030ACF17F0978C4D1167ABDF /* DotIndicatorParser.m */, - 55B917ADEDB2467F69934A63A0EA1723 /* Double.h */, - 982462EB908FB9EB92D2FFC16EA51758 /* Double.m */, - 9B56B39BECDC0C9A4A857E89A10E010C /* DoubleParser.h */, - E36A1DA0906C7FFF7615C5814CFCEF7F /* DoubleParser.m */, - 5D0658FB95679C37795EA06854E64B58 /* HMSegmentedControl.h */, - 0EEDE17E0402B0C783BF8ED5927B5CA6 /* HMSegmentedControl.m */, - 174F9EC418031FA9FC1F500508CE8B5F /* Image.h */, - C084A4A1B5B5BDA13063B65656533B18 /* Image.m */, - 1042BAF4E7777BC74F33931F18427033 /* ImageParser.h */, - 2EEDCD48B4DBBCDCD50B81FB1B6C05AA /* ImageParser.m */, - 04A97B7B3E345759D8E0505282956B25 /* InteractivePopGestureDelegate.h */, - 0A1F4AEB486754B02D536DE2911206ED /* InteractivePopGestureDelegate.m */, - CA70260C8C3F951204F0867BC94DDED0 /* IntNumber.h */, - B7ED0C2019912DC8A14DAB54BDDB66B1 /* IntNumber.m */, - 7DCAC5A67D1922CFBB12EB1F1850D48D /* IntNumberParser.h */, - 473C1FFE9D70CB260FDBA993B1BD6298 /* IntNumberParser.m */, - 9354C46598EE367BA1F3BF631F7CF6CD /* NoColor.h */, - 9A73F75D8F4704EA202665B4EC5F5CEF /* NoColor.m */, - 50343087FFDAAAFCCC730F1BC14B7943 /* NullBool.h */, - 3D40FA84E1F55BBEE799A5AD6492A622 /* NullBool.m */, - D7AA4419F67DE21415BE8040A2783A27 /* NullColor.h */, - F096FE44D32A29895D250F973CE14BB7 /* NullColor.m */, - F12215003A0C3F0BC3EE156EEB07B92F /* NullDictionary.h */, - E22377BFCEFE6555E4FF3A0E58D217FB /* NullDictionary.m */, - 8F5D5CF3C3240DC85D9D4B0FAD84E3E5 /* NullDouble.h */, - 0C41BB6F4082F7C4239093581155CD37 /* NullDouble.m */, - 1A2BD766CB83AE71D9CCFB4B4BE155DA /* NullImage.h */, - 666FB1E13EE615C8503CD7CE43A40B58 /* NullImage.m */, - 63A5686EE92F85311D5845A729500ED3 /* NullIntNumber.h */, - 1D576934659F3DE1D7D753258B914686 /* NullIntNumber.m */, - 97E085E4B0C1156BA4247F9D7FFE4DE5 /* NullNumber.h */, - BFD5B4829B7922A757678722426CFC4C /* NullNumber.m */, - 7873028784D048FC29F696FD8BB59F98 /* NullText.h */, - B22F688B397D75074ECC4E925A75F04D /* NullText.m */, - 40287A8CFB97DAEC25E9492F728C1261 /* Number.h */, - D96946FFD03D744AFEE87F1802C62847 /* Number.m */, - B29B1E3D9C35BE2D808678F2B5501BFA /* NumberParser.h */, - D0CF3BE4A070A2916D7390E915D0D64E /* NumberParser.m */, - 2F71B2DE73283611496A7DCFDA947796 /* Param.h */, - 33DF93CF771829D2D0F51A3B10481ADD /* Param.m */, - C6779BC87B31A2A94F4C39AB36851A90 /* RCTConvert+Modal.h */, - C47EA9425827495D437AC3FC89D67DB5 /* RCTConvert+SideMenuOpenGestureMode.h */, - 62508F7F737ECDD4B01F5B4D220124A8 /* RCTConvert+UIBarButtonSystemItem.h */, - E60C2334D474872EB1C09858BFABEE56 /* RCTConvert+UIBarButtonSystemItem.m */, - 15CB1896B4B1DBBBE3DB54A43555ED64 /* RCTConvert+UIFontWeight.h */, - 19F01492934189897F6E84F97052B85C /* RCTHelpers.h */, - ADE615100BF35DB9CACFF64B8273AD9D /* RCTHelpers.m */, - 28412884AB13110E6724BC73C502A425 /* ReactNativeNavigation.h */, - 70841852F39BED67F1BCD12D8D6AECA3 /* ReactNativeNavigation.m */, - 876A985D1A4B400C73D57FDC2AD64BCB /* RNNAnimatedView.h */, - 68131146E46039D7D324F5B0935479FC /* RNNAnimatedView.m */, - A8136AE85FA25415720AD3B8FE6F2D87 /* RNNAnimationConfigurationOptions.h */, - 83A6FB2E0990CAE8EC487AF8C46E510C /* RNNAnimationConfigurationOptions.m */, - 8319950D742594500982747AE2C8E0A2 /* RNNAnimationsOptions.h */, - 6E494FC05FA88CA6A184878F66F3183A /* RNNAnimationsOptions.m */, - 3694633CEE484769C00F427DA6EEAA86 /* RNNAnimationsTransitionDelegate.h */, - 553782007A784206D8DD0D0CC5EA1203 /* RNNAnimationsTransitionDelegate.m */, - 1AD7270FCAC441614995F9292BD17330 /* RNNAnimator.h */, - 1DEDC900F97C9CE330EA16DC79BCC994 /* RNNAnimator.m */, - 2991DDD0EAEFDE1A9D056D50AF908287 /* RNNBackButtonOptions.h */, - 4C0C8B130D8BFBEF2446A37836267E92 /* RNNBackButtonOptions.m */, - 31C4F3DC28A48898B96135FA70B134CD /* RNNBackgroundOptions.h */, - 33D259157C3592B98A799AED1A67F633 /* RNNBackgroundOptions.m */, - A1A0603E67156BF02A3BE3D6542BD981 /* RNNBasePresenter.h */, - 73163FA6594E465CD60D2E57079B072E /* RNNBasePresenter.m */, - E6BBD6E4DA7EAE081782B600CAD9DDDC /* RNNBottomTabOptions.h */, - 3DC2110FC2512DF3D44DABFB93FB1105 /* RNNBottomTabOptions.m */, - 09211726727067F6A7973B76E936B6D1 /* RNNBottomTabsController.h */, - EE0588F0CF5CF783A7BD12C4D41E1CAE /* RNNBottomTabsController.m */, - AD82FD75E2A81BBE54672EAB8C6BFCD2 /* RNNBottomTabsOptions.h */, - F4EC80CF38B588C71E446A14DA9AEBAB /* RNNBottomTabsOptions.m */, - 1CB5F31C63C2A9C8191AC1D6F713A9BD /* RNNBottomTabsPresenter.h */, - C12A6FCB61883BDB732D34EDE3BF2692 /* RNNBottomTabsPresenter.m */, - 0012B632F7C38F04BA51052DAF272E16 /* RNNBridgeManager.h */, - 9922984F5B3982A8303CA9C5FE8A77DD /* RNNBridgeManager.m */, - F4904845AA14A593332F7AC37C0C3A24 /* RNNBridgeManagerDelegate.h */, - 298565D12E8C4F1315A01E5E1C9440F9 /* RNNBridgeModule.h */, - 68B45085B541B6D667C5AA8255025B1D /* RNNBridgeModule.m */, - EB60D70CB48AB3257E82E10DA899A445 /* RNNButtonOptions.h */, - 50374B22222677A355CC6586DB38D49C /* RNNButtonOptions.m */, - 4A5D46F13321CE337D6D7888B5DA5FC2 /* RNNCommandsHandler.h */, - E8B8097F70B6A4B17210AC4D1F7E3DAD /* RNNCommandsHandler.m */, - 75471EBACFD59D120F506EE093A8F3D9 /* RNNComponentOptions.h */, - 87C5DA0A964DB88EBBC767D52BCEDAB6 /* RNNComponentOptions.m */, - 347D2BEEC5741E43707740A69EBE384D /* RNNComponentPresenter.h */, - 4411504883632D23E9581C80DD2EDBE7 /* RNNComponentPresenter.m */, - 93DFEF934BAB107B39B8269D27442911 /* RNNComponentViewController.h */, - 2A7E10BABCBE8217916F653FA6C634F0 /* RNNComponentViewController.m */, - 2147A588F879A27B6CEE5009C7CEAC76 /* RNNComponentViewCreator.h */, - 3A26037510C4ADE50BB60703B1C836ED /* RNNControllerFactory.h */, - FCCAC166BDCEFBACA0AA3E8561B2066D /* RNNControllerFactory.m */, - 68D5945F8F07ABA38A2147442AB48156 /* RNNCustomTitleView.h */, - 99F07AB8A5E67027F423838C94045AB7 /* RNNCustomTitleView.m */, - 1FD6AA9F1A86EC3F545AC4A8E10A2D8D /* RNNCustomViewController.h */, - 26913D26D061FDF9BA349D3ABE1C3C1E /* RNNCustomViewController.m */, - 60C265A92994A15886CFD5F84077962F /* RNNDefaultOptionsHelper.h */, - 053CFF1DC4F3B34EB8613781629C2A0E /* RNNDefaultOptionsHelper.m */, - BDE16DB92486C28D1271077E9FF787B7 /* RNNDotIndicatorPresenter.h */, - 8CD3DA5D379B17AE5CBBA0CB02C24728 /* RNNDotIndicatorPresenter.m */, - 05C76386F45DB14E4DF13A9C080AA918 /* RNNElement.h */, - 0EC6289878D36D031F21269DC68B9B77 /* RNNElement.m */, - 02DBCCC741C58F78D0A771000A5F49F8 /* RNNElementFinder.h */, - 40B8E96BF8C364372DC5C739E7E208F6 /* RNNElementFinder.m */, - D56B9820A42AD428400281647287F981 /* RNNElementTransitionOptions.h */, - AAEB8BCDAF6D516091ACCD64E1529C3D /* RNNElementTransitionOptions.m */, - 5EA89DFA27ABD1CB9297923AFD8283ED /* RNNElementView.h */, - F38298D43E7D573B3EF14A9B0329B165 /* RNNElementView.m */, - 624C132CA4F7794811C660B49A9DBEA6 /* RNNErrorHandler.h */, - 9A923AAE78CDB5BEC9ACE072850528D7 /* RNNErrorHandler.m */, - 950E55DD912B2A3CAF0AAFAE54BFEFFA /* RNNEventEmitter.h */, - 01C87FDC612010D9FD51B67F2228CF7B /* RNNEventEmitter.m */, - 33093CB24CABE27F07D5F89D770811AC /* RNNExternalComponentStore.h */, - E55075C1F807031264ECFE696505C406 /* RNNExternalComponentStore.m */, - D58231930B03B56441B9AC0814C006E8 /* RNNFontAttributesCreator.h */, - 514AC6E19240AB3F92AD30FCFEA06CF4 /* RNNFontAttributesCreator.m */, - 05D78E47A2C45F9F4DF087E94AFF8459 /* RNNInsetsOptions.h */, - 7C9F0D2CE4DAEA65C220D25343B211A4 /* RNNInsetsOptions.m */, - 5425F9F3A78CB2B4016FF2F087A7D62E /* RNNInteractivePopAnimator.h */, - B699B3B25922C8A8990E4C6E4B629D68 /* RNNInteractivePopAnimator.m */, - FF2707CB874C69785F42D90F60D3F61F /* RNNLargeTitleOptions.h */, - 4E2997B69A3010805EEC56AE8D58BEF0 /* RNNLargeTitleOptions.m */, - EE1C7D0E297A47F198360A65DDBE250E /* RNNLayoutInfo.h */, - EEB06BB9D563A1A3623900B7FF127F8D /* RNNLayoutInfo.m */, - 0C84FA69C99D3BD6677E7FC69AF6EA91 /* RNNLayoutManager.h */, - 8053D3DEED3FA3FF5426CDA9F50A216C /* RNNLayoutManager.m */, - B1CBCBC4E5B9005E0C1082527F2E9537 /* RNNLayoutNode.h */, - DC5EB6885B4D960576C31E1DF1A0B569 /* RNNLayoutNode.m */, - 45F99DA070B5DB0606303FFD995E6806 /* RNNLayoutOptions.h */, - D24985BEE473C08F7BA5E134665AE957 /* RNNLayoutOptions.m */, - F4BC78E5962164C4FAF4739F2DA6D776 /* RNNLayoutProtocol.h */, - F3CD491E69BF7AD280D642F418C75FB1 /* RNNLeafProtocol.h */, - CFF83EABCD5B95AD3477110BAEA360F8 /* RNNModalManager.h */, - AB5CF1B022082DDAC0BCC23D71022AA3 /* RNNModalManager.m */, - D18C32E7320535B2F7D2DB45ED715B50 /* RNNNavigationButtons.h */, - 81F426974F4E1BE8502CD0F9583A0839 /* RNNNavigationButtons.m */, - 15A6369F5DFDD59B8B43B205ECCD9B84 /* RNNNavigationOptions.h */, - 233F95ED440531073441373EBA40D6B7 /* RNNNavigationOptions.m */, - ABFC015187A9D21E74EB5C9583FB5802 /* RNNNavigationStackManager.h */, - CC78DA59E970F6E16B1325A8E4D40A40 /* RNNNavigationStackManager.m */, - 15684C9888BF0AD094E1092E6107054B /* RNNOptions.h */, - 4B606B0F67F33623980C3AF8D4584A1B /* RNNOptions.m */, - 5A4647EAC335697F917B30789997B624 /* RNNOverlayManager.h */, - 246D273DB9A4C7034D1C640260F40870 /* RNNOverlayManager.m */, - 5D6BAB40C211C277619B933ED34DC504 /* RNNOverlayOptions.h */, - EAB87BA0B6F824D806B4A18F40DE390C /* RNNOverlayOptions.m */, - 6759DEF127D8E02EFB2DEC5B8D147C60 /* RNNOverlayWindow.h */, - 1AA3A08CEFD1A450960EC11E21848854 /* RNNOverlayWindow.m */, - B4A68CE4EE215D7CAF524BD53A2A0CC3 /* RNNPreviewOptions.h */, - F8FC928BA88DD64AC1991C1296F4A881 /* RNNPreviewOptions.m */, - DE6E720E32DD28ED3B7ABD0B8C8CFA02 /* RNNPushAnimation.h */, - CFD3FAAC6C07F1505AF8FFFB9AB501C4 /* RNNPushAnimation.m */, - 18AEFE52CDF6CD1FC9B27F89E97DFF09 /* RNNReactComponentRegistry.h */, - 2EDD080A80620681365654753CE9BEB1 /* RNNReactComponentRegistry.m */, - 264BCC78F44E8794F6C8EE37A22382B7 /* RNNReactRootViewCreator.h */, - 5995ECE62A806083435782937BD351DF /* RNNReactRootViewCreator.m */, - 56D44FF7988C658A7769CA316774E639 /* RNNReactView.h */, - 80140684D6A61BEF1E352A2B445510FC /* RNNReactView.m */, - C7D232974AF4A2D80B66EEFD60F5FEE7 /* RNNScreenTransition.h */, - 682EA31449A74221A459882E11285198 /* RNNScreenTransition.m */, - 923191235442827557D8B3B153CCABB7 /* RNNSegmentedControl.h */, - 34923C5046743D939EF7B40B18E97241 /* RNNSegmentedControl.m */, - D39008DDFF75881943582DACC28D30CA /* RNNSharedElementAnimationOptions.h */, - 1037EE58BC7AC6FD8FF846805BE34DDC /* RNNSharedElementAnimationOptions.m */, - 7CB5ABB2625FA4E548A9E2FE150D9EE1 /* RNNSideMenuChildVC.h */, - 88F1EB33EE3EFA8766E883F361EF8DE8 /* RNNSideMenuChildVC.m */, - 2EA56FABCA70B92659AFDFF499D6B6A1 /* RNNSideMenuController.h */, - 569F3E07E36C4D16D09FAD9F83C3ED5B /* RNNSideMenuController.m */, - E1BA9A6104418CC9988A9F456539AA4E /* RNNSideMenuOptions.h */, - 33FDCF928A30E0B020AC16951C95EBC0 /* RNNSideMenuOptions.m */, - CA685D5A8B1303A8E9CD72CB916AC673 /* RNNSideMenuPresenter.h */, - A91B3555FA2641F9143CFD8500CF4336 /* RNNSideMenuPresenter.m */, - 5906ECED277A6042AA14629C87BA165D /* RNNSideMenuSideOptions.h */, - 6352E8AC4AF2F206CA7715B638AB2F9E /* RNNSideMenuSideOptions.m */, - 6CDD487853885DB3F8B1D545C06BBCE5 /* RNNSplashScreen.h */, - 7E2E72766F8E2B270DE2EC8E9556CE18 /* RNNSplashScreen.m */, - 5E4E8CE518664A208C9DABE65DD0C282 /* RNNSplitViewController.h */, - 56DA5EC492C67F16EB91E3CEE99A0182 /* RNNSplitViewController.m */, - F43EF7F8B678380686B13F2E4054DF87 /* RNNSplitViewControllerPresenter.h */, - 5B85AA2245996223EC84EE69A80D1BEC /* RNNSplitViewControllerPresenter.m */, - 8B17FBE158393912112CB23A7A2AB163 /* RNNSplitViewOptions.h */, - B8A03F8871AE8F3B1A27125414A7FAF3 /* RNNSplitViewOptions.m */, - 418AED58EBD377DF3F2157A1F166CB5F /* RNNStackController.h */, - 2241D4EA3D89CCB7B10756D42C1C3290 /* RNNStackController.m */, - A69C3F0FC2AC55D978A0E91BBD7F29D7 /* RNNStackPresenter.h */, - 9597A17212FCE2861BDDB702A042D1C0 /* RNNStackPresenter.m */, - DEE5B538CB6876F865D951DB00ED5633 /* RNNStatusBarOptions.h */, - BE9621AAB3A28DF807AA0D070F8BA21C /* RNNStatusBarOptions.m */, - 88BC30E8D3EFF1C707E42C410A53202A /* RNNSubtitleOptions.h */, - 57C888C33257238115BECD16ADB79B70 /* RNNSubtitleOptions.m */, - 34BE0A1A3DA4BAE8F653655664EF68EA /* RNNSwizzles.h */, - 3E31EAEC40703AF4F67A242E00D3FAD8 /* RNNSwizzles.m */, - DBE7313D77E6244CEB86560D04AF8ECE /* RNNTabBarItemCreator.h */, - 8AB707CD04C354850F9E1E18538774CE /* RNNTabBarItemCreator.m */, - 87DFF1BBC1BB8BFFE43733E8652B0E52 /* RNNTitleOptions.h */, - BD69F3BBBB135EC56F29FD49C2138AD8 /* RNNTitleOptions.m */, - B9B193261C51823A4001C51A46721646 /* RNNTitleViewHelper.h */, - DF5D8CCDEC78962FF6CCFA096A633BCA /* RNNTitleViewHelper.m */, - E0E4E614C43C58D849FF2AD772F6F1D2 /* RNNTopBarOptions.h */, - E1CC2E3FD6015F50B6D441EFFF8B6188 /* RNNTopBarOptions.m */, - B9B56722F346846FFBEC7A94B5B891E3 /* RNNTopTabOptions.h */, - 9123B9771888D66F2B7C9BF85D5A6CD3 /* RNNTopTabOptions.m */, - 576C0CACF6A9FB0D9AE650A5709B6E8C /* RNNTopTabsOptions.h */, - 54C0DBC3BF7A8D96632DFD8035872B17 /* RNNTopTabsOptions.m */, - 2ADEDC3FA5544EFC81F84B22C6B243AA /* RNNTopTabsViewController.h */, - 09BCF8555612025718BFAC1053E96B74 /* RNNTopTabsViewController.m */, - 39402DF3D3A5ABFDAE3E588A72AC2B20 /* RNNTransition.h */, - F634691499E4B031851E00D5D45F3D03 /* RNNTransition.m */, - CCE98D777DF8C4FD667F174C22029BEF /* RNNTransitionStateHolder.h */, - 9422A0CFFEEDA369378826897E7E3F33 /* RNNTransitionStateHolder.m */, - 24CFBFA9E9F86A2F9E95DD2ECEC9067D /* RNNUIBarButtonItem.h */, - 7C43630BD4053C637F032896E2A8F8DB /* RNNUIBarButtonItem.m */, - 68EEE9B2163313B33F21F3AC19511331 /* RNNUtils.h */, - 63D3474FD84AC36AFFEDFBB30878605C /* RNNUtils.m */, - CFDC14AC300FC35151E359B1385607F7 /* RNNViewLocation.h */, - ACA4F6AF1D40C02B99CDEB3C16CB5738 /* RNNViewLocation.m */, - 8B6DB3A98CDABF0FEB0099759A780F3A /* SideMenuOpenGestureModeParser.h */, - 9E3305379C933C2E9D750F8A93845A51 /* SideMenuOpenGestureModeParser.m */, - 910661C3AAE0212AE349CAF265F9CD65 /* SideMenuOpenMode.h */, - 6FE8788DBB79180DDF30C335192467CB /* SideMenuOpenMode.m */, - 42321FA50BCB764483F9CD4995B8F677 /* Text.h */, - 925C366087BC780B691035EA5B5A7818 /* Text.m */, - 6B2EBDC81BFAEBA9919550FB7A3CB081 /* TextParser.h */, - 65BFF7C955710CC4E5FDDE46A3897ACC /* TextParser.m */, - 45968CC601129A2E129AA23EB9BF4520 /* UIImage+insets.h */, - 3E8B91A7F0DCF21522059B65F8A69ED2 /* UIImage+insets.m */, - BE918DF2A718D184D55C482385581A03 /* UIImage+tint.h */, - C8ADFB973B4F5A810A75F1763F35D168 /* UIImage+tint.m */, - B0EB53DE323BAF40BF28F0EDACE64668 /* UINavigationController+RNNOptions.h */, - 8AF166160353D2DAAE40C5FAFE5B6690 /* UINavigationController+RNNOptions.m */, - E9A4B21CEA80E2A73454540BDED38848 /* UISplitViewController+RNNOptions.h */, - 3DF2F1F2282D1EF242CAD4B28AD85615 /* UISplitViewController+RNNOptions.m */, - 2056F0CFF16984D089EA55BECC7405E0 /* UITabBarController+RNNOptions.h */, - 88DA73FA2AD805239382F786743EA9E2 /* UITabBarController+RNNOptions.m */, - EA1A7DEA39461C26BDC554504F98A16B /* UIViewController+LayoutProtocol.h */, - 450A0CF5671584834814C9B7901CC63D /* UIViewController+LayoutProtocol.m */, - 7F0AFA67C4067E53F58DA1811422C36A /* UIViewController+RNNOptions.h */, - 441F321EC5D7B2A778CCC7F95E18504D /* UIViewController+RNNOptions.m */, - CDABC9C31A0B1BD65CFF9907EB28095E /* UIViewController+SideMenuController.h */, - B63B709F57AEC104C180E2655C918B14 /* UIViewController+SideMenuController.m */, - 4ECD6724B545EC0264B4E063E6CCD25D /* VICMAImageView.h */, - AC9137FA693D24F7BC2F8771EFB0110A /* VICMAImageView.m */, - 630C1ABA44BBA41E4DD059A491868934 /* Pod */, - 99670FF82A8D1247879C19C134D9EEE9 /* RNNSideMenu */, - CAC8BEC22E58AF93120E2F26807891D8 /* Support Files */, - 8B4CFE4507D7CB7AEE8AA2669E0D1EA8 /* Utils */, - ); - name = ReactNativeNavigation; - path = "../../node_modules/react-native-navigation"; - sourceTree = ""; - }; - 9493D647FB9BA8018DA3A0C38A587240 /* Inspector */ = { - isa = PBXGroup; - children = ( - 1B868DEA8B9640C1A5A895EF4E1CA679 /* RCTInspector.h */, - CDDC4AA8F140B686EA50E3D1DCCA0764 /* RCTInspector.mm */, - 9ED7B438AA331FBA672301E40828CA56 /* RCTInspectorPackagerConnection.h */, - 43B1E55981AA02355DC849C7109F1FEB /* RCTInspectorPackagerConnection.m */, - ); - name = Inspector; - path = React/Inspector; - sourceTree = ""; - }; - 95D3464091F3D8E96D15996584EFC990 /* Support Files */ = { - isa = PBXGroup; - children = ( - 995C942B2254716E1D2BD0E7F78FE98F /* React-RCTBlob.xcconfig */, - 116DE783C348A71AB5605FEF29D49471 /* React-RCTBlob-dummy.m */, - D161AC749DED7DADC482B15125FA45AC /* React-RCTBlob-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTBlob"; - sourceTree = ""; - }; - 97B7F9C2B69DC8A7A448807DB2F624F5 /* React-Core */ = { - isa = PBXGroup; - children = ( - D6746DF340FDD5394841B94CFD28AE2B /* CoreModulesHeaders */, - B568C2C1D1ECC29663F36337ECDB7E7F /* Default */, - 08194D213ACCE286AEF22A2F1A3390DE /* DevSupport */, - 7B7C3EC9AC9EF56E64107E0F486603CC /* Pod */, - D0F67F8381CFCF22F2D9DC8E1B74DE14 /* RCTActionSheetHeaders */, - 102ED1B57E48F5187161E717167E221A /* RCTAnimationHeaders */, - 517DF0E574E74A27D8CDD022EAD3D7C6 /* RCTBlobHeaders */, - 7E6C03875BD6C646D1F56FE3F643EAF0 /* RCTImageHeaders */, - C9F55D0516F0C1712C153791C062C966 /* RCTLinkingHeaders */, - C34EBBF3A45C9E13246B1A9776DF1BAD /* RCTNetworkHeaders */, - AEE7A8C7E6C3C88687909B671DAE6D03 /* RCTSettingsHeaders */, - 456713168D515853182FC8930AA773F0 /* RCTTextHeaders */, - 066D225111F5094AC1D1F9F58042E6F8 /* RCTVibrationHeaders */, - E4FAABBF4F8AD402FB04660AE73C8AB5 /* RCTWebSocket */, - 85DF9F8CCE42B0A8D397B34CF20013CE /* Support Files */, - ); - name = "React-Core"; - path = "../../node_modules/react-native"; - sourceTree = ""; - }; - 99670FF82A8D1247879C19C134D9EEE9 /* RNNSideMenu */ = { - isa = PBXGroup; - children = ( - 6F7DAF3C32B3FC098E880C1522A56FB5 /* MMDrawerController */, - ); - name = RNNSideMenu; - path = lib/ios/RNNSideMenu; - sourceTree = ""; - }; - 9C0969118B82C109C968A5408C00996F /* CxxModule */ = { - isa = PBXGroup; - children = ( - 4C88A0A2E441EFBD9E7DBEE7E3592033 /* DispatchMessageQueueThread.h */, - EF18B3F43B65CFA9ECDF2FB8176B19E9 /* RCTCxxMethod.h */, - A4217C4D86676EF0412E6F975E5DD2DE /* RCTCxxMethod.mm */, - 083E81E45F1AE717249505C8EC8232A6 /* RCTCxxModule.h */, - 2C35A45AEF1DC9CA699AC0D605B50A8D /* RCTCxxModule.mm */, - 651E6650E41ED0B01F1CDF56A42DC205 /* RCTCxxUtils.h */, - 4AF5CE6BE03C21CE4BBC4080332092EE /* RCTCxxUtils.mm */, - E39506F7F9EE6CCCF4ADDD06251B57DC /* RCTNativeModule.h */, - BDF30AF7B890E090C0827A3734D2E444 /* RCTNativeModule.mm */, - ); - name = CxxModule; - path = React/CxxModule; - sourceTree = ""; - }; - 9C13AC9C1DFAEEBA9AEAA72031D8AF55 /* DevSupport */ = { - isa = PBXGroup; - children = ( - 3E3C310A6D6B65A1E1092B5951195C5B /* RCTDevLoadingView.h */, - 1E738C5E4BAD9769681B6A16630F99F3 /* RCTDevLoadingView.m */, - 5A151EFFBE788F37926E741D073995D8 /* RCTDevMenu.h */, - 6D0354A2FE387212321F65ACFDCE83EA /* RCTDevMenu.m */, - 8F251CCD3FAB2F22D168F2739ABDB374 /* RCTInspectorDevServerHelper.h */, - 950A981F9AAC8C497F40A285A730A5F2 /* RCTInspectorDevServerHelper.mm */, - D03DBD0AFFC8242C2888CB675DDA75EE /* RCTPackagerClient.h */, - E45179F221615A279A06F94190C1BE64 /* RCTPackagerClient.m */, - 9F5D6D52B247DF0CAEF7BE7057869C1F /* RCTPackagerConnection.h */, - 6B825BA868E6EF3158B9BC99134CE0BA /* RCTPackagerConnection.mm */, - ); - name = DevSupport; - path = React/DevSupport; - sourceTree = ""; - }; - 9D7A399E79CDF75A2850174BBE68BBA4 /* React-cxxreact */ = { - isa = PBXGroup; - children = ( - EFE5A3065915F6F490D65F2A2D1A11D0 /* CxxModule.h */, - 939A0F30B5CC5BC995EB9E20BD590B46 /* CxxNativeModule.cpp */, - 2A4C74F95426F31A25DD2FD383F6DFC0 /* CxxNativeModule.h */, - 9BAA8E5FE297E96AB972F9E1D3EEDC66 /* Instance.cpp */, - E78C035C14EFD10BA7AC05F82C8C5F88 /* Instance.h */, - CCBD1DB0678F11663FD34FE3294E38FC /* JsArgumentHelpers.h */, - 55F0A34FCEADF7994FB47EA8BBF6AC51 /* JsArgumentHelpers-inl.h */, - F78D3C905DB9CB60890A773F693A8562 /* JSBigString.cpp */, - 435738B2F4A7CC0F0C09EB6BD9CFC17F /* JSBigString.h */, - 1162713FC9D4F1E0043A985F0A067CE2 /* JSBundleType.cpp */, - 00CF27C1E399784436ECFA1C32F75A92 /* JSBundleType.h */, - 0BA46D3CAF3530837C8A612C4AD20BFA /* JSDeltaBundleClient.cpp */, - 330982C8A2A50FD06353093989FB1B36 /* JSDeltaBundleClient.h */, - B858E7CB9AC6995BDA9E1D7E8B7A5956 /* JSExecutor.cpp */, - E31E54F680820D1E7F294786C300A8A9 /* JSExecutor.h */, - E9D14304DE47E263A3BA34DCFAA167E0 /* JSIndexedRAMBundle.cpp */, - 7F0F77649262CBAA120B770DDFC5EDD0 /* JSIndexedRAMBundle.h */, - 91396E34BF573BF8F3AD33C8D61BBA9D /* JSModulesUnbundle.h */, - 41E1B3E21C11EF845CFA1F0AE2F49297 /* MessageQueueThread.h */, - CFE11545EF2FB4D9C5B2C8B82BD682CA /* MethodCall.cpp */, - 2D3EBD82A898DC9DE5928ECBB4903D1D /* MethodCall.h */, - 095339BB0FD64A272E8CA0792E824BB7 /* ModuleRegistry.cpp */, - 73B21794B5FC10B0E97D7F76E8C5F9B8 /* ModuleRegistry.h */, - 20D2497678D6E1586A54294C5D30A9AA /* NativeModule.h */, - 018BCC9317D8B1E0A21D476975652B64 /* NativeToJsBridge.cpp */, - D3F2B3683EC2453E194788622CE63F90 /* NativeToJsBridge.h */, - 8A15703D71AB822DDE385540FCB7EB76 /* RAMBundleRegistry.cpp */, - 5C9D8B2254ACE50199D2188FC16ECAF4 /* RAMBundleRegistry.h */, - 28DEC42ABB2D94A40E9264CD13F5435E /* ReactMarker.cpp */, - ED7D6E8105796CDA00AE6D5FB278AD55 /* ReactMarker.h */, - 54C64BE034BA1EAD0E16992498319D4C /* RecoverableError.h */, - F426DFFFC816F43AF70119B7328C49A4 /* SharedProxyCxxModule.h */, - 035988B6D074414297E2206411382CFD /* SystraceSection.h */, - 5A92F31F5FC5A305C57003E40B96BDAF /* Pod */, - 07675DCF48E92B45C426F9597C9621D5 /* Support Files */, - ); - name = "React-cxxreact"; - path = "../../node_modules/react-native/ReactCommon/cxxreact"; - sourceTree = ""; - }; - 9DE091FD90417FD2C182CA5ED6BE5D8B /* boost-for-react-native */ = { - isa = PBXGroup; - children = ( - EBF60AE8B7F82C3769F1E7447D99AD66 /* Support Files */, - ); - name = "boost-for-react-native"; - path = "boost-for-react-native"; - sourceTree = ""; - }; - A4233CBC88D8F3CF7A41B1DC7DACE6C9 /* core */ = { - isa = PBXGroup; - children = ( - FD1A5921A84A8413DD00C34BCCFEE3DA /* LongLivedObject.cpp */, - 384A059444DF7CF08169E7F8112C748E /* LongLivedObject.h */, - A1D74792E3339E76BF78117B4ACED121 /* TurboCxxModule.cpp */, - 447DA2ED0D7A7A6B14D7D124190EA711 /* TurboCxxModule.h */, - 11E7BD83F4F4EB40DD56838EA39DC6E1 /* TurboModule.cpp */, - 47AFE01307A7B0453405FD3289FF6D33 /* TurboModule.h */, - A70A7C38B15B55AE0A8CEE583F50C0A1 /* TurboModuleBinding.cpp */, - A9784D59E4413FE211157E1E72FD4A53 /* TurboModuleBinding.h */, - A6413EAB13B17A8A26C20AB5D1E7CF60 /* TurboModuleUtils.cpp */, - A80B3BEFAE68FF64AA96B932FE5CACD1 /* TurboModuleUtils.h */, - BD6CE326F9F268B4992EFB0F396ED16F /* platform */, - ); - name = core; - sourceTree = ""; - }; - A97D677CB8F61A3986501A506124B9D3 /* TextInput */ = { - isa = PBXGroup; - children = ( - C1457075F76C79493731B43A3366B688 /* RCTBackedTextInputDelegate.h */, - C0C4440D8051CD6A17622DC4BD06579E /* RCTBackedTextInputDelegateAdapter.h */, - 3A95203F5D10D564526A8B0ACE199714 /* RCTBackedTextInputViewProtocol.h */, - A4560AA32DF372AEF3E00939CE22009E /* RCTBaseTextInputShadowView.h */, - 5BBD22D6966FBF4A9382047AB8FA1011 /* RCTBaseTextInputView.h */, - 318695098CF9F9B065B005BEA7CB8296 /* RCTBaseTextInputViewManager.h */, - 42BBE1908B08080479D342A63E92B6F2 /* RCTInputAccessoryShadowView.h */, - 5A0B852A50FCD6739C27538CAEF5EE76 /* RCTInputAccessoryView.h */, - 21F51614B536EB32BDE3EEDF7E29E02D /* RCTInputAccessoryViewContent.h */, - CD32DFCDAE7E7287AF689F1063AFF2FD /* RCTInputAccessoryViewManager.h */, - F13C9E5676219DD29EDC357BB552EB0E /* RCTTextSelection.h */, - 852C7D1C69442E3016E980CAB8E43C23 /* Multiline */, - B41CBA057725E5BAB2E327CB7DEEF1A0 /* Singleline */, - ); - name = TextInput; - path = Libraries/Text/TextInput; - sourceTree = ""; - }; - AE0AC428FA0FF63CC5624D15EC120901 /* SurfaceHostingView */ = { - isa = PBXGroup; - children = ( - 07FD2D3157B11DF40265B2BFCB3DB8F1 /* RCTSurfaceHostingProxyRootView.h */, - 55703FDAF407B0A1289B669DC7BEEF20 /* RCTSurfaceHostingProxyRootView.mm */, - EB29CF7FADD4B5B166E1EBF1403A0F63 /* RCTSurfaceHostingView.h */, - F02C61A58E46A3814A75A7859E6D7453 /* RCTSurfaceHostingView.mm */, - 7B4AF3D25DEA8622A9422AC5499FD1D7 /* RCTSurfaceSizeMeasureMode.h */, - 1F34B5ACF815BF4C849FFBD29F9630A7 /* RCTSurfaceSizeMeasureMode.mm */, - ); - name = SurfaceHostingView; - path = SurfaceHostingView; - sourceTree = ""; - }; - AEE7A8C7E6C3C88687909B671DAE6D03 /* RCTSettingsHeaders */ = { - isa = PBXGroup; - children = ( - AAA5A6FA87DDF9FBAF9B733C196DD5B7 /* RCTSettingsManager.h */, - ); - name = RCTSettingsHeaders; - sourceTree = ""; - }; - B140C4D7F6E6081739D97ADC0DF160C4 /* Pod */ = { - isa = PBXGroup; - children = ( - EEFEBA26E1BAE2E9418438B460486D91 /* React.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - B2FA89578E25A4D44ED0FBDC67F9271A /* Pods-CalendarsExample-tvOSTests */ = { - isa = PBXGroup; - children = ( - 99143EC4D3ED53EBCC9C9E756C2BF52F /* Pods-CalendarsExample-tvOSTests-acknowledgements.markdown */, - DF9DDB5527A3F181F65E42C588A8C804 /* Pods-CalendarsExample-tvOSTests-acknowledgements.plist */, - 6B5FB339367A1F29B3D34F10C4A9EEE1 /* Pods-CalendarsExample-tvOSTests-dummy.m */, - 3FB861268C709613DA86AF3B4F913256 /* Pods-CalendarsExample-tvOSTests.debug.xcconfig */, - EBD1BDE09865E9B94AE500B8524D36D5 /* Pods-CalendarsExample-tvOSTests.release.xcconfig */, - ); - name = "Pods-CalendarsExample-tvOSTests"; - path = "Target Support Files/Pods-CalendarsExample-tvOSTests"; - sourceTree = ""; - }; - B41CBA057725E5BAB2E327CB7DEEF1A0 /* Singleline */ = { - isa = PBXGroup; - children = ( - 477E7D9C4DAF43B5F7D5C53E14F22384 /* RCTSinglelineTextInputView.h */, - CFFB525A8BADDBAD75A3A7D419DF7E9D /* RCTSinglelineTextInputViewManager.h */, - 3E5175BFE53DDCD8D99599B536C5C0AE /* RCTUITextField.h */, - ); - name = Singleline; - path = Singleline; - sourceTree = ""; - }; - B568C2C1D1ECC29663F36337ECDB7E7F /* Default */ = { - isa = PBXGroup; - children = ( - 02E94AEB4236B480DB49172BBAAF0344 /* Base */, - 1F82E571B7CD6BFD5567FD28BBFF6C82 /* CxxBridge */, - 9C0969118B82C109C968A5408C00996F /* CxxModule */, - 6296E9E4B7264166DC3C9311E33B9005 /* CxxUtils */, - FEC65D13ECEDDF46E301B68793A65104 /* Modules */, - F1799C71846A7826B2BEABDF0607C895 /* Profiler */, - 258324FD077F6139F2FEA11D02A3D814 /* UIUtils */, - 886099C08F7C716BB6C0F3D6124AA77E /* Views */, - ); - name = Default; - sourceTree = ""; - }; - B6E0D4C5D43FDB73279CDA37BF63ED5D /* ScrollView */ = { - isa = PBXGroup; - children = ( - 0B3A296A00ED1AE0AC5A6048CAA73757 /* RCTScrollableProtocol.h */, - CEEF76F71DBB7D81CE20167BF6142B90 /* RCTScrollContentShadowView.h */, - 39642F188BB436E9EE66AAC6BE51C26E /* RCTScrollContentShadowView.m */, - D05C96D4FFC9165534BE40514F031A57 /* RCTScrollContentView.h */, - 06CB020204E4C9F4B12FFE4FCD79978A /* RCTScrollContentView.m */, - 0CC229F29874F9BADC53ABDCD3E16212 /* RCTScrollContentViewManager.h */, - E66CD76C10B3D7E79D06A8D3711E5532 /* RCTScrollContentViewManager.m */, - 427621CE6C99E4A40D20AADAA384F4A8 /* RCTScrollView.h */, - 22EBFA55037966814D6654AF811A4C58 /* RCTScrollView.m */, - 6438CBC641DD71DC1AC645CDC4887A6C /* RCTScrollViewManager.h */, - 77C2E37C63327D81D3350FF517884154 /* RCTScrollViewManager.m */, - ); - name = ScrollView; - path = ScrollView; - sourceTree = ""; - }; - B7B21E2C8C7C41E3E4ED7EE1AEBD9672 /* Yoga */ = { - isa = PBXGroup; - children = ( - 56436F5C8E069F838D8FC15186251167 /* Bitfield.h */, - 8746CF3B4D756FC87FE1DAAE59C7AE2D /* CompactValue.h */, - 7529F537F7804FC7D5BCD10746EFD85D /* log.cpp */, - 2FE3797098F9D35253F1FC23D72348F8 /* log.h */, - 1A86941A0915583D8C608AB62C6D69A8 /* Utils.cpp */, - 807FC00761C178645A8AD2EDB077FF5C /* Utils.h */, - 5104F3BC26FEECA2D63D370C9458762A /* YGConfig.cpp */, - 9FACC257CF02548488B0151181CEE749 /* YGConfig.h */, - 5220CEA7D5D4583F3A823DE07EE01D65 /* YGEnums.cpp */, - C05248AB2232B1870D5494DC7C31EE65 /* YGEnums.h */, - ECF617813FBD747ED72FCF654AC045BB /* YGFloatOptional.h */, - F78C33F3ADA6EF83241BA5111BBFA730 /* YGLayout.cpp */, - 08F9B6505136E757C28584DE9F557FAE /* YGLayout.h */, - 27133352A24B78E3D4109AE1430020C9 /* YGMacros.h */, - 1E4E25C5296E6ED3CF707AB158CDBC54 /* YGNode.cpp */, - 506D1F3E063D223EE3E1C08B1D6F35A6 /* YGNode.h */, - D4F1846B3A2F7991DF814E2113D939F3 /* YGNodePrint.cpp */, - 94F3F61C5D3942C486563BEDDFB25A42 /* YGNodePrint.h */, - F6F1C69F2B4F9CA1F7B4479136307A5D /* YGStyle.cpp */, - 36EE35B2A3526F43BBA1364615213CEC /* YGStyle.h */, - F6F4D0112D630F1C84AD2616A91568C3 /* YGValue.cpp */, - 62B24E8F6E5520ED90BCC397559D2235 /* YGValue.h */, - 65EE387CB2C6A55611FC826472EB7635 /* Yoga.cpp */, - 367808BB63C0C7782A272D833F5C8323 /* Yoga.h */, - E03A901F89EFBB23A0989CA72C86952E /* Yoga-internal.h */, - 3E65D659DB8AB285323AEBBB2FCA0B36 /* event */, - 0DC241F77F62729333F696931B5D5972 /* internal */, - CB12840340F7AE3C3307A606051FE210 /* Pod */, - 82FC959DE8DFD00FCC3958C57A629596 /* Support Files */, - ); - name = Yoga; - path = "../../node_modules/react-native/ReactCommon/yoga"; - sourceTree = ""; - }; - BB853308B665994DF9A6827E3D294DAE /* Pods-CalendarsExampleTests */ = { - isa = PBXGroup; - children = ( - C69A4BD79650D897829F8DF1BBACD8D7 /* Pods-CalendarsExampleTests-acknowledgements.markdown */, - 9DCB325FDA8DB07113B67FAB97CDEDA5 /* Pods-CalendarsExampleTests-acknowledgements.plist */, - 26A0FE7B70E0A54D8F9A3BD4EE6FD27C /* Pods-CalendarsExampleTests-dummy.m */, - FC95D8A149D214E0070E7832BE198B21 /* Pods-CalendarsExampleTests.debug.xcconfig */, - FBD4C30437285D031146EA01C45A5125 /* Pods-CalendarsExampleTests.release.xcconfig */, - ); - name = "Pods-CalendarsExampleTests"; - path = "Target Support Files/Pods-CalendarsExampleTests"; - sourceTree = ""; - }; - BD6CE326F9F268B4992EFB0F396ED16F /* platform */ = { - isa = PBXGroup; - children = ( - C4E488CC8970B55CE3E90F3B242A2A5B /* ios */, - ); - name = platform; - path = turbomodule/core/platform; - sourceTree = ""; - }; - BF0E4F91B8F3936F8D184FB513FA1113 /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - 326961220FAE68CB137A753E8DB50F82 /* Pods-CalendarsExample */, - 32B036437AD9146F2DADD291FC26B1EF /* Pods-CalendarsExample-tvOS */, - B2FA89578E25A4D44ED0FBDC67F9271A /* Pods-CalendarsExample-tvOSTests */, - BB853308B665994DF9A6827E3D294DAE /* Pods-CalendarsExampleTests */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - C0C7D7DD0F3D7539D11A2514EDD7EFB1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 09E6F6EEB4A51FF5E965D58BA6DFE55F /* React-RCTLinking.xcconfig */, - C65C7D2D0EB77F379B96C3A58434F4BE /* React-RCTLinking-dummy.m */, - 6396E30878400E1658ED1A281FEB0394 /* React-RCTLinking-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTLinking"; - sourceTree = ""; - }; - C34EBBF3A45C9E13246B1A9776DF1BAD /* RCTNetworkHeaders */ = { - isa = PBXGroup; - children = ( - A246A3461C0E5FE85F1B3C731A6537B0 /* RCTDataRequestHandler.h */, - 4C21E20C539E128C741FF49018AFE393 /* RCTFileRequestHandler.h */, - EFF8E8FE921130CB6FDA5B3A055A3F5E /* RCTHTTPRequestHandler.h */, - 3ED3C96627B43576957E27D0C506F5FF /* RCTNetInfo.h */, - 254103252A50A5A4218EC2A4636E9592 /* RCTNetworking.h */, - 75E6D2FFDCD69BF12C59DEDFB996189F /* RCTNetworkTask.h */, - ); - name = RCTNetworkHeaders; - sourceTree = ""; - }; - C4E488CC8970B55CE3E90F3B242A2A5B /* ios */ = { - isa = PBXGroup; - children = ( - 66A20DB954FD6195AA2327980C175E7A /* RCTTurboModule.h */, - FDFD2AA1283D978C11A076EE0C0327BE /* RCTTurboModule.mm */, - 3F4DE362A580B84FBB629F426FC93A78 /* RCTTurboModuleManager.h */, - C793FE93C450AB0335E35A4BFE1350DB /* RCTTurboModuleManager.mm */, - ); - name = ios; - path = ios; - sourceTree = ""; - }; - C9F55D0516F0C1712C153791C062C966 /* RCTLinkingHeaders */ = { - isa = PBXGroup; - children = ( - E9B4CF2AE75EB64A568A7698C347DE3A /* RCTLinkingManager.h */, - ); - name = RCTLinkingHeaders; - sourceTree = ""; - }; - CA824842BA5E9595ADD67CA603FAC664 /* React-jsinspector */ = { - isa = PBXGroup; - children = ( - 803B36F048E4FCA832160185B113D37E /* InspectorInterfaces.cpp */, - 63C5EA6D7E35B8328D9E57543FF3CD1E /* InspectorInterfaces.h */, - D17EB7C3B6233B8F7F083A4A0C2D4C39 /* Pod */, - CCABB73E3869A37480044695E3743EAA /* Support Files */, - ); - name = "React-jsinspector"; - path = "../../node_modules/react-native/ReactCommon/jsinspector"; - sourceTree = ""; - }; - CAC8BEC22E58AF93120E2F26807891D8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 70213BDC2825450815F0BEA54B215C24 /* ReactNativeNavigation.xcconfig */, - 49C3241833BD2BD5CD87A68CABEFDD85 /* ReactNativeNavigation-dummy.m */, - 6FE79CC3A7332B529783B70841DD4392 /* ReactNativeNavigation-prefix.pch */, - ); - name = "Support Files"; - path = "../../ios/Pods/Target Support Files/ReactNativeNavigation"; - sourceTree = ""; - }; - CB12840340F7AE3C3307A606051FE210 /* Pod */ = { - isa = PBXGroup; - children = ( - 82728FA3CA40D7CAD8F913B9BFA303B4 /* Yoga.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - CBAE714AED83151115A44A30CB9B2C3C /* Surface */ = { - isa = PBXGroup; - children = ( - A02E324501FBDF09F5864A1CD1DDB4C8 /* RCTSurface.h */, - 961FFAD4611F889FE09FD0D5560897E1 /* RCTSurface.mm */, - 7E821154F8A53025255D23A315D707EF /* RCTSurfaceDelegate.h */, - 7F214C3643741B724B4ABE58C9193ACE /* RCTSurfaceRootShadowView.h */, - ED23170B5BEE71C5CC036347DF870B6C /* RCTSurfaceRootShadowView.m */, - AB9140C24753535E9A5DCD48E489F4E7 /* RCTSurfaceRootShadowViewDelegate.h */, - 29EB0953FC89FD2468073AE33594B3D1 /* RCTSurfaceRootView.h */, - 4F2B80BE92A8529D623C119DFAE8869B /* RCTSurfaceRootView.mm */, - 0D9111637EB348668A292C26A2EAC47A /* RCTSurfaceStage.h */, - E2B40F932D30B66BC7DDBDD45D5D2D31 /* RCTSurfaceStage.m */, - 4605100A173B23FFE60EB570CD608004 /* RCTSurfaceView.h */, - 58535C3660A057B0A37DFF7F8A1C1DE1 /* RCTSurfaceView.mm */, - 965716ADD5BF1EAB31925E3CD756565A /* RCTSurfaceView+Internal.h */, - AE0AC428FA0FF63CC5624D15EC120901 /* SurfaceHostingView */, - ); - name = Surface; - path = Surface; - sourceTree = ""; - }; - CCABB73E3869A37480044695E3743EAA /* Support Files */ = { - isa = PBXGroup; - children = ( - 4A9EE4E13A7217DCA4B897E24417029F /* React-jsinspector.xcconfig */, - C529E1955B548D8A3657FF10F2B42B75 /* React-jsinspector-dummy.m */, - 6DB7384FC701053F99B9FF37A1BEE800 /* React-jsinspector-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsinspector"; - sourceTree = ""; - }; - CDD58EE6045CE3300570FDCA339CE4D3 /* Text */ = { - isa = PBXGroup; - children = ( - 5A61CE433E3041496AD13007E87758E7 /* NSTextStorage+FontScaling.m */, - C4BCB0FF9B2B1FD52B8C0BD5A4F9E237 /* RCTTextShadowView.m */, - D0EA4960F1190594DD6F0A9E65298FB0 /* RCTTextView.m */, - 80B4691223E981B9FD48F8CF3C4368E5 /* RCTTextViewManager.m */, - ); - name = Text; - path = Text; - sourceTree = ""; - }; - CF1408CF629C7361332E53B88F7BD30C = { - isa = PBXGroup; - children = ( - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - 707FD124B9DCFC958F4EB106651931B8 /* Development Pods */, - D89477F20FB1DE18A04690586D7808C4 /* Frameworks */, - 2191FFBD4B5A7677AF9C49C831AD2632 /* Pods */, - 4C74CD6636AB394429B2D4E56973C51E /* Products */, - BF0E4F91B8F3936F8D184FB513FA1113 /* Targets Support Files */, - ); - sourceTree = ""; - }; - D0B392AFDCA388571939398FC7D91D96 /* Support Files */ = { - isa = PBXGroup; - children = ( - E63960AF9821CA4C2B292CA798F5723C /* React-RCTImage.xcconfig */, - 91EAACD39C88ECA47632CDAD273FFCC4 /* React-RCTImage-dummy.m */, - 7371619BFAB2A3EA00CD278B32951676 /* React-RCTImage-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-RCTImage"; - sourceTree = ""; - }; - D0F67F8381CFCF22F2D9DC8E1B74DE14 /* RCTActionSheetHeaders */ = { - isa = PBXGroup; - children = ( - 42B8D24B0E77BA01FF5F1EAAF69EEC72 /* RCTActionSheetManager.h */, - ); - name = RCTActionSheetHeaders; - sourceTree = ""; - }; - D17EB7C3B6233B8F7F083A4A0C2D4C39 /* Pod */ = { - isa = PBXGroup; - children = ( - 68A134D293D311430D1B25C9553BB8FD /* React-jsinspector.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - D1AED2EA85ED45459A8ABFE413A3CAF8 /* TextInput */ = { - isa = PBXGroup; - children = ( - 56CAE41B815E923F14C467766E852406 /* RCTBackedTextInputDelegateAdapter.m */, - 627072622FE6BE4F6905DD50997000CA /* RCTBaseTextInputShadowView.m */, - 58DC2051B5C1AF0F0DE4FA11D059069A /* RCTBaseTextInputView.m */, - 9D45EF495A54515638276A8335890DA5 /* RCTBaseTextInputViewManager.m */, - 825CB70261E32AF3B0D074CD0A2CF0B0 /* RCTInputAccessoryShadowView.m */, - 0A1B84F198F88C171986A4E31589FC0A /* RCTInputAccessoryView.m */, - 922F05EFCE659DC7AA658398F15D6A5E /* RCTInputAccessoryViewContent.m */, - 71BB78EA7C3BF3C1647C38DE4E10BCE5 /* RCTInputAccessoryViewManager.m */, - BDDC4F6E0A86ED85F4225081BDDCF96D /* RCTTextSelection.m */, - 586F5744F76A55DD83B87E32BF9C1BC7 /* Multiline */, - 78F5A6413A9EFDDC67EEA56A685616EE /* Singleline */, - ); - name = TextInput; - path = TextInput; - sourceTree = ""; - }; - D1BF266CAA67482701AB39FB22675779 /* React-RCTVibration */ = { - isa = PBXGroup; - children = ( - 5CA96248D4206079C042058B48EA9FF4 /* RCTVibration.m */, - 06F86E8C662A3D03B521CDBE4C87ECDE /* Pod */, - 81BA25E5A5416FD97F73EB177CC4EC45 /* Support Files */, - ); - name = "React-RCTVibration"; - path = "../../node_modules/react-native/Libraries/Vibration"; - sourceTree = ""; - }; - D6746DF340FDD5394841B94CFD28AE2B /* CoreModulesHeaders */ = { - isa = PBXGroup; - children = ( - B360BD9150C793C47FA5E394E241BBD1 /* CoreModulesPlugins.h */, - 9761B14A3C1259E73252236689C58345 /* RCTExceptionsManager.h */, - 9167C865A955BC28138FAD4567198012 /* RCTImageEditingManager.h */, - 2363F753A490F0384E77F44CC1CF160E /* RCTImageLoader.h */, - 59D8CB0592F15FAA666275A427F9A9BA /* RCTImageStoreManager.h */, - FB969C56EBFEEDE10BD75B908E115939 /* RCTPlatform.h */, - ); - name = CoreModulesHeaders; - sourceTree = ""; - }; - D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { - isa = PBXGroup; - children = ( - ); - name = Frameworks; - sourceTree = ""; - }; - DB4AA75EAE4FBAC2488DCA5C0D23B874 /* Pod */ = { - isa = PBXGroup; - children = ( - 7DC4CF3951E853A9D1CBDE563147D549 /* React-CoreModules.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - DB8EC1CED6B6407FA0AF93AB1C5DF0F2 /* VirtualText */ = { - isa = PBXGroup; - children = ( - A1F6F8E328182CF88963035C5E3F710D /* RCTVirtualTextShadowView.h */, - B696F3BA0976E6D241368F572DAC6DAA /* RCTVirtualTextViewManager.h */, - ); - name = VirtualText; - path = Libraries/Text/VirtualText; - sourceTree = ""; - }; - DC792DB1A8F4D0D986056C3733CC4258 /* React-RCTNetwork */ = { - isa = PBXGroup; - children = ( - 45B11FDF024B33D06FBD455A641647E1 /* RCTDataRequestHandler.m */, - E8FE232AE9E4390BDAA3CCCCA727427B /* RCTFileRequestHandler.m */, - 8747D67E4729DD620BC36F330B1DEB87 /* RCTHTTPRequestHandler.mm */, - D51942D20A1B4F246A73D544A59C2BC7 /* RCTNetInfo.m */, - E37F74E1F3335B3B28071B9E2324AA57 /* RCTNetworking.mm */, - 89BFB8C5AE42818229D93BFEC2FDE576 /* RCTNetworkTask.m */, - 1EA10E7377415F2F539CDBD5959FA732 /* Pod */, - 10D80D682BF44F83D512FC75FC5117DB /* Support Files */, - ); - name = "React-RCTNetwork"; - path = "../../node_modules/react-native/Libraries/Network"; - sourceTree = ""; - }; - E17AA09A8142497471966A87185580F4 /* React-RCTBlob */ = { - isa = PBXGroup; - children = ( - C1A0CEDE46698A9AC1514BE542599830 /* RCTBlobCollector.h */, - DB04760AD193B3520EAA7F4C1E1E89C0 /* RCTBlobCollector.mm */, - 036B4F0F58FB8230BF37E6F3ECE9284A /* RCTBlobManager.mm */, - 76B67DD85955BFAC34F8B9A79565201A /* RCTFileReaderModule.m */, - 1FEE014F2C820D7494872E292AF90D1D /* Pod */, - 95D3464091F3D8E96D15996584EFC990 /* Support Files */, - ); - name = "React-RCTBlob"; - path = "../../node_modules/react-native/Libraries/Blob"; - sourceTree = ""; - }; - E252E29E4FDE3ADA1492E572D477F047 /* React-RCTSettings */ = { - isa = PBXGroup; - children = ( - DF9D49DD11CFEBF42F0A7270E5585B9D /* RCTSettingsManager.m */, - F96536D3C90D8650BA42B55F318C285E /* Pod */, - 5FA663F3A4F51554B680555320228E21 /* Support Files */, - ); - name = "React-RCTSettings"; - path = "../../node_modules/react-native/Libraries/Settings"; - sourceTree = ""; - }; - E4FAABBF4F8AD402FB04660AE73C8AB5 /* RCTWebSocket */ = { - isa = PBXGroup; - children = ( - 37545C27CC0D1FE12E8AAA7C9CA2B47A /* RCTReconnectingWebSocket.h */, - 96A4EFBFD6D10A490E202CBE96270C3B /* RCTReconnectingWebSocket.m */, - E2ABFC6B9EEF67C2FBE06EB2A58B9867 /* RCTSRWebSocket.h */, - 3CA65566C0B15CB6B8230ADB63A9469E /* RCTSRWebSocket.m */, - 3C35E2B85C9B011A2F7A08D98F3C6B74 /* RCTWebSocketExecutor.h */, - 9AB30E32353BF149D2895C55653D20E1 /* RCTWebSocketExecutor.m */, - DA73AAD7BF4BE5A2DD202ED4F4C2A682 /* RCTWebSocketModule.h */, - 0B8ECF421815CAA3B11A5E99F8F34E4A /* RCTWebSocketModule.m */, - ); - name = RCTWebSocket; - sourceTree = ""; - }; - E61C4289A1B851D4E9E060AD9DFD5741 /* Drivers */ = { - isa = PBXGroup; - children = ( - 9D6060A5325D587F13E0D38C6AC29699 /* RCTDecayAnimation.m */, - 3E519172D5C0A0DAE45333F1161708CB /* RCTEventAnimation.m */, - 2BCA92C806059EF6BA7271A433D4BBE8 /* RCTFrameAnimation.m */, - 639A9FDEDB68B58886715691BA5D07E7 /* RCTSpringAnimation.m */, - ); - name = Drivers; - path = Drivers; - sourceTree = ""; - }; - EAC6716DDD1BE5CFAF283CEABCA4D198 /* BaseText */ = { - isa = PBXGroup; - children = ( - 1B03198BC7CAFD5059506FFB44B7DC89 /* RCTBaseTextShadowView.h */, - 190F8853B7CD375250CDC430F9C57C4F /* RCTBaseTextViewManager.h */, - ); - name = BaseText; - path = Libraries/Text/BaseText; - sourceTree = ""; - }; - EB6912B7E396D059A0CB1DFA3D5DF3D0 /* FBReactNativeSpec */ = { - isa = PBXGroup; - children = ( - 2E7D49AC41FCC1532B2568E8A372BB0C /* FBReactNativeSpec.h */, - 1C42C67E5338F592513E1611F442E4C1 /* FBReactNativeSpec-generated.mm */, - 1E0CBEF2FC974547A388EC7DAEAFF9B5 /* Pod */, - 62057E24DBA81B23DD36A4758BBFC4B1 /* Support Files */, - ); - name = FBReactNativeSpec; - path = "../../node_modules/react-native/Libraries/FBReactNativeSpec"; - sourceTree = ""; - }; - EBF60AE8B7F82C3769F1E7447D99AD66 /* Support Files */ = { - isa = PBXGroup; - children = ( - E989F6316A747D8F1D48607134C17D99 /* boost-for-react-native.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/boost-for-react-native"; - sourceTree = ""; - }; - ED6AFEEC89E5C603484CEB87C7B0125D /* Support Files */ = { - isa = PBXGroup; - children = ( - 0D7AF7130253177561A39A66DEB4686D /* DoubleConversion.xcconfig */, - 2C4CBE14F7A5432070195C040C059931 /* DoubleConversion-dummy.m */, - 0136544581323AC8E5A57BF4BEBD0AFE /* DoubleConversion-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/DoubleConversion"; - sourceTree = ""; - }; - EE7134FAA5EFC1AAE62375336EC519AF /* Support Files */ = { - isa = PBXGroup; - children = ( - 7260B6BA331D206810E449904548A049 /* React-jsiexecutor.xcconfig */, - 5724669C3C8119123534D8C73D5F3F06 /* React-jsiexecutor-dummy.m */, - 69AA48B4C5C3EBD03CE2D9760853CFF6 /* React-jsiexecutor-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsiexecutor"; - sourceTree = ""; - }; - F1799C71846A7826B2BEABDF0607C895 /* Profiler */ = { - isa = PBXGroup; - children = ( - D3316F06E55BCA94C595A9C19FFAB91B /* RCTFPSGraph.h */, - 453759ABBEFC7C808B3E049912729BF6 /* RCTFPSGraph.m */, - 581DB277C6DFE06032C10679B0C335BB /* RCTMacros.h */, - 9979F1FBEB004FDF2ECA7760D53CFCDB /* RCTPerfMonitor.m */, - FD751D7CFA65AC7836270B8EC708C031 /* RCTProfile.h */, - F04A5895D938A47825A96584A8BF5F61 /* RCTProfile.m */, - C8257CD18CDDA4DE7FBC3539871D42BB /* RCTProfileTrampoline-arm.S */, - C4B352F5A71A2C1556CEE1223C20F415 /* RCTProfileTrampoline-arm64.S */, - 8FF6724665637E865B342F2EA886CE4D /* RCTProfileTrampoline-i386.S */, - F9203B81A9547AF7A9867DB5750EF536 /* RCTProfileTrampoline-x86_64.S */, - ); - name = Profiler; - path = React/Profiler; - sourceTree = ""; - }; - F3C76AAE2BCA3FDDDD8761F3996046E5 /* Folly */ = { - isa = PBXGroup; - children = ( - D95199542512FFE661264049CA4E7763 /* Assume.cpp */, - 06F85AD8AF1C7A68E0C1475DC87B3E92 /* ColdClass.cpp */, - A0D95B1B16B6702CD417F9E8179207CF /* Conv.cpp */, - 0E2666355A9D8A01E6076093FC6AC896 /* Demangle.cpp */, - 5CEC5DAA2679116F80A8C322CF9D82A7 /* Demangle.cpp */, - 68B7C9B639315DF6D84671195DE6623A /* dynamic.cpp */, - 6AABD7181EA87FBB810207DBC9667B4C /* F14Table.cpp */, - 05BCD5C080F27CF9DAB5611A91A34289 /* Format.cpp */, - 97752372C9650A05DB1B4343C460F6B4 /* json.cpp */, - 1DB5A138B0AF9BA29E8308CC2D8B2FDE /* json_pointer.cpp */, - 0CE1C8FCA249113DDD24F7F6A1E29EEE /* MallocImpl.cpp */, - D6B502C194FF3A94453320004FB86384 /* ScopeGuard.cpp */, - D05E987A3D4A6A0E56AE2E18BDB0EE04 /* SpookyHashV2.cpp */, - 5506189D967BB06749B3B0E48DD9DB87 /* String.cpp */, - 455C905A60462FEA87968F14D9CCAD71 /* Unicode.cpp */, - 639898FA5E307D425C2152A5BD7B9BE4 /* Support Files */, - ); - name = Folly; - path = Folly; - sourceTree = ""; - }; - F6033D5C22C93A956CF238DE8CD97E3E /* Support Files */ = { - isa = PBXGroup; - children = ( - 84AC2ED43EAFDF71A182199DA73FE6A5 /* React-jsi.xcconfig */, - 582DCD537DF1195D48F574F0B098718F /* React-jsi-dummy.m */, - 2167C9686E524E085CC5FC0BF5F43E57 /* React-jsi-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-jsi"; - sourceTree = ""; - }; - F6999CD61187D5D5F18E477BE030AD53 /* React-RCTAnimation */ = { - isa = PBXGroup; - children = ( - F92F6FA7FAC51A8FAB71C85C3F1C70DF /* RCTAnimationUtils.m */, - BAC0A693504B9CF87C54A6B6E9DB1B27 /* RCTNativeAnimatedModule.m */, - CD907649F913C671526E75D18074D17D /* RCTNativeAnimatedNodesManager.m */, - E61C4289A1B851D4E9E060AD9DFD5741 /* Drivers */, - 2A7B7625D94E77747709C64DAAEC6252 /* Nodes */, - 6E625E949C35B046456920B3B18D9DCD /* Pod */, - 61FF4270DF6486F722DCE9FE4C12445F /* Support Files */, - ); - name = "React-RCTAnimation"; - path = "../../node_modules/react-native/Libraries/NativeAnimation"; - sourceTree = ""; - }; - F7A0CB61EE44E1DB147B7B1BDAC5218E /* jsi */ = { - isa = PBXGroup; - children = ( - 0E26DC9292171CEFCE782D662EF59A99 /* decorator.h */, - 18E8D7247DB9EE664EDFB00FF118D6B7 /* instrumentation.h */, - C40DB10C2855D72D64853A98A1DFF654 /* jsi.cpp */, - 6705E3C368A77364A6E15E711ED58244 /* jsi.h */, - CCACDF74B1F425E39B89D1865E698C33 /* jsi-inl.h */, - 60A4FCD3AA548DF5214D2E094453C2CC /* JSIDynamic.cpp */, - CDA55892C9653F7685C84113AA6CEC69 /* JSIDynamic.h */, - 47BA26EEBF09A6906AEA18333731518B /* jsilib.h */, - FDC18B4187B8C41FAB842AEB6EC2EAD9 /* jsilib-posix.cpp */, - B84DFB14D4C5ACE499155E9A4B3152ED /* jsilib-windows.cpp */, - 4EFCD24FCFCB79DBBFB4DE8C20056846 /* threadsafe.h */, - ); - name = jsi; - path = jsi; - sourceTree = ""; - }; - F7E576887DC16462EDDAA7FFBE76333B /* Drivers */ = { - isa = PBXGroup; - children = ( - C3D5C8179443F70EA30F12A4D8D494E2 /* RCTAnimationDriver.h */, - 70D35A655DF0743FB42CEB4245D0D49E /* RCTDecayAnimation.h */, - 986418BB0C18EDC912098CAB50FD2387 /* RCTEventAnimation.h */, - 3187C804ADBFCA4DE139D8C6CAB1C496 /* RCTFrameAnimation.h */, - 335450844E0F151179FF4DCAD01A00BD /* RCTSpringAnimation.h */, - ); - name = Drivers; - path = Libraries/NativeAnimation/Drivers; - sourceTree = ""; - }; - F96536D3C90D8650BA42B55F318C285E /* Pod */ = { - isa = PBXGroup; - children = ( - 78B58D11448A67E4659B943F36660CCA /* React-RCTSettings.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - FA57BF70FD4817198AC2EE147AFC0353 /* RCTTypeSafety */ = { - isa = PBXGroup; - children = ( - C32F45F3BB59BDF29CC111F790CE3C22 /* RCTConvertHelpers.h */, - 35AEDED1111C4273F4845F2013E40635 /* RCTConvertHelpers.mm */, - F5D61A5A3B5FC8B5A7FFF8707D3B6C9F /* RCTTypedModuleConstants.h */, - 9B4CC989918311563C70901E5E1EDF97 /* RCTTypedModuleConstants.mm */, - 7684C67C3B8051BBDB31F29D3A86404F /* Pod */, - 4FACE4E47DE746971FC972708D40D664 /* Support Files */, - ); - name = RCTTypeSafety; - path = "../../node_modules/react-native/Libraries/TypeSafety"; - sourceTree = ""; - }; - FAD67FC0D40D114E7BA25361E4D98CE6 /* Support Files */ = { - isa = PBXGroup; - children = ( - 41DB623908F11E8A026B0AF96DA6D3F5 /* FBLazyVector.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/FBLazyVector"; - sourceTree = ""; - }; - FCC7DD0930AD72E41732C6C60D6CF55D /* Support Files */ = { - isa = PBXGroup; - children = ( - 948F446B4881A6C512730ECDC0A1B8D9 /* React-CoreModules.xcconfig */, - E48AAC107B1E5EBD6D6D57EADE536C49 /* React-CoreModules-dummy.m */, - 313C9D94A616E223DBA7587F924E2923 /* React-CoreModules-prefix.pch */, - ); - name = "Support Files"; - path = "../../../../ios/Pods/Target Support Files/React-CoreModules"; - sourceTree = ""; - }; - FCDF0195C3B251DA8B712C9FBE4ACB03 /* turbomodule */ = { - isa = PBXGroup; - children = ( - A4233CBC88D8F3CF7A41B1DC7DACE6C9 /* core */, - ); - name = turbomodule; - sourceTree = ""; - }; - FE5D047D3E91360394B224DF1A492F08 /* React-CoreModules */ = { - isa = PBXGroup; - children = ( - ABE6EBE357D347A3161C6003F6E9153E /* CoreModulesPlugins.mm */, - FD560B8A2B05DC9A28E9E27FF1546C1A /* RCTExceptionsManager.mm */, - B390D217C66194AA3670FAD679FAD333 /* RCTImageEditingManager.m */, - 1760BD52F1972CD36A56EC686A7FBFE9 /* RCTImageLoader.mm */, - F50A7C1442A3CD013567D6D275CC8484 /* RCTImageStoreManager.m */, - 024DBC0DED41BF178E4D776D4C79B34C /* RCTPlatform.mm */, - DB4AA75EAE4FBAC2488DCA5C0D23B874 /* Pod */, - FCC7DD0930AD72E41732C6C60D6CF55D /* Support Files */, - ); - name = "React-CoreModules"; - path = "../../node_modules/react-native/React/CoreModules"; - sourceTree = ""; - }; - FEC65D13ECEDDF46E301B68793A65104 /* Modules */ = { - isa = PBXGroup; - children = ( - A4E7F2EC449E7D4215E070BC76F28991 /* RCTAccessibilityManager.h */, - 9B838255578726AAA8713710460D9393 /* RCTAccessibilityManager.m */, - 18532025790A951F1361DE6C0140F487 /* RCTAlertManager.h */, - DB51DBFFCAFE2897F1D6AE90C5792ABB /* RCTAlertManager.m */, - AE11805378B14C74B0E22C35E399E131 /* RCTAppState.h */, - 3269CDCB86B3B898B6DD74EDB6599FEA /* RCTAppState.m */, - 2F655BB983B89C85A013898BAE4ACEBA /* RCTAsyncLocalStorage.h */, - 74F6C1567B22122E5531589862A333C3 /* RCTAsyncLocalStorage.m */, - F327FEFBCDDA924FEBF0DC759CD2E7ED /* RCTClipboard.h */, - F3563633992A41694B8E719D908E67AF /* RCTClipboard.m */, - 004C4439020B46439419FB9DE17D28B8 /* RCTDeviceInfo.h */, - 778464C8C7E56616FAC21ED35D8596C8 /* RCTDeviceInfo.m */, - 24B8E35C61C523F1BF521B4864FEF9CA /* RCTDevSettings.h */, - DEDC6148E06FE92E5D3928DCC93A74E3 /* RCTDevSettings.mm */, - A74BD18F82117122287CB4CE38DBA2C0 /* RCTEventEmitter.h */, - D368C4177C1FA2164F46FA0E54B2E31F /* RCTEventEmitter.m */, - 9F36EE8094CCCBF4FAF2FF71DEDC83AB /* RCTI18nManager.h */, - 8162E204CBD05C00DFBE954FE5BF70C8 /* RCTI18nManager.m */, - 55441AAC940A4A155522308D20985631 /* RCTI18nUtil.h */, - B8BB27849171E8B0946B7EBB904EEC99 /* RCTI18nUtil.m */, - A91C3414060E1C9B6C71EE7B472C9AAA /* RCTKeyboardObserver.h */, - 768F95791F596B31864858BF21DAC5F3 /* RCTKeyboardObserver.m */, - 9A64644BF144220DDE65EB521742A3AF /* RCTLayoutAnimation.h */, - EA2A678375F5C31C6AD957FD9A6F7626 /* RCTLayoutAnimation.m */, - 4F58D523D87FBD9FDAB439F60382EB2F /* RCTLayoutAnimationGroup.h */, - D6458CDF2FBB27BCDADA2BCBFE4E39E4 /* RCTLayoutAnimationGroup.m */, - 465CFF59382A8CE2B849D25D2116F625 /* RCTRedBox.h */, - 3E8AC105BBA7BDBA7E4A3EDB53648CD4 /* RCTRedBox.m */, - CBD8ACF3774E94AC871070EBA70CB076 /* RCTRedBoxExtraDataViewController.h */, - A203D26B208358AF76994BCD88BEC57C /* RCTRedBoxExtraDataViewController.m */, - 4129574BFD6A1BE160BE240EE9DBA899 /* RCTSourceCode.h */, - C2F458557C9FD986BF7BEAE300A6E6A4 /* RCTSourceCode.m */, - F748A1FA1E9DD1B0B355DFF8EF176A96 /* RCTStatusBarManager.h */, - 10CAF7F9BF5C2CB94D1E7AC460348A0A /* RCTStatusBarManager.m */, - 159F97AA09A19B07C509E5EFE9255E74 /* RCTSurfacePresenterStub.h */, - D1EE870544C5688435350160527CB746 /* RCTSurfacePresenterStub.m */, - FF892E41F1FED90AEE6676F39271CBBC /* RCTTiming.h */, - 04227532F64F339984939776F8693E40 /* RCTTiming.m */, - 63EFC38D17FDFC0D940F50D0154D9933 /* RCTUIManager.h */, - 2C25607F47F322F360C9E9E2ABC739D1 /* RCTUIManager.m */, - 589E864149D6B4EC9235E1EF3B40AE99 /* RCTUIManagerObserverCoordinator.h */, - 62BCAAD03B06469D91674966C66404C5 /* RCTUIManagerObserverCoordinator.mm */, - 4BA1DE00D4E5D35C53102D1F5B961EA8 /* RCTUIManagerUtils.h */, - 018DDEDA04CA62E5EAC3B997D04D287F /* RCTUIManagerUtils.m */, - ); - name = Modules; - path = React/Modules; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 00D4CE451E08050B2A4C0DBB6ACD3E8F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 02D48A86ED5A32F7684F6DCC6A22D1E7 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 9CED9EE5CB7376FF7FB07C9F43879FEC /* FBReactNativeSpec.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 168C26602F1DB2C83AE70EFA7D0A5692 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1A22C377F296FBF9E32FE489837B1C89 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - CB65EED5B312B95000AEC2753869F310 /* InspectorInterfaces.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 20262DACD386266F8EEFF255BE9021FF /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 20BC3E31766DA6D5306054B6BBA10440 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 46D18929E6825E93B7F249489AE6B71F /* decorator.h in Headers */, - 5773EB2B62A725F578ED899345C8B197 /* instrumentation.h in Headers */, - 0F9B662D2AA2962964E56C8CB5E77328 /* JSCRuntime.h in Headers */, - F9C99A700FF08B75D32062B06FE7D5EC /* jsi-inl.h in Headers */, - F7D1A587F1C235937C3D4E9D5D40773B /* jsi.h in Headers */, - 0148FB2ED2D9EDA12FF4F092641313D1 /* JSIDynamic.h in Headers */, - B8C46A54C9193FD97A1F9C644037740B /* jsilib.h in Headers */, - B83F9F62BDE5B8069E75C2D9BC6283F9 /* threadsafe.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2421B2BEB31793521AF7BB2ED8723279 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */, - 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */, - BEC1052E6EC8BDA846B649FFD43F6826 /* cached-powers.h in Headers */, - 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */, - 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */, - E953548BA212D0038557EBF302E5FB1A /* fast-dtoa.h in Headers */, - 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */, - A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */, - 92A8544B73B2FA29B9CFDE72C5FDDBB6 /* strtod.h in Headers */, - 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2F8EDC3D4D53B14BBAFC91BDEE8B2E97 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - CBE354C5605EFF013C148CA5DD1A8986 /* NSTextStorage+FontScaling.h in Headers */, - A029F0BBBD0E1C3DAD8EFBC5277C9D88 /* RCTBackedTextInputDelegate.h in Headers */, - 609C5C6134DBC872739FBE5A6689501F /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 26AD966AAC1F2B82D6126C6C5D267563 /* RCTBackedTextInputViewProtocol.h in Headers */, - B7FB05EBFD4986D64E4582F39D440EF9 /* RCTBaseTextInputShadowView.h in Headers */, - 44C815885CCAC46BA17B6D2492CE9D95 /* RCTBaseTextInputView.h in Headers */, - A923DD393811B943A006C905B0150B32 /* RCTBaseTextInputViewManager.h in Headers */, - 6D24FA6F518AAF445D22CF8CD3D7C52C /* RCTBaseTextShadowView.h in Headers */, - E83F7A90126DF775D49D7284B23C633F /* RCTBaseTextViewManager.h in Headers */, - D9D8FA8989B66910B670CFFD98122F8F /* RCTConvert+Text.h in Headers */, - FE69B4983BB4D37FB0996C60CA20BB5B /* RCTInputAccessoryShadowView.h in Headers */, - 39887689F6AB599F802137A683196511 /* RCTInputAccessoryView.h in Headers */, - 91DE545D7DD2FE3267E26B8620B77919 /* RCTInputAccessoryViewContent.h in Headers */, - 629F1340CB1516B2A3ED146E9827EB70 /* RCTInputAccessoryViewManager.h in Headers */, - A5A48479F57E3BB132283132DD1C384D /* RCTMultilineTextInputView.h in Headers */, - FB9A98B412390D81BEF8C9222C3F2267 /* RCTMultilineTextInputViewManager.h in Headers */, - 46A635BD62CC72F1C27080CF8A1C7B39 /* RCTRawTextShadowView.h in Headers */, - 55B28461B46694058CDDC6C43389FD19 /* RCTRawTextViewManager.h in Headers */, - AE8657314C673F9AAED461EF78F00E0E /* RCTSinglelineTextInputView.h in Headers */, - 9FC9FCDE07BC3E6AF0826D7AE7F303F4 /* RCTSinglelineTextInputViewManager.h in Headers */, - 7AE20C38FE9D6CBAD000CB8170F2EC97 /* RCTTextAttributes.h in Headers */, - 00E8D813B3C673602B127358A87D5073 /* RCTTextSelection.h in Headers */, - 4B10D6C043CE76538770FCC3550A9F67 /* RCTTextShadowView.h in Headers */, - A2CC22D9C36DDC05E02A7A2F9BCD7003 /* RCTTextTransform.h in Headers */, - F03479BA3103FC9AB9973CA7ABBB15AF /* RCTTextView.h in Headers */, - 5EA525E994EC439896B0C31DEC8895C4 /* RCTTextViewManager.h in Headers */, - 7B9D619274FAEA9836D748A5D523FC85 /* RCTUITextField.h in Headers */, - 6F37ACA388876B6B3C3461EC195E1CE5 /* RCTUITextView.h in Headers */, - E06419E42B9B82C1345952A7659EBFAD /* RCTVirtualTextShadowView.h in Headers */, - 31361187E06E2B29D14780DE6B373FC9 /* RCTVirtualTextViewManager.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3F9238D028ACC537EB316D8DC78769B6 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4ACF427C2C88E12B66D9589162E4DED3 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - AE5CEE065C8159B8373F9DE61F2AD5C1 /* CxxModule.h in Headers */, - DE3DDCC0F92A86B3EFA683DC54F9AE65 /* CxxNativeModule.h in Headers */, - 1D36716FE2C157CD5F2CC043EF74AA0F /* Instance.h in Headers */, - 23AC501AE9C9899D167B637EFCD37A32 /* JsArgumentHelpers-inl.h in Headers */, - 8A3A8AC3807AA3CE01148A106258BE25 /* JsArgumentHelpers.h in Headers */, - 5D09253F8D99FC64B7C8FEACCE1AB4DD /* JSBigString.h in Headers */, - 787960B14AA58476248C5C49E24CD310 /* JSBundleType.h in Headers */, - 711D6701B3C997A040AE7E5BD3A36323 /* JSDeltaBundleClient.h in Headers */, - 0AF66FFEBEB35B0A7094F8BC80215C7F /* JSExecutor.h in Headers */, - 557C67B026376AB2E51A67CA84039EB5 /* JSIndexedRAMBundle.h in Headers */, - 4B68C390C355778468912000A6800D26 /* JSModulesUnbundle.h in Headers */, - 55EEBDE59E0A883F0C07E36E0DACF077 /* MessageQueueThread.h in Headers */, - C4F688FCAE7867B655AA233592971E0C /* MethodCall.h in Headers */, - 34579BD558D89809079F9C699C4BA38A /* ModuleRegistry.h in Headers */, - 334A7F296D9F8BC9EC98277B8252734B /* NativeModule.h in Headers */, - 3049352686EA4CB5C9CA6A04B0BB179B /* NativeToJsBridge.h in Headers */, - 55AE0EF82E1627EF0406E4A8674E1D05 /* RAMBundleRegistry.h in Headers */, - 033E56C06465350AB95C851E66D0C3DE /* ReactMarker.h in Headers */, - C5230A9F781A3C9B4BFB1D3241CB3DD6 /* RecoverableError.h in Headers */, - 339444E0B842A109E18599C8B7F3A58D /* SharedProxyCxxModule.h in Headers */, - 31E0BC7EDF993D50D6265A19DEC22038 /* SystraceSection.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 55624BD664CDB4621E586E0A9C655C65 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5F86980C7A98F795235DCFEF2B2908E7 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6C2A4D001F0F20772E18BB234095CCE9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - A8C332B7082C3722501252B6A7BF9B36 /* RCTBlobCollector.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6C8FE5AE71C1B99748A4EC3361912265 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - BB26E6E8FADC6CD7E9457AC1DC9F8CEE /* Bool.h in Headers */, - 8B1B6F0374EB8C0DD7DFC1999FF283C3 /* BoolParser.h in Headers */, - D5F121C71F32A37F09D2801055098F93 /* Color.h in Headers */, - D7C730E466092240BFB99F1EB5277ADA /* ColorParser.h in Headers */, - 1FC45B5DFFC809E5956FEBDC623F6E56 /* Constants.h in Headers */, - 16013B8E32D0EB1F8B2369C384D58B10 /* Dictionary.h in Headers */, - 84CA18BE138F44EF0F5637B8446107A9 /* DictionaryParser.h in Headers */, - 1E1378A0D80A52A7D5A1D6ED687280D5 /* DotIndicatorOptions.h in Headers */, - A064A91436CC6CC787FFD33AC244C46C /* DotIndicatorParser.h in Headers */, - 0C00F9D5E4C833DD00F3E775FE90CBEC /* Double.h in Headers */, - CF957B9B125F184939C84A93EF59C5AD /* DoubleParser.h in Headers */, - D774C031567A4BD88C6AFB9FBE62E7BC /* HMSegmentedControl.h in Headers */, - AB8F5980F963B2B8C61D08DCD8CA6396 /* Image.h in Headers */, - 0B10AB257B2B479E25080267E4F2E068 /* ImageParser.h in Headers */, - F590C87CF643903C160ED73EE239BF61 /* InteractivePopGestureDelegate.h in Headers */, - 7491D51B57CDAEDA498F32CE7EA6E4B1 /* IntNumber.h in Headers */, - 4205525A8438EFE1DEEE88D748BD6D9F /* IntNumberParser.h in Headers */, - E3BD9818DF02F7DBE41B17349E6EA565 /* MMDrawerBarButtonItem.h in Headers */, - D7574FFCDD69B8B601B6A582D6D22F24 /* MMDrawerController+Subclass.h in Headers */, - B84B0FC886B78B2A7E88863E954BB8B2 /* MMDrawerController.h in Headers */, - 8E78B89CBBAB8A08BB8A76EC306AFCED /* MMDrawerVisualState.h in Headers */, - D13551B84E815449522E6E27198CE95A /* MMExampleDrawerVisualStateManager.h in Headers */, - A15A919726B140341A8F8EAB5AC34792 /* NoColor.h in Headers */, - DF1AA6183C7FE6F5BA5041CAE66C1365 /* NullBool.h in Headers */, - 79018AA12A5F34A328DF9DCB98902828 /* NullColor.h in Headers */, - 6B6B2D01364D5C711FADEB3B66898A59 /* NullDictionary.h in Headers */, - B87AF1C872E217F35DDF3BEE19370AD9 /* NullDouble.h in Headers */, - 4D3E8247389C17906F149CF5DA6AACF3 /* NullImage.h in Headers */, - CCE9641F0891D21F99F72305FB0EDB50 /* NullIntNumber.h in Headers */, - A71AB2322E4F7D681E904143E9015E57 /* NullNumber.h in Headers */, - 6A0201DF3CA676FC4A8DE545E6B7F5C5 /* NullText.h in Headers */, - 601FC7F48C092C38222EC1A6AF8834F3 /* Number.h in Headers */, - 86D81F40446FB6198718EBAC6A899F26 /* NumberParser.h in Headers */, - 83E1CCA2688CE3C442DCD34DFC269524 /* Param.h in Headers */, - FB62B1676306628C9C16C9826596492D /* RCTConvert+Modal.h in Headers */, - 607EA1AE969ED08AE9D70C856B067097 /* RCTConvert+SideMenuOpenGestureMode.h in Headers */, - DD85901CD7994F00F93D0D86CE71B849 /* RCTConvert+UIBarButtonSystemItem.h in Headers */, - 0DF134145E12774AEC85D7285E4B3CC2 /* RCTConvert+UIFontWeight.h in Headers */, - B0C3BAC20AEE45C41108A912CA956933 /* RCTHelpers.h in Headers */, - A3F10F7DFE8C76F15065D0018D5CF051 /* ReactNativeNavigation.h in Headers */, - B146420740D7D1D582D5015783CB2B81 /* RNNAnimatedView.h in Headers */, - E8FF13EEF4E670B99E3962145D24EFAD /* RNNAnimationConfigurationOptions.h in Headers */, - BD3A4AACBBA522126E917ACC75E8FA1A /* RNNAnimationsOptions.h in Headers */, - 4BD38420E443CB083CFEEFF28414A6FA /* RNNAnimationsTransitionDelegate.h in Headers */, - E2CA5C80C01DD7FADB9530E3466BA913 /* RNNAnimator.h in Headers */, - 7A357E2B037D7C26308F5A40BECE6A8D /* RNNBackButtonOptions.h in Headers */, - 2E5D0AC5FD3274231FCD3B2716045DCF /* RNNBackgroundOptions.h in Headers */, - ED301E94B2068AA278919AFEA09FE262 /* RNNBasePresenter.h in Headers */, - A237D8910ABCF6D68AA571A6567FF5EC /* RNNBottomTabOptions.h in Headers */, - 9E2903CDC0C081A339EBA603C1A127A5 /* RNNBottomTabsController.h in Headers */, - DA2AF93477179348CA18DC711882B2AE /* RNNBottomTabsOptions.h in Headers */, - 2BB290E9EB92FF9267B3EE91B8764C1C /* RNNBottomTabsPresenter.h in Headers */, - B36C3742F965105E47B1599DD8C528D2 /* RNNBridgeManager.h in Headers */, - 2871E3053A692634D850C88E1C738017 /* RNNBridgeManagerDelegate.h in Headers */, - D8385CF35B82319278CC94CDA260AACA /* RNNBridgeModule.h in Headers */, - AFC5CCEEB415C4C3F17B65A333B6A056 /* RNNButtonOptions.h in Headers */, - 62D23A901C04CD7F513C1730D323A247 /* RNNCommandsHandler.h in Headers */, - 6D7B354116A04A4F30D397582138615D /* RNNComponentOptions.h in Headers */, - E866D04497A7527CB62A418A6AA1D504 /* RNNComponentPresenter.h in Headers */, - 7BC145E51F47500C208DA14AFA626B6F /* RNNComponentViewController.h in Headers */, - DDD7C3E67E5360C83BE85D89EEE4BBB8 /* RNNComponentViewCreator.h in Headers */, - F21C9C5744C91BDE7821A567D854887E /* RNNControllerFactory.h in Headers */, - 35E9BC9D1C48E6DCDA7538C60B64FC31 /* RNNCustomTitleView.h in Headers */, - 3E4A02F17570A0CD3B85AF90A6DF2F30 /* RNNCustomViewController.h in Headers */, - BE41A9F7377C9D038B8BDE65B3FB5D91 /* RNNDefaultOptionsHelper.h in Headers */, - 5A288BAD66D9404948F19727C698798E /* RNNDotIndicatorPresenter.h in Headers */, - B4862F28DA30304FF32E5655112D0123 /* RNNElement.h in Headers */, - F70CC3DA584E8C5D52EA04F1AB96F8B8 /* RNNElementFinder.h in Headers */, - 30C38A539D76F5CB623A02F45A74DEF4 /* RNNElementTransitionOptions.h in Headers */, - DBF0F20F97E0297BFC11043993C870A2 /* RNNElementView.h in Headers */, - 39D993F206539C591CA91BE41FBF19BB /* RNNErrorHandler.h in Headers */, - 62200179A2DA09DD3556BA3F3D938B3C /* RNNEventEmitter.h in Headers */, - A906775665FCB9BCAEAA1F7FE7DE242E /* RNNExternalComponentStore.h in Headers */, - AF4FD6E0CA58CB479546E1AFD54E4053 /* RNNFontAttributesCreator.h in Headers */, - 35900ACB5DD96360918B9DF10C4540C7 /* RNNInsetsOptions.h in Headers */, - 5C854D3133F5E775E88503B53BE0FF49 /* RNNInteractivePopAnimator.h in Headers */, - 1585A8D91C7603D4B05FECE1A955E33F /* RNNLargeTitleOptions.h in Headers */, - 68E1AB877BCE99BD4A8CFB22BEB0B21E /* RNNLayoutInfo.h in Headers */, - BE036C47839E835DB24FD1E51E6C714A /* RNNLayoutManager.h in Headers */, - 3F195E0D028F7A593BDD4C179370817B /* RNNLayoutNode.h in Headers */, - E51B4B55FF179B76B339472C13733860 /* RNNLayoutOptions.h in Headers */, - 10D75000B1D9D2C06169DC48969C5A51 /* RNNLayoutProtocol.h in Headers */, - 63B57C48236492E9F40FA37A65B55385 /* RNNLeafProtocol.h in Headers */, - 7F4CA2CD09BB60E87CFB43AC345862D8 /* RNNModalManager.h in Headers */, - E77EE2CA92B32B9FF59423F62EB4734C /* RNNNavigationButtons.h in Headers */, - CC0256A5D92A73EDBCAFFDB2F83092F2 /* RNNNavigationOptions.h in Headers */, - 7BE4A6B148EA29599613E6A52F8F1F0F /* RNNNavigationStackManager.h in Headers */, - EDF41D9FB9253EC681F5A494AC50851F /* RNNOptions.h in Headers */, - 1780F26357716290463DC2394A17CFEA /* RNNOverlayManager.h in Headers */, - C9A0C92F8A25E5580DD07C7F591250C1 /* RNNOverlayOptions.h in Headers */, - C957C9DABAF85AA21729B674A1CA1E46 /* RNNOverlayWindow.h in Headers */, - 7CF19BFA6C7E22CE87E59DD79832A427 /* RNNPreviewOptions.h in Headers */, - A1827221095540B21D0511B9354F68DE /* RNNPushAnimation.h in Headers */, - 85EDF1B8B0FF6D7F5BD18482CD4BFC4D /* RNNReactComponentRegistry.h in Headers */, - CBB2F8ECAE8A4C59B20A0B7A87F71A6A /* RNNReactRootViewCreator.h in Headers */, - E81D66A2CEC77366865F4E7C8A39F11B /* RNNReactView.h in Headers */, - C2F5055E270426EE813E0A941D6B5B09 /* RNNScreenTransition.h in Headers */, - E53C1816D23C20EF058AB492094CCB94 /* RNNSegmentedControl.h in Headers */, - 456ADC02E6A86CD322C71340BE0A9C62 /* RNNSharedElementAnimationOptions.h in Headers */, - 2F8411BA91EB897495BAFB2C6B45ABDA /* RNNSideMenuChildVC.h in Headers */, - CA5CDEA4E80891679C13C9E39CA91CC1 /* RNNSideMenuController.h in Headers */, - 879173753E86439CD542A1BC3D0125CE /* RNNSideMenuOptions.h in Headers */, - D72A307A1C972FB71199896136B9C182 /* RNNSideMenuPresenter.h in Headers */, - DD14C5876BB18549C02F7C33313ADD03 /* RNNSideMenuSideOptions.h in Headers */, - 8FA866D1356D2D54484649D124D70CA5 /* RNNSplashScreen.h in Headers */, - A2FF432D8E4D245C9B3589353AC6890E /* RNNSplitViewController.h in Headers */, - 1B3D9B47C0EF7F24B5CB8020649F957B /* RNNSplitViewControllerPresenter.h in Headers */, - 5847BD8888C4642D48F1F210A996D46F /* RNNSplitViewOptions.h in Headers */, - 447619CA477CC8883FAE09B42D813116 /* RNNStackController.h in Headers */, - C9F4E8CB34B83F6685C5DBDE37550BB8 /* RNNStackPresenter.h in Headers */, - 0D155F019C5A9F0D79C2CF2B4AAEA547 /* RNNStatusBarOptions.h in Headers */, - 9FAA60CC77CF8EF3AB8F1E3B153DE37A /* RNNSubtitleOptions.h in Headers */, - EDD45AED1CAEC159E6F048E86D6AEB3C /* RNNSwizzles.h in Headers */, - 8A18A2C0F83BD793AE797A8CC69D79C9 /* RNNTabBarItemCreator.h in Headers */, - CBCF289E505A38970234BDF773007649 /* RNNTitleOptions.h in Headers */, - 735D5435720FAEB26305963B0AADD9D4 /* RNNTitleViewHelper.h in Headers */, - 731611E72D84C908DDFBD9C9F159C6E9 /* RNNTopBarOptions.h in Headers */, - 3FD44E7E0066B8D8357C822C24EA5F38 /* RNNTopTabOptions.h in Headers */, - 3359338126F874B499B3B0B05E9B99A7 /* RNNTopTabsOptions.h in Headers */, - E2DE2F1F0BD13089093EB31C1A3A15F1 /* RNNTopTabsViewController.h in Headers */, - 5815D5E2B710B80D3DA6085CC06EE685 /* RNNTransition.h in Headers */, - 46E2200CF1535267C2F512105EDEEE23 /* RNNTransitionStateHolder.h in Headers */, - 2E2E6A363EE18A7BB6647267524991B5 /* RNNUIBarButtonItem.h in Headers */, - 43CA50BAC296CE0518AD83D07B151B00 /* RNNUtils.h in Headers */, - BBC20D260AE873CE3226976DE2F86C04 /* RNNViewLocation.h in Headers */, - 7D14E2160A0BAD27E92DC1C96270E495 /* SideMenuOpenGestureModeParser.h in Headers */, - E567AF08597093359D7226F558D9C1F5 /* SideMenuOpenMode.h in Headers */, - 2BC39E4C735FD06FA0380A99B18DA970 /* Text.h in Headers */, - 6A975015D0AD8679EBFB12CA7C0A5BE4 /* TextParser.h in Headers */, - BA32606270DBE115F0EA2654D6106588 /* UIColor+RNNUtils.h in Headers */, - F84C800D0F852EF5632B4F913852E25B /* UIImage+insets.h in Headers */, - 9FCA6B4D5FA3286CD125887881B637B5 /* UIImage+tint.h in Headers */, - 0C964E0975E2368E74CFE7BAEDC9DB67 /* UINavigationController+RNNOptions.h in Headers */, - 9F312F952F7485AE6D383515E1FC4CA6 /* UISplitViewController+RNNOptions.h in Headers */, - CEB909AF4650CFE3FE73BF80DD7EC3C4 /* UITabBarController+RNNOptions.h in Headers */, - 92D4E5789B9623A54C7B50A60DEEB760 /* UITabBarController+RNNUtils.h in Headers */, - 69DFFBB6FF8F98C03F48E0D98C49DB77 /* UIView+Utils.h in Headers */, - 0E9EDB671926629962A2922BD11A67BC /* UIViewController+LayoutProtocol.h in Headers */, - 655E04DC8FA4D09CDDC3979CA1C9AE53 /* UIViewController+MMDrawerController.h in Headers */, - 655726D09A744064202EC5A8693359CE /* UIViewController+RNNOptions.h in Headers */, - 7D3E61BCDCFF4E313F374440B38AA13C /* UIViewController+SideMenuController.h in Headers */, - C9776F9CEC65FDED38561A4CA9BE2E77 /* UIViewController+Utils.h in Headers */, - E1A487FDA87DD81E4EB256FE6D9E3D95 /* VICMAImageView.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 772E02260AE391DDE613FAC47C7C2D59 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 3A5E56D08FE5FC0E93DF681DDE97D308 /* Bitfield.h in Headers */, - 926ED46DF3426C4C0484B7ACB10D3A53 /* CompactValue.h in Headers */, - 44FDD8ED14E309934B6BE2CF860ED0DC /* event.h in Headers */, - 6A097507AE79C26A7A5E84DF07013891 /* experiments-inl.h in Headers */, - 15DBDF6C8903E7EB258F749627F30AF8 /* experiments.h in Headers */, - ABF2CC2A82B21BD83C54BC8D8459AB63 /* log.h in Headers */, - 633350AB57B0BB34DEB7A57D9707028A /* Utils.h in Headers */, - C919781D88E19B76B6F01FE770D86872 /* YGConfig.h in Headers */, - 4394779C86EFD6AA2557B2040D5CB9C3 /* YGEnums.h in Headers */, - 27A52C24BC312D652637032A49B2CCA7 /* YGFloatOptional.h in Headers */, - 997BB5826E9C4807492710451F38B50D /* YGLayout.h in Headers */, - 094A389794D3783B01066EED19456F05 /* YGMacros.h in Headers */, - F3ACCF48EE9D4D168F349A203E4574CE /* YGNode.h in Headers */, - 07B5831A85A2C62B2131F351FBB751D5 /* YGNodePrint.h in Headers */, - 99D9ACF54AF303E8C8673C96A782078D /* YGStyle.h in Headers */, - 08067CAD54D32A94BEEFC335B1D42CC7 /* YGValue.h in Headers */, - AD51BA43873DFE8CC3C27D856A4546DB /* Yoga-internal.h in Headers */, - EDC6F61D8EBD9AB8E1B58284102EE99F /* Yoga.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 78CDF8FD0602D2EC7FD7270E93B72E4A /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D9DF1EE668A48E101B4DE3E9BA5B5251 /* JSIExecutor.h in Headers */, - CCBC7DFE55808D219BC9B1D9989B62B7 /* JSINativeModules.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7D729B7BED2874A853FD5DF707B09D21 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 906844B36BE813F1185F2328AC300FF1 /* log_severity.h in Headers */, - C19E8A5D19A1B49C02CBF1B71BA3D71C /* logging.h in Headers */, - 162CDAC1A54E09EFBB65387ED9CE74AE /* raw_logging.h in Headers */, - 610C737170990323A65A58D908F8ECA3 /* stl_logging.h in Headers */, - 29D3F2BF7B47DF0C4F94937B6098E6C5 /* vlog_is_on.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7D7CF023A19520C7F60A8DB8EE1D6BCE /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 9E32008552879FEDA6C5F164A6117A02 /* CoreModulesPlugins.h in Headers */, - 04EF0FB604FEFD60693CF713468F015C /* DispatchMessageQueueThread.h in Headers */, - FDBAF6439467D3A92850A0A6D6736E60 /* JSCExecutorFactory.h in Headers */, - 22396DD662D670DBD1E56B46899E0A21 /* NSDataBigString.h in Headers */, - F14E6DF65029801DF73C6E5626CB1E8F /* NSTextStorage+FontScaling.h in Headers */, - 1E73BBF7421964503734E50DAC13958C /* RCTAccessibilityManager.h in Headers */, - 7FFDC81A8B022B3E9547881BF0C53428 /* RCTActionSheetManager.h in Headers */, - C08B14F8E317755AB9F8F2D70FA22B16 /* RCTActivityIndicatorView.h in Headers */, - 6092F053319552DBAC04F9DE699956BA /* RCTActivityIndicatorViewManager.h in Headers */, - 3A45D99D3CA3287DD963E70D03826FAA /* RCTAdditionAnimatedNode.h in Headers */, - CCB3004A303FA33AF597BBA0ABF46F1F /* RCTAlertManager.h in Headers */, - 265F56208ABABC040F61CD5BD38ED3FC /* RCTAnimatedImage.h in Headers */, - 05E44509B5B1ED0EDD9136C2C661B37D /* RCTAnimatedNode.h in Headers */, - 941A96DD0D421504D068FD078D0602E6 /* RCTAnimationDriver.h in Headers */, - D15A2B9818A7C5B57C47465992BFA806 /* RCTAnimationType.h in Headers */, - E280DCFD418D6D9D730BDD4DC8785FFE /* RCTAnimationUtils.h in Headers */, - D4A7E44648FAA7CC3DECC62D4B274945 /* RCTAppState.h in Headers */, - 06E16858E605BEE050CF34C6B7BFDE4F /* RCTAssert.h in Headers */, - 059F5E9520406C9886CDE3122B53DD5D /* RCTAsyncLocalStorage.h in Headers */, - FBFF4FFC1C7203191B2ABD4852C48896 /* RCTAutoInsetsProtocol.h in Headers */, - AA9FEF3F2CC1FD02BA55E9BBF3224367 /* RCTBackedTextInputDelegate.h in Headers */, - 022888DDEC654EE7AB464AEED6B87A3E /* RCTBackedTextInputDelegateAdapter.h in Headers */, - 6C26391854106ACB1C5E86E2CA670EA6 /* RCTBackedTextInputViewProtocol.h in Headers */, - 3A6BF122355C77A95EC23CFF4F23DC18 /* RCTBaseTextInputShadowView.h in Headers */, - 727DAEA19E5171C0C61EAAD9B3709D60 /* RCTBaseTextInputView.h in Headers */, - 34CB32C527933C4A7C572D2C060C7A4B /* RCTBaseTextInputViewManager.h in Headers */, - 1FE2120FB51AC3CFF90430C57FBA4485 /* RCTBaseTextShadowView.h in Headers */, - 883A922D1BFE8EDC4319E9B99444E1F5 /* RCTBaseTextViewManager.h in Headers */, - 20A92E9C341E210BC90287B7E5F67616 /* RCTBlobManager.h in Headers */, - CBD84F95DFE7C7DB79E3A894F378B537 /* RCTBorderDrawing.h in Headers */, - D602075009B1429AB8F3F530A7CB76C1 /* RCTBorderStyle.h in Headers */, - EE967BC5C40256F1F4E8989D777C3A38 /* RCTBridge+Private.h in Headers */, - 1E15AD91BE832AEE1E6A66F0FBB4FF2F /* RCTBridge.h in Headers */, - 9EB9F21E83826E1555478815A28B90A4 /* RCTBridgeDelegate.h in Headers */, - 0AF85CD37459950D464ECA01DF2E8E7A /* RCTBridgeMethod.h in Headers */, - 55E581F6D83902BCE791164032CD8FA9 /* RCTBridgeModule.h in Headers */, - 0B6A16ECDD5C560B808AB0615164B388 /* RCTBundleURLProvider.h in Headers */, - 304FD67FAFB0598D3603A2463AF310D5 /* RCTClipboard.h in Headers */, - D64EC2A207E520CAC7FD95490FB3B420 /* RCTComponent.h in Headers */, - E5C6E1CB8D701EF04B3B4A88CB5EBAEB /* RCTComponentData.h in Headers */, - 66B5F252959930AAF9137F4C23A88603 /* RCTComponentEvent.h in Headers */, - CD6EB6A8BAC4127FFD44D230AD6D83D6 /* RCTConvert+CoreLocation.h in Headers */, - 6A50D8DFC5A6BD516FDB2904FDD1D6C6 /* RCTConvert+Text.h in Headers */, - 4E8EA18EA26EBA67C4FC2E1E1691C5F7 /* RCTConvert+Transform.h in Headers */, - 8756B5AC0A7C52042C4BA48A8EBD49B4 /* RCTConvert.h in Headers */, - 382339DA4E05416ECF3F1A7D3D24675E /* RCTCxxBridgeDelegate.h in Headers */, - C7AB0C74FACC8FB8ED7AA5E38999D2BE /* RCTCxxConvert.h in Headers */, - 9DA021A06A24EA8BA61A9A2952A1E3F0 /* RCTCxxMethod.h in Headers */, - 070CD8EA221136BE82120EB747BE531F /* RCTCxxModule.h in Headers */, - F5BB886BC1EBB2A424AE9EE9181ABDF1 /* RCTCxxUtils.h in Headers */, - D3E6EEA9641B5852C5B326C098FE7415 /* RCTDataRequestHandler.h in Headers */, - 6AD85FC875A6506A689D1BE11E2A1C27 /* RCTDatePicker.h in Headers */, - C34870C7ED16DC9641A6F0E6BFADD3DE /* RCTDatePickerManager.h in Headers */, - C3CE9B1296228D05C37E4E14CF3E4FB6 /* RCTDecayAnimation.h in Headers */, - 27888B68B7A7E77AFAD5574BB05DE769 /* RCTDefines.h in Headers */, - 4FDA0DB222196A13997B4607506E5B70 /* RCTDeviceInfo.h in Headers */, - 1BB4DA92F4F7AFE053BBE35DB3F71CE9 /* RCTDevLoadingView.h in Headers */, - ECAC33586186CB94B60F253DAFBEAB01 /* RCTDevMenu.h in Headers */, - D2E3F128183968A01722637960BB62D3 /* RCTDevSettings.h in Headers */, - 70A03FCE92C5F71B3E9C40475C556132 /* RCTDiffClampAnimatedNode.h in Headers */, - B711DC0A736D6097B0F95C7D1A976246 /* RCTDisplayLink.h in Headers */, - 8FA479C3B1D39A9BE6EE22A831A7ACF0 /* RCTDivisionAnimatedNode.h in Headers */, - B8E1B2766B8F4286673BA0B890B66089 /* RCTErrorCustomizer.h in Headers */, - BF5BFFED0F9BE163BFED37CECF6D034D /* RCTErrorInfo.h in Headers */, - EB9447AD0415217885C538ED8CA120B5 /* RCTEventAnimation.h in Headers */, - 0E5AA5B101514B13786A2E23ED8C2D64 /* RCTEventDispatcher.h in Headers */, - C465CC3EF3F4442CED2AFE6D3B71E956 /* RCTEventEmitter.h in Headers */, - 14B767D8FB1181872C293B08A7114EA4 /* RCTExceptionsManager.h in Headers */, - 81E07DC40A3D5FD65E5C8417CA28C8C3 /* RCTFileReaderModule.h in Headers */, - 4256BCE74B770988782EE062ADD77091 /* RCTFileRequestHandler.h in Headers */, - 04A8070FC120CD75E203CFB4A072EC86 /* RCTFollyConvert.h in Headers */, - 715A21D9C83BD49F83A571788BDF1BBA /* RCTFont.h in Headers */, - 53C95CB9BF21F51E83BEF6CAB1F581A3 /* RCTFPSGraph.h in Headers */, - 1FD5630A16DFB1C22C0FD1DEBF45B426 /* RCTFrameAnimation.h in Headers */, - BEB36E500C7AD02AAB33B43BF82553C1 /* RCTFrameUpdate.h in Headers */, - 280BD4D3A0706CD550494E4CD1867FDA /* RCTGIFImageDecoder.h in Headers */, - 9B9478C37E0B0E137F466977AC305450 /* RCTHTTPRequestHandler.h in Headers */, - 59EB1A99722546E787C32C975E3D8346 /* RCTI18nManager.h in Headers */, - 5F20378F69B97565A24B7827D383380B /* RCTI18nUtil.h in Headers */, - 4DED53FF3E164ED3FEF93E8A476CACFD /* RCTImageBlurUtils.h in Headers */, - 745CA9D78906A77840D6F266FA495729 /* RCTImageCache.h in Headers */, - 5F3979C1A4B4A0BAA173A21F0192D66D /* RCTImageDataDecoder.h in Headers */, - DAE3A5F5238022292E47333A1456CDF4 /* RCTImageEditingManager.h in Headers */, - C81CB174FD8729398234BF36FD9565BF /* RCTImageLoader.h in Headers */, - AB3D7DB1EA128DF34656E9FDFCDAEF1A /* RCTImageLoaderProtocol.h in Headers */, - 7DDD639460A038566BAF5099F01CBA48 /* RCTImageShadowView.h in Headers */, - 71DA7D68337F4F395D27E9A4783410B7 /* RCTImageSource.h in Headers */, - 1A875C685B44527B80CCB2EBEEB1D8F0 /* RCTImageStoreManager.h in Headers */, - 3BD28F2A0144E1D6C83EA763376558D2 /* RCTImageURLLoader.h in Headers */, - B8E6AA5140889B505D7C041C2BDE358D /* RCTImageUtils.h in Headers */, - DBE43D26DE06EE2C5DFFE92024BB14D0 /* RCTImageView.h in Headers */, - D8EEAC7C783F8F8799CE65437B2336DB /* RCTImageViewManager.h in Headers */, - D2090274F10AB25196240CE3FF379E96 /* RCTInputAccessoryShadowView.h in Headers */, - FE9B5C3BD53A20ACA7827E225EE6EBC5 /* RCTInputAccessoryView.h in Headers */, - 3A66347FEE7E2D6587ADAEFCEE91FA67 /* RCTInputAccessoryViewContent.h in Headers */, - 5AA00AFDFC089350B3C375F5A0EFA1CB /* RCTInputAccessoryViewManager.h in Headers */, - F81FF22160618B72776526BDBF04DA77 /* RCTInspector.h in Headers */, - 18E8EAC25CD3B08EE19B227D080345A0 /* RCTInspectorDevServerHelper.h in Headers */, - 049D14193CB592C40AC473D5A12BF529 /* RCTInspectorPackagerConnection.h in Headers */, - ED8406232AC807B51FD5E6F8E11B1184 /* RCTInterpolationAnimatedNode.h in Headers */, - B51985E814CD545D8F72520796A8BED1 /* RCTInvalidating.h in Headers */, - 54CABAE8AE8D18D057F28DF3F46B373B /* RCTJavaScriptExecutor.h in Headers */, - E8A4BA0AFC1B0895C8A2614959A56E58 /* RCTJavaScriptLoader.h in Headers */, - 4020DCFECC7091CE67C22E0BE50173D3 /* RCTJSStackFrame.h in Headers */, - 067C4FD75A3C64DD1F364B699BD8D465 /* RCTKeyboardObserver.h in Headers */, - 38AC1424380091E7EB1B52A694CE77B5 /* RCTKeyCommands.h in Headers */, - 0C77CD28A6EA9D756DB31241D795958C /* RCTLayout.h in Headers */, - 0055375663938D8B6B96AFD49ABDE3A2 /* RCTLayoutAnimation.h in Headers */, - F01722E2A34C4286F5C8531A91301574 /* RCTLayoutAnimationGroup.h in Headers */, - F7E6ADB5A82436CC44CDD9E45DC38EDF /* RCTLinkingManager.h in Headers */, - E30D350E328FC6B89FBE47AAC06B36D8 /* RCTLocalAssetImageLoader.h in Headers */, - E610C2244971A9291BE3ACFC2313C182 /* RCTLog.h in Headers */, - 8E51DA0F46072D058BFD6701155956F2 /* RCTMacros.h in Headers */, - 2EB39B5FC0C0735E897588DA40917AE2 /* RCTManagedPointer.h in Headers */, - F396192FB6CE41B6D7350FED798D864D /* RCTMaskedView.h in Headers */, - E6F486259DE4E983CF4B2FD33BFDAACF /* RCTMaskedViewManager.h in Headers */, - 0EA5654038B02AADA34309D0D0A603E3 /* RCTMessageThread.h in Headers */, - B9CE32CCD128B13B2F754DD3CB76AFE0 /* RCTModalHostView.h in Headers */, - 7A3CA2E07BBDAA0F4284E6B44F1ABCBF /* RCTModalHostViewController.h in Headers */, - ABE34A7F75F57F78DF7BE31C00746692 /* RCTModalHostViewManager.h in Headers */, - 0DDA476F8D2ECE90A4230467A9902E47 /* RCTModalManager.h in Headers */, - 9C24BABFEE18EA52934D28434186A63E /* RCTModuleData.h in Headers */, - AFA988F46AAC347C3B02DAD46AF0F9D4 /* RCTModuleMethod.h in Headers */, - 4DD22FF26350F89CBFCDB2C113693015 /* RCTModuloAnimatedNode.h in Headers */, - 9D71E2390B52C0F7A5D9EAE498DCEB54 /* RCTMultilineTextInputView.h in Headers */, - E36C51C3E220533F43779A4C14BDF1B9 /* RCTMultilineTextInputViewManager.h in Headers */, - 9B6011D862C3DE777B5033A993DEE577 /* RCTMultipartDataTask.h in Headers */, - A38D1D1C7A43023A1B0CA9950285C61A /* RCTMultipartStreamReader.h in Headers */, - 96365DFDFEDC472DEA1732423F241192 /* RCTMultiplicationAnimatedNode.h in Headers */, - 4DC0EF99A792A98E615C756F7473E485 /* RCTNativeAnimatedModule.h in Headers */, - B56D6522E9DBE1544BF2B20FD944A8D8 /* RCTNativeAnimatedNodesManager.h in Headers */, - 73E48857817C53C1899C14B4EE810FAD /* RCTNativeModule.h in Headers */, - 4A66EC92A6F217971BC5F3E575F1997B /* RCTNetInfo.h in Headers */, - FE1616727C8839FAE81A846F60310781 /* RCTNetworking.h in Headers */, - DE941FAD016BA577A594227BEC449D5E /* RCTNetworkTask.h in Headers */, - DF96AB3308E52565A04CD6B0DFF66818 /* RCTNullability.h in Headers */, - EA6023DB70DB81EB2683A8BB7C38CF83 /* RCTObjcExecutor.h in Headers */, - 73EAF34584909024A56469DEE0C99F5C /* RCTPackagerClient.h in Headers */, - D5990A20D9548425F38F87E4CAAF53E7 /* RCTPackagerConnection.h in Headers */, - 5E5A68C8BCFE6CD15198C8BB751F058F /* RCTParserUtils.h in Headers */, - ED8DFEF2925738083FDD82E187BAE53E /* RCTPerformanceLogger.h in Headers */, - D082688B674EE2208906EF4596C6908C /* RCTPicker.h in Headers */, - F978A9DF718A5D75012FCF2212EA24A8 /* RCTPickerManager.h in Headers */, - CECCE3C5CB8954E76878C910F4D36638 /* RCTPlatform.h in Headers */, - 4B3488F749EED7EF916BEA16B6B9A5A5 /* RCTPointerEvents.h in Headers */, - E374F3695520D2A247004F69FAF8FB6B /* RCTProfile.h in Headers */, - 8C2BF29F4764DC9F98F80FC8EC651EDC /* RCTProgressViewManager.h in Headers */, - 898FEE7242BBAA7E1BEA777B0D626C41 /* RCTPropsAnimatedNode.h in Headers */, - 2EF4F8FFFCBBD5E86CD281FAB1A5A6D3 /* RCTRawTextShadowView.h in Headers */, - 856CD85645E776FF4FCA9BA204268D28 /* RCTRawTextViewManager.h in Headers */, - B084CFF79C9861F55BE5D25D33FB2E4D /* RCTReconnectingWebSocket.h in Headers */, - C28AF797E6A2FDBA3A2FC1083AA204C8 /* RCTRedBox.h in Headers */, - FA42CF4FDAE3EDEE8B5D4C57A5CAA731 /* RCTRedBoxExtraDataViewController.h in Headers */, - 2DC001BA6A228F9E311EB433E1B77A02 /* RCTRefreshControl.h in Headers */, - C468445B3A9C01F4B3DEBF7897799B6F /* RCTRefreshControlManager.h in Headers */, - D4039B7C9D0664273E7640238C9117C6 /* RCTReloadCommand.h in Headers */, - 51AE0D5734F266EBF81CAA6499722FD4 /* RCTResizeMode.h in Headers */, - 836AF0719180B60DF83DFD21EA00C34D /* RCTRootContentView.h in Headers */, - 5F121AAC26099BB274A6319E40123819 /* RCTRootShadowView.h in Headers */, - 1B43DA275F423D1FD4AE1D57BBD09919 /* RCTRootView.h in Headers */, - 124D3CD707A30F680027634347ACE228 /* RCTRootViewDelegate.h in Headers */, - 42FEF202765D890326F6A6FBECEBA4EF /* RCTRootViewInternal.h in Headers */, - 142C1508D75694497BF3ED67232080AD /* RCTSafeAreaShadowView.h in Headers */, - F851A3334F426A1A8747B2C1F82BDDC8 /* RCTSafeAreaView.h in Headers */, - DAE1D53E1CB1AF01BF988E7E9D421E2D /* RCTSafeAreaViewLocalData.h in Headers */, - 371F9F1DEEE1613A4038E3B553683F13 /* RCTSafeAreaViewManager.h in Headers */, - C0B6128EAB81DF4B5C7ECBC60B5F4828 /* RCTScrollableProtocol.h in Headers */, - D551D6EBCC58C874EAED9BECFAC7F957 /* RCTScrollContentShadowView.h in Headers */, - B76E9345993F77912E36B899C50E0D03 /* RCTScrollContentView.h in Headers */, - D4393C515A60BA3486325521F01E5CBE /* RCTScrollContentViewManager.h in Headers */, - 1984A935CD4660D4C82B956848E5EF5A /* RCTScrollView.h in Headers */, - 08C6D59F9E8BE37D00E2ABBE15498209 /* RCTScrollViewManager.h in Headers */, - E9ABE6CDA901BA67D9F98839416BEACC /* RCTSegmentedControl.h in Headers */, - 5FA05CE61D75D84C7638DACCE3FA94E2 /* RCTSegmentedControlManager.h in Headers */, - 496B6621ED29DCBD6F65DBB09A5A9FF8 /* RCTSettingsManager.h in Headers */, - 08EA5A173F26EF0B7CC6135BEC4B7107 /* RCTShadowView+Internal.h in Headers */, - F094926DC4D2352308536A6D7A52EC15 /* RCTShadowView+Layout.h in Headers */, - AD18B7A0E8DDDC93415D37E22B649F4A /* RCTShadowView.h in Headers */, - 05774B6F81CBFDA2431F43D5DF3DF7FA /* RCTSinglelineTextInputView.h in Headers */, - 228034091EEDE7AC4B090F4CF5444CBE /* RCTSinglelineTextInputViewManager.h in Headers */, - B9B71E4D06047FCF2117114B0FF8BFB5 /* RCTSlider.h in Headers */, - D91E7E6D452A3DA8FF9524AC08E8093C /* RCTSliderManager.h in Headers */, - A2C124DAF0039F63864FDE72CF633349 /* RCTSourceCode.h in Headers */, - 731C94EF3D4F29BECCEB3A8F190AF63D /* RCTSpringAnimation.h in Headers */, - 366D40DB9F9B6E7B48E91F6567BB4BCA /* RCTSRWebSocket.h in Headers */, - 1BEB900F68E96C21FD9580A82179CB49 /* RCTStatusBarManager.h in Headers */, - 54DC3F2B6818036E06CD8A58CC183B31 /* RCTStyleAnimatedNode.h in Headers */, - 00535233D8F2FF65B7FC0C6EBBFA6660 /* RCTSubtractionAnimatedNode.h in Headers */, - 83093481DAB784A9C9A40F1D67248B62 /* RCTSurface.h in Headers */, - C080E71D0C6CDE3C7D84D56D70CC3305 /* RCTSurfaceDelegate.h in Headers */, - 81720DCC228080429678CB7CE1316152 /* RCTSurfaceHostingProxyRootView.h in Headers */, - B847045B9594652516104C8D9F96040A /* RCTSurfaceHostingView.h in Headers */, - 4CC303549BB9AFD3C403F981F18F3384 /* RCTSurfacePresenterStub.h in Headers */, - 03DC08A1E17A86861031DAFFE4995CA4 /* RCTSurfaceRootShadowView.h in Headers */, - E76867E1B103BDF58882841F5400D9C3 /* RCTSurfaceRootShadowViewDelegate.h in Headers */, - DC08C129DCC4AF03CC0987E719AC93FC /* RCTSurfaceRootView.h in Headers */, - 42A905C4C966AFA69E4A7F1C6531F06D /* RCTSurfaceSizeMeasureMode.h in Headers */, - 87A5449F2DFA8A457F23EB6C3595477D /* RCTSurfaceStage.h in Headers */, - 6406B7EE27B553C0142B865418E8B46C /* RCTSurfaceView+Internal.h in Headers */, - CD42B174C547C06175A3B735E2D6F227 /* RCTSurfaceView.h in Headers */, - C5B4C06C4D28832A72CCB4CE33A10670 /* RCTSwitch.h in Headers */, - F00E5B9E3F723863FE28BF398C8B9E78 /* RCTSwitchManager.h in Headers */, - 1C3FC792BE321692978890191B26D0ED /* RCTTextAttributes.h in Headers */, - FA0866E6A67970A9021695DD201F297F /* RCTTextDecorationLineType.h in Headers */, - E75B4970944AD4C977568BB51345E0F7 /* RCTTextSelection.h in Headers */, - F7AC13F95A17CF6206A70FE3D8603087 /* RCTTextShadowView.h in Headers */, - A71E57B5FD8371D966838921ADD65DC0 /* RCTTextTransform.h in Headers */, - CB63C422B363DEBF9C7FDD7142F8A8F5 /* RCTTextView.h in Headers */, - 9546C3D6A98C620F2DB05A6503A6B3FC /* RCTTextViewManager.h in Headers */, - DBF7A40C93CED8912C3C3FA2435FE0A9 /* RCTTiming.h in Headers */, - 476565767E58D0A673343909C819E64E /* RCTTouchEvent.h in Headers */, - 1F174550A251B69028496FC8F90ABD61 /* RCTTouchHandler.h in Headers */, - ED99A0EFED2F3B36787B54661BEF2E74 /* RCTTrackingAnimatedNode.h in Headers */, - 1BA8A36F7017A4E0BB7EED6DDFF3B8B3 /* RCTTransformAnimatedNode.h in Headers */, - 4FCEC95A41A26EBB62C22D19D69B574E /* RCTUIImageViewAnimated.h in Headers */, - 7A7F33946BB6F9D900AADB4221120E3E /* RCTUIManager.h in Headers */, - CC27914FA992B557AE4396880F993CA9 /* RCTUIManagerObserverCoordinator.h in Headers */, - FD558301388205087339CC2E79ECF3B8 /* RCTUIManagerUtils.h in Headers */, - BC078CE9778D7673FDA393A34CCD0620 /* RCTUITextField.h in Headers */, - 5E4EB4C1EF7092D0F5A318D85B004FB9 /* RCTUITextView.h in Headers */, - 1FC4660C234E87C144283B62B62D14E8 /* RCTUIUtils.h in Headers */, - 96EDC793BCC6B32364716ED591C13FE9 /* RCTURLRequestDelegate.h in Headers */, - 64826535C2A8F075F4C7BCCB7593C1C2 /* RCTURLRequestHandler.h in Headers */, - 80D4569C87D0EBCCE4B6DC81D74A6295 /* RCTUtils.h in Headers */, - AACB290F406EFC33A121A3A29A0F7A77 /* RCTValueAnimatedNode.h in Headers */, - 2ED7D798E2E1DBB942012B867BF1089D /* RCTVersion.h in Headers */, - 6258BB4F4F337EA187F0B1798A9CBD0E /* RCTVibration.h in Headers */, - F079552F0B5598B4B500B527B52E8036 /* RCTView.h in Headers */, - 311FE5768BBED041DD46126C90D9DB24 /* RCTViewManager.h in Headers */, - 8C3A4C844C73E0EB3D53E11D8C53419E /* RCTVirtualTextShadowView.h in Headers */, - 512655BF3878547B9D80AA70927553DA /* RCTVirtualTextViewManager.h in Headers */, - 15262558F7AA0A1A352EC6CF0CB262A2 /* RCTWeakProxy.h in Headers */, - 59F4F1342FDFFF46569F6E4C12B4E65A /* RCTWebSocketExecutor.h in Headers */, - E5EB830C4C12B28B58C395262C7D74DF /* RCTWebSocketModule.h in Headers */, - 91949AC285A6BBA809491B42C7E1CCEE /* RCTWrapperViewController.h in Headers */, - 17E56B98459AD0387E7AAAA8E843F584 /* UIView+Private.h in Headers */, - 0EA90B65835E9AB717665933D1041015 /* UIView+React.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 883F4CB54EF23B31AB520FDF5A431531 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 89C68E4127297AAB36A30F848FAF3423 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 96FEB9F17F3553A3EACC3D455D3DD5EE /* RCTConvertHelpers.h in Headers */, - EBA14ECF6325AE246FF34646A5D8CA77 /* RCTTypedModuleConstants.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8DDC7980D468921033A283B7C4987229 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A7DEF9632299A6274346781118F414B8 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CEA54ACF8088E49B0FFEB1A93689D7AA /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DDC1EBE787A1929D6C21DCB1FCB6B18B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 6CE6837AC0E4342DBEBEB53FB3122DA9 /* BridgeJSCallInvoker.h in Headers */, - 41131751C2A30224DA39830C7FABDC37 /* JSCallInvoker.h in Headers */, - 33457000C73C1BA5BC2352B54AB16160 /* LongLivedObject.h in Headers */, - 9CB9FE419E53CCA57DA123E4F5176E8E /* RCTTurboModule.h in Headers */, - 430E21DB1E40C00BBCD1A57AD6A66D7E /* RCTTurboModuleManager.h in Headers */, - 172E676A7EEA5B4EB058AFE8453B62C0 /* TurboCxxModule.h in Headers */, - 7FE86235E6DD6F9548921779D4ECCC36 /* TurboModule.h in Headers */, - 995F57F6E3A8F8F3F0CB975427339ADC /* TurboModuleBinding.h in Headers */, - 66F758B6340D92E1E9302298F1CF0F3B /* TurboModuleUtils.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E0FD7309F68F488A3F4AADA9794B5882 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E4D08FFE82B74FDF30CC46C73F94F22F /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EB5C455F2568A5043DABEA692BDE55F6 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */ = { - isa = PBXNativeTarget; - buildConfigurationList = 32A65AD2DD6B9F8BFCD65DF8B4AA1F65 /* Build configuration list for PBXNativeTarget "React-RCTActionSheet" */; - buildPhases = ( - CEA54ACF8088E49B0FFEB1A93689D7AA /* Headers */, - 38F91CBE39BD7DCA84C472F30FF6E469 /* Sources */, - 4A2ABA1AA8EE85189CC08C1086DA90E7 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 776EC012504F3EE4305E7EF56D1FFB64 /* PBXTargetDependency */, - ); - name = "React-RCTActionSheet"; - productName = "React-RCTActionSheet"; - productReference = 73F8A95B79671F501F31EA4F1D04AA8B /* libReact-RCTActionSheet.a */; - productType = "com.apple.product-type.library.static"; - }; - 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0569CCDF3B3B687CF01EE8D4001AA7CC /* Build configuration list for PBXNativeTarget "DoubleConversion" */; - buildPhases = ( - 2421B2BEB31793521AF7BB2ED8723279 /* Headers */, - 00F245FAA16114F4D189FA7D01787401 /* Sources */, - 68E4DC721715B13364B7CFA56B002488 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = DoubleConversion; - productName = DoubleConversion; - productReference = 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */; - productType = "com.apple.product-type.library.static"; - }; - 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */ = { - isa = PBXNativeTarget; - buildConfigurationList = DB5640A4D55A282178129AB8D3C40CC3 /* Build configuration list for PBXNativeTarget "Yoga" */; - buildPhases = ( - 772E02260AE391DDE613FAC47C7C2D59 /* Headers */, - 567074D8A48779B9ABFD7ABD96A0EBE3 /* Sources */, - 25095242B0CFE41F0498529D9DFBFFE9 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Yoga; - productName = Yoga; - productReference = 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */; - productType = "com.apple.product-type.library.static"; - }; - 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */ = { - isa = PBXNativeTarget; - buildConfigurationList = E8AA29BA0F35EB58274C18D228085DD5 /* Build configuration list for PBXNativeTarget "React-cxxreact" */; - buildPhases = ( - 4ACF427C2C88E12B66D9589162E4DED3 /* Headers */, - E9310C554C7E6419817D97D5B22E20B2 /* Sources */, - A67DE1447F6E2B32E4311F1865648051 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 7373D3729CE927782A24D2D0D42B9570 /* PBXTargetDependency */, - 88A1A241AB274753A978E2E8CD059830 /* PBXTargetDependency */, - A0C3928F735E03760B70DC4735286B75 /* PBXTargetDependency */, - 3F7236B56B5E8A6757C3252930431D90 /* PBXTargetDependency */, - 26AC05181CF33A4E9227D17DDA7AEE49 /* PBXTargetDependency */, - ); - name = "React-cxxreact"; - productName = "React-cxxreact"; - productReference = 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */; - productType = "com.apple.product-type.library.static"; - }; - 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8AEA3CF29BF6CC011099BECDD7FBE41F /* Build configuration list for PBXNativeTarget "React-RCTImage" */; - buildPhases = ( - E4D08FFE82B74FDF30CC46C73F94F22F /* Headers */, - DD7E65E451ED9B5D6B53907647F0B208 /* Sources */, - 76A390C6543E22DA369BEF8C92C9683D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 317E27332B6855951145D2D143543266 /* PBXTargetDependency */, - 73C9C2286093363B960DE920079024D9 /* PBXTargetDependency */, - ); - name = "React-RCTImage"; - productName = "React-RCTImage"; - productReference = EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */; - productType = "com.apple.product-type.library.static"; - }; - 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */ = { - isa = PBXNativeTarget; - buildConfigurationList = 2B3BC7E8270BDE15126C66C4A8C7EFD5 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */; - buildPhases = ( - E0FD7309F68F488A3F4AADA9794B5882 /* Headers */, - A3CE777B429D8863DD644D1CB89F079E /* Sources */, - 2C85EAC75591A18C2CC840E90510046E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 33E411E13F07690EF5109D24863E43A9 /* PBXTargetDependency */, - ); - name = "React-RCTVibration"; - productName = "React-RCTVibration"; - productReference = C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */; - productType = "com.apple.product-type.library.static"; - }; - 615775D83EC041ABBE5885384EB3B4EF /* Pods-CalendarsExample */ = { - isa = PBXNativeTarget; - buildConfigurationList = 92E0F7C8A41DE1102CDCEF4684E61A5B /* Build configuration list for PBXNativeTarget "Pods-CalendarsExample" */; - buildPhases = ( - 168C26602F1DB2C83AE70EFA7D0A5692 /* Headers */, - AB16AB5EE2E599A83BAF476BD9EB334A /* Sources */, - F6172A486540C9B6029B4E86390D5E18 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 3BF1C03C5213B840564718EBFF2889A2 /* PBXTargetDependency */, - 7B20D1945AFD8D2275678ACDA74A9EEE /* PBXTargetDependency */, - E34BFF328F0D47B51288E72004999FE5 /* PBXTargetDependency */, - C46A1CA4D2A0C1F8623ECDC4A0BAC625 /* PBXTargetDependency */, - C60F12BB3D0AA788D489B5D2E7583BA2 /* PBXTargetDependency */, - 67CA2DC6D35FD3BC12AB4F29F02005C0 /* PBXTargetDependency */, - C6F8B6EE1BEEF8CE8AE73B377D43BAC5 /* PBXTargetDependency */, - 66ACEE72311F7CB1292D305575B5D650 /* PBXTargetDependency */, - 7437ACEABC8EE937DA345540A8ABAF9A /* PBXTargetDependency */, - F74C4B0B11351BEA1437EEC2D765376B /* PBXTargetDependency */, - D1B17CBC3FB65D91B8CF13A159F78473 /* PBXTargetDependency */, - 318CB8A8DD96009663E16CA251A1C6C7 /* PBXTargetDependency */, - E5F49309FB625C006D3ADBACF72341A5 /* PBXTargetDependency */, - CF4A1EDCBC93ED34C80744E82EFA9E47 /* PBXTargetDependency */, - 697F50247DB52D378BC51BAB4E29E877 /* PBXTargetDependency */, - 68B577DB195105BACA1C48A92829E5FB /* PBXTargetDependency */, - 866D13B04A900B9C6E5AE03CE4DB7297 /* PBXTargetDependency */, - 739BC2BE987A4C7C3FEEABF36C4E8368 /* PBXTargetDependency */, - B71216510B08ABC75522A021DD5C9FCE /* PBXTargetDependency */, - CD1B717D23511827B050214270259D28 /* PBXTargetDependency */, - D6BD087143576F625EC21C63221CF6D9 /* PBXTargetDependency */, - 30DA64622E2376B38B4F315176937E50 /* PBXTargetDependency */, - BAF209EB95DD44A482DECFB53DDF4EAA /* PBXTargetDependency */, - 0347E9C170277CBB77F5C3DF9866DEB8 /* PBXTargetDependency */, - 1233F16F505B938FF5872A024F5F3A39 /* PBXTargetDependency */, - 2505044B287B33C69AD60D7DB87648E7 /* PBXTargetDependency */, - E768D7CF10A192412443C91BCA734CBE /* PBXTargetDependency */, - ); - name = "Pods-CalendarsExample"; - productName = "Pods-CalendarsExample"; - productReference = 5E2202D418DA037C4A962C8FCDAC3624 /* libPods-CalendarsExample.a */; - productType = "com.apple.product-type.library.static"; - }; - 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */ = { - isa = PBXNativeTarget; - buildConfigurationList = 126589E951C0D69C2BAEC6627B0F70C7 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */; - buildPhases = ( - 20262DACD386266F8EEFF255BE9021FF /* Headers */, - C0A4C312E2D938C898B9C2D35F148371 /* Sources */, - BF9F698DD7C23237EF331D0A7B7C027C /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 78859D60C49A5986383FED4F5ED46909 /* PBXTargetDependency */, - ); - name = "React-RCTNetwork"; - productName = "React-RCTNetwork"; - productReference = A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */; - productType = "com.apple.product-type.library.static"; - }; - 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */ = { - isa = PBXNativeTarget; - buildConfigurationList = 9D94BD8072AB7502592FA63561A0DCE3 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */; - buildPhases = ( - A7DEF9632299A6274346781118F414B8 /* Headers */, - 8F425CDA40930DCAE245CB2DFBAF2BEF /* Sources */, - 259B651A917B59A1F99D0A0DBA0A908E /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 412EA3A990B6AEBB86AA3C97D5C9682C /* PBXTargetDependency */, - ); - name = "React-RCTSettings"; - productName = "React-RCTSettings"; - productReference = 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */; - productType = "com.apple.product-type.library.static"; - }; - 6ADCF369490C694BEBF31C5B4517D035 /* ReactNativeNavigation */ = { - isa = PBXNativeTarget; - buildConfigurationList = 3AD2D67288DF0CBA5E463468EDBDB5B2 /* Build configuration list for PBXNativeTarget "ReactNativeNavigation" */; - buildPhases = ( - 6C8FE5AE71C1B99748A4EC3361912265 /* Headers */, - 3FF3682F5C2B8E3F7F8139C5D7543D68 /* Sources */, - 6DD9904294E49E592DD8A7DB2844210F /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - B40CDBE080A7BD59D221248B43339FDD /* PBXTargetDependency */, - ); - name = ReactNativeNavigation; - productName = ReactNativeNavigation; - productReference = FE615D58A030F19B5EB89E2F52F5B59A /* libReactNativeNavigation.a */; - productType = "com.apple.product-type.library.static"; - }; - 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */ = { - isa = PBXNativeTarget; - buildConfigurationList = CC366A22F9451D397AB23382F3C72BC4 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */; - buildPhases = ( - 8DDC7980D468921033A283B7C4987229 /* Headers */, - 0F28AA489A9E4D8085E4AA4F6F620485 /* Sources */, - D6FCCF6CC7AFF2FA946531CF89854D0D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - BF57805E818D9951286076AF4526ABAC /* PBXTargetDependency */, - ); - name = "React-RCTLinking"; - productName = "React-RCTLinking"; - productReference = 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */; - productType = "com.apple.product-type.library.static"; - }; - 7994A9983B74369120B94F5645D30AD8 /* Pods-CalendarsExample-tvOS */ = { - isa = PBXNativeTarget; - buildConfigurationList = E3159D6E14BCF4B03E73A99846441C65 /* Build configuration list for PBXNativeTarget "Pods-CalendarsExample-tvOS" */; - buildPhases = ( - 5F86980C7A98F795235DCFEF2B2908E7 /* Headers */, - 31BCACFA4CDBE23C1EB6AE52920D5CA5 /* Sources */, - 7131604671D03650071395198894C85F /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-CalendarsExample-tvOS"; - productName = "Pods-CalendarsExample-tvOS"; - productReference = 9E66E515A0E5EA563229D1834C5A297E /* libPods-CalendarsExample-tvOS.a */; - productType = "com.apple.product-type.library.static"; - }; - 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7088478B510ECB79F5540CA35B970819 /* Build configuration list for PBXNativeTarget "React-Core" */; - buildPhases = ( - 7D7CF023A19520C7F60A8DB8EE1D6BCE /* Headers */, - A403457E79713A679E1C73610A66FE3D /* Sources */, - BED2399A00D7DE5EB608669BB45F5958 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 4F92350B5D46BCF4561A60C618FDD65F /* PBXTargetDependency */, - D09D4D6E49BA51BBDC11C5E6950F580E /* PBXTargetDependency */, - 193BC8264619AF373B341F3AC5D4A8F6 /* PBXTargetDependency */, - 816BCBEB5C93B0AB6EEDE4140A9F208F /* PBXTargetDependency */, - A93263D2192B3B53C87927F1C910E9CE /* PBXTargetDependency */, - 8AF3B758EF2E1060D6636C475758FBB2 /* PBXTargetDependency */, - F35684772D64C0CA1DF3FAD417B69CDD /* PBXTargetDependency */, - ); - name = "React-Core"; - productName = "React-Core"; - productReference = BD71E2539823621820F84384064C253A /* libReact-Core.a */; - productType = "com.apple.product-type.library.static"; - }; - 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */ = { - isa = PBXNativeTarget; - buildConfigurationList = CC3433B08FA9D085951A13BBD74D9A28 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */; - buildPhases = ( - 3F9238D028ACC537EB316D8DC78769B6 /* Headers */, - 06C10A5C37ECBF70E95B1F13748F4164 /* Sources */, - 2FD2631246EDB041A184841AA40A0DA4 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 2889A90A1A0F18572B816C1FFAB34F79 /* PBXTargetDependency */, - ); - name = "React-RCTAnimation"; - productName = "React-RCTAnimation"; - productReference = FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */; - productType = "com.apple.product-type.library.static"; - }; - 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */ = { - isa = PBXNativeTarget; - buildConfigurationList = 433345309CDFFF555CEC0B73441F2480 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */; - buildPhases = ( - 6C2A4D001F0F20772E18BB234095CCE9 /* Headers */, - 0CFFDF98F17DA266654BF6D3672109E0 /* Sources */, - D423137B03B405755C59CCDE6C0425FD /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - DC4AFA91DD4D3BE1D3826945716386FC /* PBXTargetDependency */, - DDAB6D8027D78DD10F1BA4FA5AB98411 /* PBXTargetDependency */, - 1FBE281E88C19ED83233E69EE33367CA /* PBXTargetDependency */, - ); - name = "React-RCTBlob"; - productName = "React-RCTBlob"; - productReference = F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */; - productType = "com.apple.product-type.library.static"; - }; - 9C89E0779788274560C7390310164976 /* Pods-CalendarsExample-tvOSTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = EAB91469C0E589E392237EB540404DC4 /* Build configuration list for PBXNativeTarget "Pods-CalendarsExample-tvOSTests" */; - buildPhases = ( - 00D4CE451E08050B2A4C0DBB6ACD3E8F /* Headers */, - E39A47E1008B23D7548B74D404E46EC7 /* Sources */, - 623F54F2BA701C7829C868A5DB9CFB0B /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 1D4739A8107798F5C2879B4B99975A87 /* PBXTargetDependency */, - ); - name = "Pods-CalendarsExample-tvOSTests"; - productName = "Pods-CalendarsExample-tvOSTests"; - productReference = 1351F289036E894546328C02A1B77766 /* libPods-CalendarsExample-tvOSTests.a */; - productType = "com.apple.product-type.library.static"; - }; - A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */ = { - isa = PBXNativeTarget; - buildConfigurationList = 920F7AE96737B6C7AF008996F3CAF047 /* Build configuration list for PBXNativeTarget "Folly" */; - buildPhases = ( - 883F4CB54EF23B31AB520FDF5A431531 /* Headers */, - 6D9A86ED89FF465DFC71B3E6FC86A2D9 /* Sources */, - 34618A4C29E91989F6AD026ECAEE32CE /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 10ACD873D4AA06BC39DF0BBD20AF426C /* PBXTargetDependency */, - 956CED54224ED4C72F0369A6636E0549 /* PBXTargetDependency */, - BB87C90278B653141413B07ECF29E03B /* PBXTargetDependency */, - ); - name = Folly; - productName = Folly; - productReference = 06489499588BFA8FD5E63DD6375CD533 /* libFolly.a */; - productType = "com.apple.product-type.library.static"; - }; - B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */ = { - isa = PBXNativeTarget; - buildConfigurationList = B3E76B1390AF20A46D319CDCE2224F68 /* Build configuration list for PBXNativeTarget "ReactCommon" */; - buildPhases = ( - DDC1EBE787A1929D6C21DCB1FCB6B18B /* Headers */, - E95C04D3C7C39E1BFD3F518FD2E4FF15 /* Sources */, - 72B0967E2588D1C1B6670C7B5B86B766 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */, - 49EDBFAB64C2D023FD0A6EDEDC242DB3 /* PBXTargetDependency */, - 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */, - F1887910E1D2307247370E110F5C97EF /* PBXTargetDependency */, - 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */, - 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */, - ); - name = ReactCommon; - productName = ReactCommon; - productReference = D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */; - productType = "com.apple.product-type.library.static"; - }; - C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */ = { - isa = PBXNativeTarget; - buildConfigurationList = F3B5D9DA1E40073F034CC27A3F9CD632 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */; - buildPhases = ( - 02D48A86ED5A32F7684F6DCC6A22D1E7 /* Headers */, - 7711033FC404B3CB08B74E3280EC10F4 /* Sources */, - 21D6E00098A7CB90C0BA7E45C04305D5 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */, - FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */, - 781E92AB9AD5C64251E7E935A7F59919 /* PBXTargetDependency */, - 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */, - 2559A81BC7753CC57D5A6C1E7CF8D5D9 /* PBXTargetDependency */, - AD8CC2C3AD641422282F5A8CD85BA0A7 /* PBXTargetDependency */, - ); - name = FBReactNativeSpec; - productName = FBReactNativeSpec; - productReference = ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */; - productType = "com.apple.product-type.library.static"; - }; - D0EFEFB685D97280256C559792236873 /* glog */ = { - isa = PBXNativeTarget; - buildConfigurationList = 5E87C273FA7E6CF0206BBAFEFFAA53A4 /* Build configuration list for PBXNativeTarget "glog" */; - buildPhases = ( - 7D729B7BED2874A853FD5DF707B09D21 /* Headers */, - 4F52DA73C62417B1329A36787B90FCB5 /* Sources */, - A0BAB3AC30EF632F21AC9FBA815163A2 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = glog; - productName = glog; - productReference = 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */; - productType = "com.apple.product-type.library.static"; - }; - D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */ = { - isa = PBXNativeTarget; - buildConfigurationList = F498C3F70A6FBC2B55C92EEF25E8E64A /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */; - buildPhases = ( - 89C68E4127297AAB36A30F848FAF3423 /* Headers */, - 1D0DD76454A95B161444E9CCF9CBB0AB /* Sources */, - F6EE96130CA9A5BFFB13A5A95B1B8885 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 0D751055C363323C78854582E5CE9EEB /* PBXTargetDependency */, - BD9A27944522233DC0927B646379AEDA /* PBXTargetDependency */, - BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */, - 49CF22411A18A28762E2D16FB32A5A96 /* PBXTargetDependency */, - ); - name = RCTTypeSafety; - productName = RCTTypeSafety; - productReference = F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */; - productType = "com.apple.product-type.library.static"; - }; - DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */ = { - isa = PBXNativeTarget; - buildConfigurationList = 94BA432276622690708C6B59BA158661 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */; - buildPhases = ( - 78CDF8FD0602D2EC7FD7270E93B72E4A /* Headers */, - 23CC012D6E3FDAF09BAAE944638F0B53 /* Sources */, - BCCBD7FF002375C8E814AD3A7B41A539 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - F7D04D57FB116EFF248374308C552CC8 /* PBXTargetDependency */, - DDFBB112F89C7324E0572676048A6E6D /* PBXTargetDependency */, - 521617DBA3CB0ABC6D080079A459997A /* PBXTargetDependency */, - 08479026A53085E6028CB0E7176D7C20 /* PBXTargetDependency */, - A29311AFE4FE194B4A251E8C7B5E57FD /* PBXTargetDependency */, - ); - name = "React-jsiexecutor"; - productName = "React-jsiexecutor"; - productReference = F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */; - productType = "com.apple.product-type.library.static"; - }; - DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */ = { - isa = PBXNativeTarget; - buildConfigurationList = FF0A08E8F430024C20EB71D620C340C3 /* Build configuration list for PBXNativeTarget "React-RCTText" */; - buildPhases = ( - 2F8EDC3D4D53B14BBAFC91BDEE8B2E97 /* Headers */, - 276227C93C04F616174A40318247809F /* Sources */, - 26CD778AE91E176797368D2CFC719B5D /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - D8C76FBB7AA002D3C2BD9F147D34DFE9 /* PBXTargetDependency */, - ); - name = "React-RCTText"; - productName = "React-RCTText"; - productReference = E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */; - productType = "com.apple.product-type.library.static"; - }; - E16E206437995280D349D4B67695C894 /* React-CoreModules */ = { - isa = PBXNativeTarget; - buildConfigurationList = AEF20FCF50FC4D1CC787BBA5317D3037 /* Build configuration list for PBXNativeTarget "React-CoreModules" */; - buildPhases = ( - 55624BD664CDB4621E586E0A9C655C65 /* Headers */, - 695344742164CE2F81BE000BE5E6FC5C /* Sources */, - 0F22F363690501476F87C3CF49F3CAAE /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - CB1231450678EB40FF6D52E17793B56F /* PBXTargetDependency */, - 66F08441F9F016CA320259F5EC30225B /* PBXTargetDependency */, - E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */, - 41013E96A559735139B429989B2F3644 /* PBXTargetDependency */, - 52ED0D1D4CE538BBA93169D2D44FFFF0 /* PBXTargetDependency */, - 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */, - ); - name = "React-CoreModules"; - productName = "React-CoreModules"; - productReference = 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */; - productType = "com.apple.product-type.library.static"; - }; - E214198A242CFE07E760B3E033731CB0 /* Pods-CalendarsExampleTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 242333E4A9C2BF6DF8964160796833A9 /* Build configuration list for PBXNativeTarget "Pods-CalendarsExampleTests" */; - buildPhases = ( - EB5C455F2568A5043DABEA692BDE55F6 /* Headers */, - 2C7BD2CB4CF111419EA90DD2DB74046F /* Sources */, - 5591E8F3CC96B6F0AE855AEF60F373CA /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - 71EB785B4066F5E9D69E181ED246FC5F /* PBXTargetDependency */, - ); - name = "Pods-CalendarsExampleTests"; - productName = "Pods-CalendarsExampleTests"; - productReference = B7C0B2238EDC557AAFC85F948D06BFA5 /* libPods-CalendarsExampleTests.a */; - productType = "com.apple.product-type.library.static"; - }; - F7D033C4C128EECAA020990641FA985F /* React-jsinspector */ = { - isa = PBXNativeTarget; - buildConfigurationList = 215462817587A01224DE155F7C1572B3 /* Build configuration list for PBXNativeTarget "React-jsinspector" */; - buildPhases = ( - 1A22C377F296FBF9E32FE489837B1C89 /* Headers */, - 5940064F6A4552012CF5F6D919C97DB8 /* Sources */, - CDAFAF1D1F783376A3CC817FD99176DD /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "React-jsinspector"; - productName = "React-jsinspector"; - productReference = 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */; - productType = "com.apple.product-type.library.static"; - }; - FA877ADC442CB19CF61793D234C8B131 /* React-jsi */ = { - isa = PBXNativeTarget; - buildConfigurationList = D7D4A275B0EA73E7CA2B30990D113B6F /* Build configuration list for PBXNativeTarget "React-jsi" */; - buildPhases = ( - 20BC3E31766DA6D5306054B6BBA10440 /* Headers */, - EB464DD4A3BD787EEF54483BFA4FC8A2 /* Sources */, - 1D9FBFC27F48ED49157326664661BB23 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - D47C61450FD47102A9D6290885B06872 /* PBXTargetDependency */, - A10319D5917FC39E40F9BD4DDB1EF04A /* PBXTargetDependency */, - FCF08186724BF5B4FB64D9D9D570F1C8 /* PBXTargetDependency */, - 95F4ED166FC0043493A95D522BD01DEC /* PBXTargetDependency */, - ); - name = "React-jsi"; - productName = "React-jsi"; - productReference = D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */; - productType = "com.apple.product-type.library.static"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - BFDFE7DC352907FC980B868725387E98 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 1100; - LastUpgradeCheck = 1100; - }; - buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = CF1408CF629C7361332E53B88F7BD30C; - productRefGroup = 4C74CD6636AB394429B2D4E56973C51E /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */, - 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */, - 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */, - C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */, - A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */, - D0EFEFB685D97280256C559792236873 /* glog */, - 615775D83EC041ABBE5885384EB3B4EF /* Pods-CalendarsExample */, - 7994A9983B74369120B94F5645D30AD8 /* Pods-CalendarsExample-tvOS */, - 9C89E0779788274560C7390310164976 /* Pods-CalendarsExample-tvOSTests */, - E214198A242CFE07E760B3E033731CB0 /* Pods-CalendarsExampleTests */, - E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */, - D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */, - 1BEE828C124E6416179B904A9F66D794 /* React */, - 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */, - E16E206437995280D349D4B67695C894 /* React-CoreModules */, - 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */, - FA877ADC442CB19CF61793D234C8B131 /* React-jsi */, - DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */, - F7D033C4C128EECAA020990641FA985F /* React-jsinspector */, - 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */, - 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */, - 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */, - 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */, - 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */, - 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */, - 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */, - DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */, - 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */, - B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */, - 6ADCF369490C694BEBF31C5B4517D035 /* ReactNativeNavigation */, - 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXSourcesBuildPhase section */ - 00F245FAA16114F4D189FA7D01787401 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 81CC62FFB67259CAEE48C5AD634C173A /* bignum-dtoa.cc in Sources */, - 7954E4E69F110D651ECE169B652E7C21 /* bignum.cc in Sources */, - 0121DBEDDB1AA17D2E699AD70C4D9C7B /* cached-powers.cc in Sources */, - 6E5FDDC033DB7AB946AAC9B1D6B3BDBE /* diy-fp.cc in Sources */, - 5D783A28D42B69ED3918F66F820C8701 /* double-conversion.cc in Sources */, - 1D66E156B8AD27CCEE5E2D175E50E2B5 /* DoubleConversion-dummy.m in Sources */, - 1486156DFCD66204248160D76650E74A /* fast-dtoa.cc in Sources */, - F10066FFFCB05691561796C75A21D831 /* fixed-dtoa.cc in Sources */, - 4435D7AA2CC2A78C02637BD68B3495F7 /* strtod.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 06C10A5C37ECBF70E95B1F13748F4164 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EC0820C17B5B92DE7163904C5C1C26C2 /* RCTAdditionAnimatedNode.m in Sources */, - F500F680727CD2A809A188C814B7AABB /* RCTAnimatedNode.m in Sources */, - BB432B83FB526D706635D2C548CF8706 /* RCTAnimationUtils.m in Sources */, - 8EE385DC3A9F8F0A96FC57C94A4D5A39 /* RCTDecayAnimation.m in Sources */, - 2CA850EF8FBFF2CC87B5CA89D0E350C7 /* RCTDiffClampAnimatedNode.m in Sources */, - A1DCDE539FC4D80C8175DFBAB5466490 /* RCTDivisionAnimatedNode.m in Sources */, - 40A98174398ABE7BA312A26B8A549220 /* RCTEventAnimation.m in Sources */, - C80C4192A1D29855072A7E895DECD200 /* RCTFrameAnimation.m in Sources */, - B451AC7626B4F5571F9A2738A1658461 /* RCTInterpolationAnimatedNode.m in Sources */, - 63D395BAEACD62FABB3F5355090A6C37 /* RCTModuloAnimatedNode.m in Sources */, - 104ADD71AD277ED5E90513449E19456D /* RCTMultiplicationAnimatedNode.m in Sources */, - 3FDD359957EB692791936737C0A66774 /* RCTNativeAnimatedModule.m in Sources */, - 3856F13AB9FFCEC6357D2149AE692951 /* RCTNativeAnimatedNodesManager.m in Sources */, - 71D28EFC74CE2CC90B8F9AC7D49CEA46 /* RCTPropsAnimatedNode.m in Sources */, - CEE60FC12681BAF5BFB1DB1C71E75CD3 /* RCTSpringAnimation.m in Sources */, - FB527D6B5AF3182F7826D573C99D51C6 /* RCTStyleAnimatedNode.m in Sources */, - D1A6740983B4F716160BF7478A161AAC /* RCTSubtractionAnimatedNode.m in Sources */, - E157AC960891D193378B505438C9F1A1 /* RCTTrackingAnimatedNode.m in Sources */, - 6351A4B2CE18037E70A5C3EC3A21BA6A /* RCTTransformAnimatedNode.m in Sources */, - 9A58A88A95A386034EBEC17AA50833DC /* RCTValueAnimatedNode.m in Sources */, - 59D018BE18A318B96852DB2E91E575E6 /* React-RCTAnimation-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0CFFDF98F17DA266654BF6D3672109E0 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - FCA74959DBF3C4B076478AEAE1543061 /* RCTBlobCollector.mm in Sources */, - 658A789159764149951332015152B9EE /* RCTBlobManager.mm in Sources */, - 12DBA132FE357811E246660659ACD04F /* RCTFileReaderModule.m in Sources */, - BA09CB4C37C1EBD6534379C8AAFC1416 /* React-RCTBlob-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0F28AA489A9E4D8085E4AA4F6F620485 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 57191A4DFF880DA0DB7B86E707247807 /* RCTLinkingManager.m in Sources */, - E973D1B8C57A1859D00DD39A4CE22E50 /* React-RCTLinking-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 1D0DD76454A95B161444E9CCF9CBB0AB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C9EB3B7BD3C03FE53AD3B843B3B6B185 /* RCTConvertHelpers.mm in Sources */, - C6B6684C3D88C826389C24634EC328EC /* RCTTypedModuleConstants.mm in Sources */, - 15135A9A67B4019F2CC03E7D5FACA0FE /* RCTTypeSafety-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 23CC012D6E3FDAF09BAAE944638F0B53 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 497E3CB7A90DBE382E5BC10C8FDD115A /* JSIExecutor.cpp in Sources */, - DA0379DC5D39C25ED85E86DDB57DB940 /* JSINativeModules.cpp in Sources */, - 255DD536C167BEA493A3A93656FCB5C6 /* React-jsiexecutor-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 276227C93C04F616174A40318247809F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4C7100D31DAB21C94C9C6F2FA818B8FC /* NSTextStorage+FontScaling.m in Sources */, - 6A0DAB317CC818BA46A0BDFA0934C1F6 /* RCTBackedTextInputDelegateAdapter.m in Sources */, - 464088E186132A910A7D990F9F1910C0 /* RCTBaseTextInputShadowView.m in Sources */, - BDB5F68236AB56CC52E2222CF21E9F0F /* RCTBaseTextInputView.m in Sources */, - 3307958AF2940D24905C8D2138EFFE6C /* RCTBaseTextInputViewManager.m in Sources */, - 12628BA4D3C007189740D94D020D5A13 /* RCTBaseTextShadowView.m in Sources */, - 9E90A63487B72EA9AD6764FBE6D983C3 /* RCTBaseTextViewManager.m in Sources */, - E215C558DD956B0EDC849D96B589F885 /* RCTConvert+Text.m in Sources */, - 0CCE85FD3C3064726C82C932EB5F2111 /* RCTInputAccessoryShadowView.m in Sources */, - EB8A5777B53D6A32A05F31F80FE2FFD5 /* RCTInputAccessoryView.m in Sources */, - FA4CC10B1EF8FAD6CF91006368D3F621 /* RCTInputAccessoryViewContent.m in Sources */, - CF2F6A898C413424CE138F8FCA3EE03D /* RCTInputAccessoryViewManager.m in Sources */, - 14A9AE76751436799FF5C9456EAD3C64 /* RCTMultilineTextInputView.m in Sources */, - 0D2ECAE14B7046B6124EE1689EE7484A /* RCTMultilineTextInputViewManager.m in Sources */, - E5CA6BE2368D9A6ECD9186DFFA19C104 /* RCTRawTextShadowView.m in Sources */, - 434276DDEE712DFB386DC259B4CC9DDF /* RCTRawTextViewManager.m in Sources */, - 9A8A331A57EC59818895B8A91AE05106 /* RCTSinglelineTextInputView.m in Sources */, - 3F973E8BA5B157E60BEA6885A9FBA430 /* RCTSinglelineTextInputViewManager.m in Sources */, - 8DE7133358723D1C67FA9247EA51FB2B /* RCTTextAttributes.m in Sources */, - A88E46AE058ADEB16B82E4AD2622D921 /* RCTTextSelection.m in Sources */, - 8AAF32B619408CAD2BDB4BC610C07FF5 /* RCTTextShadowView.m in Sources */, - FECAD29D617278B4C882C2EC671A81EA /* RCTTextView.m in Sources */, - F298E82BA64317A889A780C7925F095B /* RCTTextViewManager.m in Sources */, - 26FEBC129B09539B4D710E0243F907EE /* RCTUITextField.m in Sources */, - 97B8D23662E747327F60C3943C195D7D /* RCTUITextView.m in Sources */, - 9790146FD7BE06CF75FC91094F25DA6B /* RCTVirtualTextShadowView.m in Sources */, - 7EB302D4CAD73F48A6902C8B3375EB55 /* RCTVirtualTextViewManager.m in Sources */, - 9C86F5CFFD05C93157B0E59239E7BB11 /* React-RCTText-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2C7BD2CB4CF111419EA90DD2DB74046F /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 245D13A65E049BDACB19A85D7C00F51F /* Pods-CalendarsExampleTests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 31BCACFA4CDBE23C1EB6AE52920D5CA5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EDB174D516E585F2EBD3A92059CA872E /* Pods-CalendarsExample-tvOS-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 38F91CBE39BD7DCA84C472F30FF6E469 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3763FB677E5AE1F15A9A8158537EC82F /* RCTActionSheetManager.m in Sources */, - 7B74F3BD685D22FFDAA3FB0EFC4C135B /* React-RCTActionSheet-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 3FF3682F5C2B8E3F7F8139C5D7543D68 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7E4C46EA5AAE89808159EAEB2AD9E070 /* Bool.m in Sources */, - ACBD06187FCFB106CC66AABA8DF70D58 /* BoolParser.m in Sources */, - D507E407AFBFBAAC78EE1973593F3CAD /* Color.m in Sources */, - F6A6E12F7381AAAF0CEDA25805287813 /* ColorParser.m in Sources */, - F700C4C83917B8D9B76A46424250D339 /* Constants.m in Sources */, - C96FEDFECE64D3CCEE69FDE1FCE5FE23 /* Dictionary.m in Sources */, - F36235962E087F35142FBE153294FF3B /* DictionaryParser.m in Sources */, - B8446A4C5BEC76D5B2D0702D8B8F9088 /* DotIndicatorOptions.m in Sources */, - 5F53A0CABA7A223662F4D224C4F7A4F3 /* DotIndicatorParser.m in Sources */, - D5DD3CCE883CD35C77D8093818765081 /* Double.m in Sources */, - 05E50DAB9D3BBC5C6D06834B6E5EFD7F /* DoubleParser.m in Sources */, - 6D93889E50440A1291F10C1948341268 /* HMSegmentedControl.m in Sources */, - 84FB917F0A3218335B5A9FB2EC20FE25 /* Image.m in Sources */, - 03935F29FA3552F9535C9D3AF7D1DB4E /* ImageParser.m in Sources */, - E1E3BE485E150A7B83E983496C4755FC /* InteractivePopGestureDelegate.m in Sources */, - 64ACE3E61195682F5F7DDA793E664D17 /* IntNumber.m in Sources */, - 9096374B77475443F580E4E2D4572AE5 /* IntNumberParser.m in Sources */, - 848FC34ACB391923D177B35F315C2CC7 /* MMDrawerBarButtonItem.m in Sources */, - 447D91887E4260703DB9E4CE2785A4E9 /* MMDrawerController.m in Sources */, - 1E40D8D2F4CF2C57B5DE6BA05F042A3C /* MMDrawerVisualState.m in Sources */, - E19D733E58C2D8CB6BDF7E2EB04C43CB /* MMExampleDrawerVisualStateManager.m in Sources */, - 2893017EFDD3D57B27D579DA267FBAC3 /* NoColor.m in Sources */, - B830FD8B125037CEF81FBC7D21E82DB6 /* NullBool.m in Sources */, - 50504026278F5EB1BEA14F939BB08BC4 /* NullColor.m in Sources */, - EDD4996004EC57A5A83CB4142246E437 /* NullDictionary.m in Sources */, - F1F4FF25F09CF29978A14BE417902567 /* NullDouble.m in Sources */, - 1679B4AB43ACE7C9A623DA64968D481C /* NullImage.m in Sources */, - 7AB7C2A69CD310C12A90BA91FD7B3EBA /* NullIntNumber.m in Sources */, - 19C70B3A267F08CBF676904271D708AC /* NullNumber.m in Sources */, - 31C7D41E7B116B5FEEF2E73DDCBFD240 /* NullText.m in Sources */, - 74E179CF460E92B8DA9FC7D7CC50FED2 /* Number.m in Sources */, - 5991D13A7076D011109A0FFCF70F869E /* NumberParser.m in Sources */, - 47A9C6D15F37FAF52E96887A1EFC87B1 /* Param.m in Sources */, - 71C14586A721D78C8805841878B488D4 /* RCTConvert+UIBarButtonSystemItem.m in Sources */, - CD4EA521C752BA1C838C18295EB6B86D /* RCTHelpers.m in Sources */, - CA95E8F10BEFFF3E8058884431FB52CD /* ReactNativeNavigation-dummy.m in Sources */, - 6CC015227601164E0C9D5A4329C24105 /* ReactNativeNavigation.m in Sources */, - D89D92599A1D5EC5414CD3CC606F60D2 /* RNNAnimatedView.m in Sources */, - D89563D5622E4E510D435B5DDD023CF1 /* RNNAnimationConfigurationOptions.m in Sources */, - F2321704A62AADEDDFF2699FA077EB8B /* RNNAnimationsOptions.m in Sources */, - C99439BD4CAC66625487EAEDB45F1104 /* RNNAnimationsTransitionDelegate.m in Sources */, - 32C8EB1FD7B4B7F1D16E9240CF3DEB71 /* RNNAnimator.m in Sources */, - 64C6B0BE32BF3902AB8811ABAA0E04BF /* RNNBackButtonOptions.m in Sources */, - 4D2DE79F4566C4A585B80E3E336CF508 /* RNNBackgroundOptions.m in Sources */, - 5269C45252469588E803A63AA26D02C8 /* RNNBasePresenter.m in Sources */, - 18223A50DAE53AB300337109DEA8C99B /* RNNBottomTabOptions.m in Sources */, - B1E10520331F2345785F548074E5AB8F /* RNNBottomTabsController.m in Sources */, - 001FF41AFCC2F76BF10219EFBFC7E9BE /* RNNBottomTabsOptions.m in Sources */, - 3979D530FFA8DA58863AD814DF8F2614 /* RNNBottomTabsPresenter.m in Sources */, - 29D00304E4C2CDB0B64A9B206CF595AF /* RNNBridgeManager.m in Sources */, - AAE9C6975F8174F792B1A4AF70FE64A1 /* RNNBridgeModule.m in Sources */, - 6D00B1315520E51085F6CFE29CCD763F /* RNNButtonOptions.m in Sources */, - D8F1DE8C7963F2429A9516DA1B744DCC /* RNNCommandsHandler.m in Sources */, - 60E390CFDC23281F8CA03B40ADAC5E80 /* RNNComponentOptions.m in Sources */, - 645D4C720010F8462425CCFB031D911D /* RNNComponentPresenter.m in Sources */, - 1DFB8CFA389631020681A21C6CA46C39 /* RNNComponentViewController.m in Sources */, - 421C08A6C38A3343B52E806A047D6F6E /* RNNControllerFactory.m in Sources */, - 0DD52393F1826E9CBAD360DACC7FDFCD /* RNNCustomTitleView.m in Sources */, - 52F0506C3C8652181B051849BF626F43 /* RNNCustomViewController.m in Sources */, - 0097EAF4E361B8E9309F03C3C3BC894A /* RNNDefaultOptionsHelper.m in Sources */, - 0870B30A087E6F67A0089DD73A2D8FFE /* RNNDotIndicatorPresenter.m in Sources */, - CC28D281A8274A85AE9F67A5164BD577 /* RNNElement.m in Sources */, - 839EF34DFCF0D147C3664D883500F869 /* RNNElementFinder.m in Sources */, - B1FE621929D301ECE8FC2955FC4E7968 /* RNNElementTransitionOptions.m in Sources */, - F8E1F4C7DBCAFF9ED79E062DD3E95F0E /* RNNElementView.m in Sources */, - C6A918BCE640B6BE82E998FF7433F345 /* RNNErrorHandler.m in Sources */, - 84356BC39FB57264519EE858FA3C972F /* RNNEventEmitter.m in Sources */, - 406992DC3B54E8B8A2C17CA6AA49E6A2 /* RNNExternalComponentStore.m in Sources */, - CFC048B31B6B735D30246460CFF0EF9B /* RNNFontAttributesCreator.m in Sources */, - 7C863A47B42508E5B2A6411C15689B13 /* RNNInsetsOptions.m in Sources */, - 5D2A484D518C989D9B2BD5F422D1D286 /* RNNInteractivePopAnimator.m in Sources */, - 80550E56228A74F2751D32FE5139BC9A /* RNNLargeTitleOptions.m in Sources */, - 25FCDFF01525BEA0AD9CB581EB29CBE3 /* RNNLayoutInfo.m in Sources */, - D19320FF7BBA2AB5507B23BDE4D102BD /* RNNLayoutManager.m in Sources */, - 30E0622C368845DFE52B390C3E72087E /* RNNLayoutNode.m in Sources */, - E3F2BC32F39ECF6F33005B7DD5F8237E /* RNNLayoutOptions.m in Sources */, - 37AEDAF68986E944F12085F9EFECDC1B /* RNNModalManager.m in Sources */, - 8E4800858A378838CBC31CEC2C370775 /* RNNNavigationButtons.m in Sources */, - 66D9528686DF0918BF31BBC329E7F30C /* RNNNavigationOptions.m in Sources */, - D5B418617E50BA8C15355A28E3922F87 /* RNNNavigationStackManager.m in Sources */, - 29F3FF1E86AF5E7718C197F0450A7F21 /* RNNOptions.m in Sources */, - 3FCF5C5C5C5F8BE9CCF7A31239B10BC5 /* RNNOverlayManager.m in Sources */, - 7617F1C5119A53D1EF70625A2BDD2A9F /* RNNOverlayOptions.m in Sources */, - 4DC6830CF399CC422C3A3BF5E7D25295 /* RNNOverlayWindow.m in Sources */, - 2B234041B297B20F9CED35C940812511 /* RNNPreviewOptions.m in Sources */, - F60D004694F9872F5D83EF778BAD2723 /* RNNPushAnimation.m in Sources */, - 53AA6059EE6324EB47BF661BE690829A /* RNNReactComponentRegistry.m in Sources */, - C136A5CD13DC5A24785A743DE24F4215 /* RNNReactRootViewCreator.m in Sources */, - E0E9EC8DF61DD22D0C4021E2DB134EA1 /* RNNReactView.m in Sources */, - 828ECAD73CC88CD6AB5CCDFABDFDE088 /* RNNScreenTransition.m in Sources */, - 302D8233320EC4C1CDA91DDE22962C7B /* RNNSegmentedControl.m in Sources */, - 6801439104733992D65F2145742DEC4E /* RNNSharedElementAnimationOptions.m in Sources */, - AE946C5E8C66AFC10CC714C9E1C076D7 /* RNNSideMenuChildVC.m in Sources */, - 7E2BE27034BAE948DB7786B5942AE8E0 /* RNNSideMenuController.m in Sources */, - 119B4D9690071AAB4BA5A26317F344AF /* RNNSideMenuOptions.m in Sources */, - FD775ABD8A3D1ED6315A92AC8363A310 /* RNNSideMenuPresenter.m in Sources */, - B830F43DD16D4F5704C65CC6675F45C6 /* RNNSideMenuSideOptions.m in Sources */, - A1CB596EDAEF398600905BA802EC44DB /* RNNSplashScreen.m in Sources */, - 302DD331EEAFEB6B3C43AB8594A6590F /* RNNSplitViewController.m in Sources */, - DA99BF5B0805F8B25201F8FF0EC16D6D /* RNNSplitViewControllerPresenter.m in Sources */, - BFD5C8C34E8CC301F102563A3BE077D3 /* RNNSplitViewOptions.m in Sources */, - 3562466D03F658D17DBFA3EF6B8FB9D9 /* RNNStackController.m in Sources */, - C6456D423D488D5F26E8FE7177B0D102 /* RNNStackPresenter.m in Sources */, - E3ABDE5332576B3198EBD910057E7D44 /* RNNStatusBarOptions.m in Sources */, - 31DE610DBFDB01D7D05C7571EF421EC2 /* RNNSubtitleOptions.m in Sources */, - FDF95A02836236FD44A5B872395EA80D /* RNNSwizzles.m in Sources */, - AA8A2238227A8E8D9BC6AE695FC4939E /* RNNTabBarItemCreator.m in Sources */, - E72D871E58E218E9A23A3D849C2A7B56 /* RNNTitleOptions.m in Sources */, - D9AE229AB6C6D33BE92473F7EBC65B8F /* RNNTitleViewHelper.m in Sources */, - 4DE8A81E4D1FECE2F1679B78F99D8141 /* RNNTopBarOptions.m in Sources */, - D0B2FDE2BD159BE5357620B47B99C24A /* RNNTopTabOptions.m in Sources */, - CFDC291922DFAD9F08F1F83C462D0FB2 /* RNNTopTabsOptions.m in Sources */, - 51EF57F1D787852EF18B7187233A68CB /* RNNTopTabsViewController.m in Sources */, - B8A5E496E3069472AF4043F7E2DD332B /* RNNTransition.m in Sources */, - 043411794F2E676AE16A417C0F12141E /* RNNTransitionStateHolder.m in Sources */, - 52CD8B3C11C7FE04DA3055A76C3B0AB0 /* RNNUIBarButtonItem.m in Sources */, - 9B6AC85F8FB41D7B8A39EEDCAF6D0185 /* RNNUtils.m in Sources */, - 65486FC879BCCAB1F84F907D455A761F /* RNNViewLocation.m in Sources */, - 5A163E8EE856D2DE689AAC7FE306B5BE /* SideMenuOpenGestureModeParser.m in Sources */, - CB4C98A7D4F65C9F9DF0F8ECEF5B985B /* SideMenuOpenMode.m in Sources */, - 69A0AEFD592C80C8B948C02E0DF6B28F /* Text.m in Sources */, - E13A0740937CE058E6B04EE4F23E7FEB /* TextParser.m in Sources */, - 320D6A0F3597B537683815BC6A76F30E /* UIColor+RNNUtils.m in Sources */, - BC276FDAC773835E1EB5AF9D5408F110 /* UIImage+insets.m in Sources */, - 974F9018B92107B89473E9C87D797CC8 /* UIImage+tint.m in Sources */, - 3627487AA406AC403B9D8AE865627D27 /* UINavigationController+RNNOptions.m in Sources */, - BB1811C9E5EA9CDA930CC94A1C1BA324 /* UISplitViewController+RNNOptions.m in Sources */, - 4DC1BCCF86B9E65B02DC5DB8F4455A3E /* UITabBarController+RNNOptions.m in Sources */, - 2EC5F52276616800F5D61FAC3AB85C63 /* UITabBarController+RNNUtils.m in Sources */, - 69EC4FDEB7A374B0C5B2EB0DABC6B82C /* UIView+Utils.m in Sources */, - A63375398DB6ECAB68175CB0E4D593DB /* UIViewController+LayoutProtocol.m in Sources */, - 0E670E9EB31493F6DE27D33A328E805F /* UIViewController+MMDrawerController.m in Sources */, - 3D5B62DF47F183D11ECE7D3AE3462B93 /* UIViewController+RNNOptions.m in Sources */, - 84CAAF1547BD9FBB50DED457A22884D6 /* UIViewController+SideMenuController.m in Sources */, - 7245E2924EC20D79B66E3E3F811F3935 /* UIViewController+Utils.m in Sources */, - 299C659D2870036B20D43A18239BD98C /* VICMAImageView.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 4F52DA73C62417B1329A36787B90FCB5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7C4DAF7B9971E6EC46C57AC5B601387C /* demangle.cc in Sources */, - 8B1DD7D55C9B8F15934C9146B1BC22D5 /* glog-dummy.m in Sources */, - 038E43E337374D83EA40B0E78D0EDA30 /* logging.cc in Sources */, - FE1968DB86F4E0A940ED78C4F73608BB /* raw_logging.cc in Sources */, - B0B59FA17582A70333F69C23652A32D6 /* signalhandler.cc in Sources */, - B59D37D2CFF577A6226C70FAED9EA531 /* symbolize.cc in Sources */, - 023573887B510333B548FEB9A7123B04 /* utilities.cc in Sources */, - 9800DC7966564B1161B1E75BC4FF8851 /* vlog_is_on.cc in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 567074D8A48779B9ABFD7ABD96A0EBE3 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - DE019F4CC79951E8784BE707F1FFEBA1 /* event.cpp in Sources */, - 6557075639645D9B80E1AA0D60659311 /* experiments.cpp in Sources */, - 244546B5EF3F7CF6F1B53C53B7C7390C /* log.cpp in Sources */, - 0E51799C29B7E030F13E5A43951B1377 /* Utils.cpp in Sources */, - F036F92B06A1D33ECB4AC2FD1ACEEF48 /* YGConfig.cpp in Sources */, - 5603C322DB36DA799A47DB4A285BF27A /* YGEnums.cpp in Sources */, - 60127037832EA14C085838DCE9EC2FB3 /* YGLayout.cpp in Sources */, - 2C132D55DB2464E431418BF78F1E73DF /* YGNode.cpp in Sources */, - 08BC3C64828C296394BBA54FBF6D02BA /* YGNodePrint.cpp in Sources */, - 8824D1213779C3B2D30D11BCD5762D07 /* YGStyle.cpp in Sources */, - E4EF3A7C1240B5B9C74BEEC8683644DC /* YGValue.cpp in Sources */, - 322CEC71B014E27C5619F17E45B386CC /* Yoga-dummy.m in Sources */, - AF1B27C6FB5F1552E8E3CDB62EB948A3 /* Yoga.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5940064F6A4552012CF5F6D919C97DB8 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 61134ED4BA34271FCD729B3E926A8D5F /* InspectorInterfaces.cpp in Sources */, - B3B86426245AD3207D9474A2D05E85ED /* React-jsinspector-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 695344742164CE2F81BE000BE5E6FC5C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - A55F73E73A81AB3E9F61D647CE2A0FFF /* CoreModulesPlugins.mm in Sources */, - 27C1A69C52BB15DC67850E468B12D649 /* RCTExceptionsManager.mm in Sources */, - C13728C0CF5BB9AC2E7C7AD120BE6624 /* RCTImageEditingManager.m in Sources */, - 208F0F89A59307CFD4DBEE7148C57E22 /* RCTImageLoader.mm in Sources */, - 307F3607934710DF997A7298180F7E98 /* RCTImageStoreManager.m in Sources */, - 88FFE10394F13353806F5AC527ABD0EB /* RCTPlatform.mm in Sources */, - CE06FC0B40399ED9AC1D7CE1291D0C35 /* React-CoreModules-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6D9A86ED89FF465DFC71B3E6FC86A2D9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - E00185F7890A51AD00E51C25BBD80D1B /* Assume.cpp in Sources */, - ECF6206665987814DF7108E5D43A19BD /* ColdClass.cpp in Sources */, - F23B083BA9E52FB6BBAD6D4C68CE8074 /* Conv.cpp in Sources */, - C183A3FDF741F37E9C84126EC6229BE5 /* Demangle.cpp in Sources */, - 8931ADAFDC99B6CF6B08EF769F178A95 /* Demangle.cpp in Sources */, - 4F9E9C6423C32717707754FE40930323 /* dynamic.cpp in Sources */, - E94ABC326E5A462BDE56DB62C28ADA66 /* F14Table.cpp in Sources */, - B24DA0CD9143E6B032CDF58ED5E0289F /* Folly-dummy.m in Sources */, - CF27ED776621CED5EAD6945D637A06D9 /* Format.cpp in Sources */, - 34DAA22C0906F7C5E235F9D82FC641C0 /* json.cpp in Sources */, - 15AA568D96035A5F6578ADB09A4ADBE8 /* json_pointer.cpp in Sources */, - EF7B2AEA2F10988325CBED09453AF049 /* MallocImpl.cpp in Sources */, - 1825B2FEB1A835E1B17A0ABCB7CA9906 /* ScopeGuard.cpp in Sources */, - 3AA77BD1F4C8076B6E08D3259BD84FA4 /* SpookyHashV2.cpp in Sources */, - AB6B490BE3CD6208CF2D24E3EB7C6E10 /* String.cpp in Sources */, - 443A50BAD6B505AADEF8DA43FF83B11E /* Unicode.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 7711033FC404B3CB08B74E3280EC10F4 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 66461FCE36880BD3496945D2A2870456 /* FBReactNativeSpec-dummy.m in Sources */, - 417C1F0F90CD0DF24740636DDA0E766F /* FBReactNativeSpec-generated.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 8F425CDA40930DCAE245CB2DFBAF2BEF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C8370AAC99798BC3AC8CA50C8FDAC950 /* RCTSettingsManager.m in Sources */, - 0C3F303A8EC8581D94805BF58DED1A9B /* React-RCTSettings-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A3CE777B429D8863DD644D1CB89F079E /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 90ED7E2A7AD727E44CB3299F1302DAA1 /* RCTVibration.m in Sources */, - C0131FBC1205BA0AA6879860EADB94A5 /* React-RCTVibration-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A403457E79713A679E1C73610A66FE3D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 4DC0D48E0F0A2BBDEB45790A8E8A0FC5 /* JSCExecutorFactory.mm in Sources */, - 179730EFB0F3B2FADBB467E5B85054F7 /* NSDataBigString.mm in Sources */, - 1BFA99F8FC4F4746B2C0898C84268FA6 /* RCTAccessibilityManager.m in Sources */, - 9D229AF64A1B002B8C19803BBF09A1C6 /* RCTActivityIndicatorView.m in Sources */, - 0C5DEBCF8F4FCB0168A322A897DCFF38 /* RCTActivityIndicatorViewManager.m in Sources */, - B8658BECB241EAF328A8179AD782433E /* RCTAlertManager.m in Sources */, - CE8811AB4273BEA213991FB188A39FC3 /* RCTAppState.m in Sources */, - D697590A49CE72C3B551D7AB750EBE2F /* RCTAssert.m in Sources */, - 3E535024A24E899E7A968B76A1E75D4A /* RCTAsyncLocalStorage.m in Sources */, - 2FA34ACDB9B71BEFCD11132AB76D14FD /* RCTBorderDrawing.m in Sources */, - 854CF0D927A05041B9EA053336504DCA /* RCTBridge.m in Sources */, - 973B16323C27A88CF7A725B8120785D2 /* RCTBundleURLProvider.m in Sources */, - B67C1013B73E7F795FCAFF91C0414A86 /* RCTClipboard.m in Sources */, - C12F7B16155CCF917AC223EB8DBC686A /* RCTComponentData.m in Sources */, - DB237AF4E8189CBA56800FAA2DB5E354 /* RCTComponentEvent.m in Sources */, - D0FFF58C8032BBC8DA4503F871A52338 /* RCTConvert+CoreLocation.m in Sources */, - 9A1503D5A59D8604310D86682FDAD21B /* RCTConvert+Transform.m in Sources */, - 582E7546B38319D0BA4252F9F346CF89 /* RCTConvert.m in Sources */, - E7DB067695F4B5580F9BF955333937A7 /* RCTCxxBridge.mm in Sources */, - 04272B8B0242706E2193DB9AFE237F40 /* RCTCxxConvert.m in Sources */, - 6D54CD4503041ADC26CB7153AD3BBC9B /* RCTCxxMethod.mm in Sources */, - B16724A8F7C19E4FC4BD422274463B4F /* RCTCxxModule.mm in Sources */, - 0901126C9338F730EEEFD782FE0D968C /* RCTCxxUtils.mm in Sources */, - 55FDA4D8A9B683716B29854F7A63435C /* RCTDatePicker.m in Sources */, - 20BC11F8E2467F25A41E2A4F41A58E01 /* RCTDatePickerManager.m in Sources */, - 02403283B0D898D87EE757ED72B795B0 /* RCTDeviceInfo.m in Sources */, - 275BE738D1F5CA3E936B5CFF4B820698 /* RCTDevLoadingView.m in Sources */, - 4E64C2E688CF73314249C53EB84CD78E /* RCTDevMenu.m in Sources */, - 3094487331FE01E458952A37E6B0C477 /* RCTDevSettings.mm in Sources */, - 0E8D0CE1B9E2C358ACFF32940A96D93F /* RCTDisplayLink.m in Sources */, - EB2B8E5BBA7BA67BDB1181031AEA2796 /* RCTErrorInfo.m in Sources */, - A0B595A814659739F0CE27F19AF0E842 /* RCTEventDispatcher.m in Sources */, - 76B76DEF15BFBC5F8813D1EED1DF98DD /* RCTEventEmitter.m in Sources */, - 6581CFC6A20D0250AA301FC1F5D69B8F /* RCTFollyConvert.mm in Sources */, - 9E099915C46A56363AFF03614B49DB3B /* RCTFont.mm in Sources */, - F72DE4140B33070BE3D15A9CBB33AECF /* RCTFPSGraph.m in Sources */, - 432BBC1656B42626B53AFF647C5CCA10 /* RCTFrameUpdate.m in Sources */, - 2356903CECF523C6B278208A860F5C3D /* RCTI18nManager.m in Sources */, - 9DBED9BFDAEB9C117F404995D7BA9584 /* RCTI18nUtil.m in Sources */, - 314D1FDB33D6F691AB0DA1E95F15A43D /* RCTImageSource.m in Sources */, - 8E5832ECB212349455D0A3202301BB20 /* RCTInspector.mm in Sources */, - F9D0A6ED2C433954E6022AB7DA1D35D5 /* RCTInspectorDevServerHelper.mm in Sources */, - 2EDEED7EE4A297A8F6B6C3AC18A0C2CD /* RCTInspectorPackagerConnection.m in Sources */, - CE813D3F8918A3F9BA411D7700B2AE88 /* RCTJavaScriptLoader.mm in Sources */, - A160E7803A3D5D4D61911F8F764617C3 /* RCTJSStackFrame.m in Sources */, - D62FA9984E76D017A9FDDC5880FB36E2 /* RCTKeyboardObserver.m in Sources */, - C18606E7265B2067D9C3DABA552BD22C /* RCTKeyCommands.m in Sources */, - 18C34C3A9A848DDF4751DD180B4DE0C8 /* RCTLayout.m in Sources */, - E58350CF83487DFB57D27891CBD8EB50 /* RCTLayoutAnimation.m in Sources */, - 04F2E13982C3DD03E6AADDB082D86AD5 /* RCTLayoutAnimationGroup.m in Sources */, - 6AACDB7DEDE1E1D1809E3B818254CDC6 /* RCTLog.mm in Sources */, - F3F21F6F7BD053F8D574ED622A610CDD /* RCTManagedPointer.mm in Sources */, - 17CBB9BE3934CDCEC484765E2C51B8DD /* RCTMaskedView.m in Sources */, - CF4DAE0AB8D7F5E464F16AD5B4E5822F /* RCTMaskedViewManager.m in Sources */, - B0262F59F567CC35EDBE9E329078AC8A /* RCTMessageThread.mm in Sources */, - 72FD087500A34583CB0EF82D43AE6169 /* RCTModalHostView.m in Sources */, - E9B1E68417AFB795BFAAC25CD3A20986 /* RCTModalHostViewController.m in Sources */, - F415A453C55B874749C2168D436F6936 /* RCTModalHostViewManager.m in Sources */, - 347104BE6C82D3EFC5A0DBE92C095B83 /* RCTModalManager.m in Sources */, - 8158D88DDD679783A59640167F6B2A66 /* RCTModuleData.mm in Sources */, - E38F57AA43BC472A0A7377F0DC64EAD3 /* RCTModuleMethod.mm in Sources */, - 5C7E605B4C2C181856654DC846CBEB0D /* RCTMultipartDataTask.m in Sources */, - F7D9C010C66216A32D145C2F0995523C /* RCTMultipartStreamReader.m in Sources */, - 2A8F062E0D73EAE71202D313C331FF1F /* RCTNativeModule.mm in Sources */, - 0EB95F5B8E3CFA1E3EB353CB88412DB8 /* RCTObjcExecutor.mm in Sources */, - 6216790D8F849F939FA06E54C1DD18F3 /* RCTPackagerClient.m in Sources */, - B4DAB21BCAD302B508475FDFDB78409B /* RCTPackagerConnection.mm in Sources */, - 1AB98DE085098FD60D73730F3929D28C /* RCTParserUtils.m in Sources */, - B47DAC5CAA4AC680D3180C307BFFCED9 /* RCTPerfMonitor.m in Sources */, - 5C25CAEFED4CDE2B4F90132A5122C44B /* RCTPerformanceLogger.m in Sources */, - 027DCC5A7FE582E8B848E0724872A4CC /* RCTPicker.m in Sources */, - 40006099228CED1BC3331213770661D5 /* RCTPickerManager.m in Sources */, - 8AA9337018EB7682DE357A7CE66B37C4 /* RCTProfile.m in Sources */, - ABEF1973E5E4D967429811B3FFC3929E /* RCTProfileTrampoline-arm.S in Sources */, - 2CDB385F3DB95C7A9EF95F3EF07CE5E8 /* RCTProfileTrampoline-arm64.S in Sources */, - 97A76F51F564C0764C07F5CA05A71116 /* RCTProfileTrampoline-i386.S in Sources */, - 32A3776575E03F9234B4E616AB33A4EC /* RCTProfileTrampoline-x86_64.S in Sources */, - D3A7FA3870DB151036037D68EED9539D /* RCTProgressViewManager.m in Sources */, - 3F0FFF242144350C7E3D639B6C566F8B /* RCTReconnectingWebSocket.m in Sources */, - B3539346B1C9E6FD20FE4154AF13EEC1 /* RCTRedBox.m in Sources */, - BA3FC11A7C0C6E05CCD7A3FC12B22217 /* RCTRedBoxExtraDataViewController.m in Sources */, - 04C31F90A3AB6C84AEDC3AF831AA2847 /* RCTRefreshControl.m in Sources */, - A8F49D0AD682FAEC64FD0DFE710813EE /* RCTRefreshControlManager.m in Sources */, - ECE7940ACCA39C2C35C4D929BE8F7BA6 /* RCTReloadCommand.m in Sources */, - 735C26B0C51442BB29899FCE70506791 /* RCTRootContentView.m in Sources */, - 1A5CCD6A9E653F5F0B97531077944784 /* RCTRootShadowView.m in Sources */, - 05F2336AE113EAC2E88104745EB7C077 /* RCTRootView.m in Sources */, - D15AC2DBC6AB16559AD4010FBF9F1F76 /* RCTSafeAreaShadowView.m in Sources */, - 7D704FFC59672DA0BA57C6E7B9F4D202 /* RCTSafeAreaView.m in Sources */, - 74A789173ED9EB830DA6DA6B1C37036B /* RCTSafeAreaViewLocalData.m in Sources */, - 4BDDEE1B549BB9E67307A6732C832C21 /* RCTSafeAreaViewManager.m in Sources */, - A77A01D80082E702AE279FAE5FD9B59B /* RCTScrollContentShadowView.m in Sources */, - 0BFE1E850070DE8199DC04C18B16C373 /* RCTScrollContentView.m in Sources */, - E514911259C84D2DD0928E5BD46A6D5E /* RCTScrollContentViewManager.m in Sources */, - 07FE40ECE7265F7646860328492666A4 /* RCTScrollView.m in Sources */, - C728DB078687BD659BBAD389E48E594B /* RCTScrollViewManager.m in Sources */, - 14D36078B07B8AED1651DD9BF7020843 /* RCTSegmentedControl.m in Sources */, - 1B4DAB13032413CBA3E801775ADFCCF2 /* RCTSegmentedControlManager.m in Sources */, - 7F5AAEC8F73BEC8CF7D62973D8208F6C /* RCTShadowView+Internal.m in Sources */, - 4206DCBFDF14C7280463B63479B54BD2 /* RCTShadowView+Layout.m in Sources */, - D128E8CBA5A95481D8F13A9145952020 /* RCTShadowView.m in Sources */, - 5DBEE0F424A8B1B4BE4BC1DA645AF545 /* RCTSlider.m in Sources */, - 46D278F9C5E83CF09BBAE819D05041BE /* RCTSliderManager.m in Sources */, - 212D4F0B03BF9304919DE40DFBA78B44 /* RCTSourceCode.m in Sources */, - 36AAFDC9E2976F52BDC5977045032AAD /* RCTSRWebSocket.m in Sources */, - EA7E5D455770F8A77B3A1AB0712CB98D /* RCTStatusBarManager.m in Sources */, - CCE1D405A708DAE7323BFB84F0F0E4D2 /* RCTSurface.mm in Sources */, - 0785CE8C4A0399E52DDF73BA02FBABB2 /* RCTSurfaceHostingProxyRootView.mm in Sources */, - 966E8B7C8E6DC6E3836A57319E4AC314 /* RCTSurfaceHostingView.mm in Sources */, - FB0862EEBD07B034EBDFF030FA104DA1 /* RCTSurfacePresenterStub.m in Sources */, - F7326C54AFF5725D5AA4170653AAA9FF /* RCTSurfaceRootShadowView.m in Sources */, - 8BFA0CC495C630A26304F814D6568F16 /* RCTSurfaceRootView.mm in Sources */, - A06205D7A934D7E5BC1E11C12C1058B4 /* RCTSurfaceSizeMeasureMode.mm in Sources */, - 3EF2B099CB26EF9B46566BBF46395276 /* RCTSurfaceStage.m in Sources */, - FA6F427622DE65F1E1952196D41C3F73 /* RCTSurfaceView.mm in Sources */, - B8288C1D694F4E09B3E05A8870626172 /* RCTSwitch.m in Sources */, - 3E31268BDE9BD0A33499E9C708386799 /* RCTSwitchManager.m in Sources */, - E6513BA85B0E6C2102CD8408B65935C7 /* RCTTiming.m in Sources */, - D0D5174880B58CC2DB4B15A38AA6C951 /* RCTTouchEvent.m in Sources */, - B73A61F34B008CCB1DAC3621D458D69B /* RCTTouchHandler.m in Sources */, - 593332624F9164F4F635B9DC2AE102DB /* RCTUIManager.m in Sources */, - 0264E8B71BF239B0FD6DFF1116C1FF44 /* RCTUIManagerObserverCoordinator.mm in Sources */, - 0DA1DC8BDB6EF1A0C67D7D57CC1855B9 /* RCTUIManagerUtils.m in Sources */, - CF4D7A926A961308575E23457848AE9D /* RCTUIUtils.m in Sources */, - 649B00312A2F65FE643E119B4EA7E89A /* RCTUtils.m in Sources */, - A2BE83DE6FF01B8F0B0E7D8B5DD9CC0D /* RCTVersion.m in Sources */, - 0DB416EED4CEE504F784A84AE9F2D614 /* RCTView.m in Sources */, - 1CAB74DAED2832CD0DEFB3881E213F37 /* RCTViewManager.m in Sources */, - 71732A020D7EB1C0129FEFEAAC4AB874 /* RCTWeakProxy.m in Sources */, - AA4D3E08FA9673ABC3E47AB124A68D75 /* RCTWebSocketExecutor.m in Sources */, - E11D57B973664CF5804D353ECBEA4FF2 /* RCTWebSocketModule.m in Sources */, - F405AE01E7D68344B5AB3C5410DD7A21 /* RCTWrapperViewController.m in Sources */, - 383323BBF4B1C417C1F6EFF978354978 /* React-Core-dummy.m in Sources */, - 62DAAEF83AD13CB996B63F050BBB17F2 /* UIView+React.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AB16AB5EE2E599A83BAF476BD9EB334A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ABF26D1DC1C9EE89971D19009929B42D /* Pods-CalendarsExample-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C0A4C312E2D938C898B9C2D35F148371 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0042AE0DB792403A65464988D0852197 /* RCTDataRequestHandler.m in Sources */, - 1B67D5F0ACD1E9904E3AF1FD534DF4F7 /* RCTFileRequestHandler.m in Sources */, - 23BF53DD30CCD7B2A5187FC60842C4A8 /* RCTHTTPRequestHandler.mm in Sources */, - 73377F4054A018D16BC86A5C587E4F33 /* RCTNetInfo.m in Sources */, - B1411F31B870EAAB6FA7EA99A59F40B5 /* RCTNetworking.mm in Sources */, - 1B6DA67B161E142F814994ED16B7AEE0 /* RCTNetworkTask.m in Sources */, - FDE447455FFD3AF2305163642C2C5192 /* React-RCTNetwork-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DD7E65E451ED9B5D6B53907647F0B208 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1B7A5590808DBB344784A449D1FB7AAD /* RCTAnimatedImage.m in Sources */, - 18A3EF109FB676474E3C48A5D6CE986B /* RCTGIFImageDecoder.m in Sources */, - 6E607D29A2E1474992D8BBDF541791A0 /* RCTImageBlurUtils.m in Sources */, - E0DEC69A5D73D0518EBAD1DC706068A4 /* RCTImageCache.m in Sources */, - C6D62897408D42EC391EB071DD48D8C5 /* RCTImageShadowView.m in Sources */, - 549346DB10591018128C257F694E6798 /* RCTImageUtils.m in Sources */, - 4A9414E93BD3703FCFCA274C46384138 /* RCTImageView.m in Sources */, - E4DE9EA5ED64F2FC9C029A7487932DD5 /* RCTImageViewManager.m in Sources */, - E859898E4D1DE5B9D2DD64D17CA876AA /* RCTLocalAssetImageLoader.m in Sources */, - 85997D7DD00D98E5BDA170B1A99A0649 /* RCTResizeMode.m in Sources */, - 10A8EC1C4DD0E2B96BD3EE609C7FDAF5 /* RCTUIImageViewAnimated.m in Sources */, - A6D3F69B4E4C591877A0891ABEEF0DA5 /* React-RCTImage-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E39A47E1008B23D7548B74D404E46EC7 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - F564E792A3BC56E4648607E99A678354 /* Pods-CalendarsExample-tvOSTests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E9310C554C7E6419817D97D5B22E20B2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 6B81DE7470BD4787B439E38080D63F5E /* CxxNativeModule.cpp in Sources */, - 96748282A8C31ADC1EEB483B64A6B4EF /* Instance.cpp in Sources */, - 04782023478A361CC309B4E4C4B4DB48 /* JSBigString.cpp in Sources */, - 4908BB8C62A591EC9D389D8A9772DDD3 /* JSBundleType.cpp in Sources */, - FAC68A2364FC07AD1B7A518A0E30BB65 /* JSDeltaBundleClient.cpp in Sources */, - 0DE32B6D05C19DBE87F4F52DB7447D77 /* JSExecutor.cpp in Sources */, - 9BDB0A9355A8B4F72059BAA4F80CA37B /* JSIndexedRAMBundle.cpp in Sources */, - E91311326FF7121ACEBB99D87FC175AD /* MethodCall.cpp in Sources */, - 57FFE2C716B336FF876F6C49240444A8 /* ModuleRegistry.cpp in Sources */, - 40D4BFB8EE204CE390964FB8DE92C636 /* NativeToJsBridge.cpp in Sources */, - 398B07F0E0AC4AA8EC4AF1C63DCE728C /* RAMBundleRegistry.cpp in Sources */, - 440C7B1EDCD1A89674D97FEC95DC45E5 /* React-cxxreact-dummy.m in Sources */, - 0096392F77FDB42899D07B0B2F1E5C8E /* ReactMarker.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E95C04D3C7C39E1BFD3F518FD2E4FF15 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 24DC681EB1AA4E65ADA6DF92E3F69D9B /* BridgeJSCallInvoker.cpp in Sources */, - CC39BA71608BA9FFD62F8C5AF65B227F /* LongLivedObject.cpp in Sources */, - A555C6E5ABAA5DB1F62A09D2BC49DA51 /* RCTTurboModule.mm in Sources */, - 3825F7BBADE0E2636469ABA15B1C2FE3 /* RCTTurboModuleManager.mm in Sources */, - 14AA7CA15F034772E8B2636CFE2A5C85 /* ReactCommon-dummy.m in Sources */, - 990C114FE36C3BA307A4CEC634A01D41 /* TurboCxxModule.cpp in Sources */, - 080E1D5D33742F3791A8FC5C709FE265 /* TurboModule.cpp in Sources */, - F0AB1EAEB67FA9F7F0EAC55737D635B8 /* TurboModuleBinding.cpp in Sources */, - 84A5949021E42ADE6DA26A4E789E1A92 /* TurboModuleUtils.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EB464DD4A3BD787EEF54483BFA4FC8A2 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 3AD470F0AAB73AEA193154970932A60D /* JSCRuntime.cpp in Sources */, - 31DD66327BF3F6A9BD5B74BB4AA7F421 /* jsi.cpp in Sources */, - D70CC8E9D5D839CC74E2450CA3C7F493 /* JSIDynamic.cpp in Sources */, - 0AC22C82ED08A068A55010382925127F /* jsilib-posix.cpp in Sources */, - 304B429DFD4E1375B32865983941104C /* jsilib-windows.cpp in Sources */, - 61CDCF366CF6D25C7FD8F8938A773830 /* React-jsi-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 0347E9C170277CBB77F5C3DF9866DEB8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactNativeNavigation; - target = 6ADCF369490C694BEBF31C5B4517D035 /* ReactNativeNavigation */; - targetProxy = CCBE95F73D6D114EB4D0049FAEC6C555 /* PBXContainerItemProxy */; - }; - 08479026A53085E6028CB0E7176D7C20 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 6848134DC4F0BD603C0E7B1CC49270EA /* PBXContainerItemProxy */; - }; - 0D31918A5AD70268BD5AE4EE23A141FB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = F179C0D1F46D8D86876D23E65D368C3C /* PBXContainerItemProxy */; - }; - 0D751055C363323C78854582E5CE9EEB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = EE98A4C80DE900CD0C9ED8195B4EF52D /* PBXContainerItemProxy */; - }; - 0F74CB9731997781B169197C365CA23E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 06934E002C82163A668C304209689553 /* PBXContainerItemProxy */; - }; - 10ACD873D4AA06BC39DF0BBD20AF426C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 8A4A4E6E8DA4967D0D2C726A07AAE571 /* PBXContainerItemProxy */; - }; - 1233F16F505B938FF5872A024F5F3A39 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 96E6B9E47DFD4D4A1CFB53306734112A /* PBXContainerItemProxy */; - }; - 17C3904408A764BA4C90D168DA5D472D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 265D4867E699FAD7CF5656C566BEB1CC /* PBXContainerItemProxy */; - }; - 193BC8264619AF373B341F3AC5D4A8F6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = D03031D05C2A7191DF12BF8F97F601C4 /* PBXContainerItemProxy */; - }; - 1D4739A8107798F5C2879B4B99975A87 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-CalendarsExample-tvOS"; - target = 7994A9983B74369120B94F5645D30AD8 /* Pods-CalendarsExample-tvOS */; - targetProxy = DF9B9D4088FA7D34D4F8C9F9F3D50AAC /* PBXContainerItemProxy */; - }; - 1FBE281E88C19ED83233E69EE33367CA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 0EECB45AFC19BB79D7989528772E5601 /* PBXContainerItemProxy */; - }; - 2501EDA3000222DFFE798FC9545B3309 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 67F6AB0AD79DF2E56DD85288D2301579 /* PBXContainerItemProxy */; - }; - 2505044B287B33C69AD60D7DB87648E7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 118FC52DE657E013E5A98D87EC3A4CE2 /* PBXContainerItemProxy */; - }; - 2559A81BC7753CC57D5A6C1E7CF8D5D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = E3DCB3D8F0A533B7BB46EB61E99CA3EE /* PBXContainerItemProxy */; - }; - 26AC05181CF33A4E9227D17DDA7AEE49 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = F9D3756881C74D34E390BDDADE67CF64 /* PBXContainerItemProxy */; - }; - 2889A90A1A0F18572B816C1FFAB34F79 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = FF744688F1481F03514B21E5D72231AA /* PBXContainerItemProxy */; - }; - 2AA010E3221FCB666E0D6123C66594C6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 7C53CB5C717DF2F107152E0C7B720455 /* PBXContainerItemProxy */; - }; - 30DA64622E2376B38B4F315176937E50 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = FF0287F17A124E31FCBD8E14CCFEB426 /* PBXContainerItemProxy */; - }; - 317E27332B6855951145D2D143543266 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 5DF51F278C2B531A7AB8BDBA90269A41 /* PBXContainerItemProxy */; - }; - 318CB8A8DD96009663E16CA251A1C6C7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 1349CE2FBC684FED578C4B24A39AE4AA /* PBXContainerItemProxy */; - }; - 33E411E13F07690EF5109D24863E43A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = F6B5C865EF8DB7265BAB8DCCF6AB89E7 /* PBXContainerItemProxy */; - }; - 3B37FB95BDDFDB8C0DB16757889C8259 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTBlob"; - target = 95D98F901D07557EF7CA38D3F03832C5 /* React-RCTBlob */; - targetProxy = 790568C2DD90BF6DD6F2071DA03C0920 /* PBXContainerItemProxy */; - }; - 3BF1C03C5213B840564718EBFF2889A2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 0D1F52409550762FD569E3D8D712543B /* PBXContainerItemProxy */; - }; - 3F7236B56B5E8A6757C3252930431D90 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 5F49B87D97176A32388AA289E77F372E /* PBXContainerItemProxy */; - }; - 41013E96A559735139B429989B2F3644 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 3567AD7E2B44760020C17476D70D0A0F /* PBXContainerItemProxy */; - }; - 412EA3A990B6AEBB86AA3C97D5C9682C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C3FB233DB26F94BE82B629609CB4EE8E /* PBXContainerItemProxy */; - }; - 4525B78AB9B05D2433479A9579FE333F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 557407361285FA301951204E241F9CDB /* PBXContainerItemProxy */; - }; - 49CF22411A18A28762E2D16FB32A5A96 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 243E1224598243CE0CCEE4E8D1F2D091 /* PBXContainerItemProxy */; - }; - 49EDBFAB64C2D023FD0A6EDEDC242DB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = BB43E3440C83F8BC24E141BE6C01D507 /* PBXContainerItemProxy */; - }; - 4B7CF4BCE880915A07A1011FB01F4A55 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = D59A73644A58ECC04E1987DB3C8A1BC6 /* PBXContainerItemProxy */; - }; - 4F92350B5D46BCF4561A60C618FDD65F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 0462D3CA59B20A414813848E693AB128 /* PBXContainerItemProxy */; - }; - 521617DBA3CB0ABC6D080079A459997A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = D559DECC25944752D63D3A5C405239C0 /* PBXContainerItemProxy */; - }; - 52ED0D1D4CE538BBA93169D2D44FFFF0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = A8D228C6F74629133C291F6B44D7694D /* PBXContainerItemProxy */; - }; - 53B411A732F99F8D51E15B2CE451B1C2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 8F8D97FDA93DF806279F1C90D2E34F62 /* PBXContainerItemProxy */; - }; - 66ACEE72311F7CB1292D305575B5D650 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 7D76020070EC9B32E2CB3FCE476A4D5E /* PBXContainerItemProxy */; - }; - 66F08441F9F016CA320259F5EC30225B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = E8FD7532463B0528F9CE61138294EC2E /* PBXContainerItemProxy */; - }; - 67CA2DC6D35FD3BC12AB4F29F02005C0 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 424D1B65E22EE1E24952DF24D6FC0249 /* PBXContainerItemProxy */; - }; - 68B577DB195105BACA1C48A92829E5FB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 5ACAC018BE50DEE1485B8FBD6F029975 /* PBXContainerItemProxy */; - }; - 697F50247DB52D378BC51BAB4E29E877 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 5EB7F635333AF5C972E34F1D5D5F7F85 /* PBXContainerItemProxy */; - }; - 6DA107798B5109835373C02101D51E3E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 5973D9BB07B237B0A07EEB9DC0F28613 /* PBXContainerItemProxy */; - }; - 71EB785B4066F5E9D69E181ED246FC5F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-CalendarsExample"; - target = 615775D83EC041ABBE5885384EB3B4EF /* Pods-CalendarsExample */; - targetProxy = FB0F8C97C6DD8BAA6B3C64DB9F4AAD7B /* PBXContainerItemProxy */; - }; - 7373D3729CE927782A24D2D0D42B9570 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 3D8A7999B63D874FCD0BF4497D774EC4 /* PBXContainerItemProxy */; - }; - 739BC2BE987A4C7C3FEEABF36C4E8368 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = 24D24BDD822D0EDD796DCCB9F97E0977 /* PBXContainerItemProxy */; - }; - 73C9C2286093363B960DE920079024D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = D929CA685E9F3CE4FE85753839B4DCC1 /* PBXContainerItemProxy */; - }; - 7437ACEABC8EE937DA345540A8ABAF9A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-CoreModules"; - target = E16E206437995280D349D4B67695C894 /* React-CoreModules */; - targetProxy = 7DD6B93EC3D770C3A27214DFAD6002EB /* PBXContainerItemProxy */; - }; - 7461A63F993AB39EB67CB5B64395C17B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = FC21EA40C24BBDB20C2BE4568BC0017C /* PBXContainerItemProxy */; - }; - 776EC012504F3EE4305E7EF56D1FFB64 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = C808C28BB082C89DFE0F07696CE2BC09 /* PBXContainerItemProxy */; - }; - 781E92AB9AD5C64251E7E935A7F59919 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = 386C0EB352726BA92F7F015C2FB264EF /* PBXContainerItemProxy */; - }; - 78859D60C49A5986383FED4F5ED46909 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 3D875E0025C66A1FF2AD4B81ADE8AB1A /* PBXContainerItemProxy */; - }; - 7B20D1945AFD8D2275678ACDA74A9EEE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBLazyVector; - target = 8CC4EAA817AA86310D1900F1DAB3580F /* FBLazyVector */; - targetProxy = 899C118334B685CC47C90210A449A344 /* PBXContainerItemProxy */; - }; - 816BCBEB5C93B0AB6EEDE4140A9F208F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 4BDE049EAF4FCC4C06846444404009A6 /* PBXContainerItemProxy */; - }; - 835627EF16969B77D8A41E25510A5FF3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = 7A7DD39BDE982ABF52C4194EEAD590AB /* PBXContainerItemProxy */; - }; - 866D13B04A900B9C6E5AE03CE4DB7297 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTText"; - target = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6 /* React-RCTText */; - targetProxy = CBA40E7AE1F62A8A6E7A28E8AE9BB74E /* PBXContainerItemProxy */; - }; - 88A1A241AB274753A978E2E8CD059830 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 50B64EDB1396A9A4103C2C868FB8CEA4 /* PBXContainerItemProxy */; - }; - 8AF3B758EF2E1060D6636C475758FBB2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Yoga; - target = 2B25F90D819B9ADF2AF2D8733A890333 /* Yoga */; - targetProxy = 87BEB6118A17348FD49D4F20F1B3188F /* PBXContainerItemProxy */; - }; - 956CED54224ED4C72F0369A6636E0549 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 8FCA539193912F0A28E12DB893598290 /* PBXContainerItemProxy */; - }; - 95F4ED166FC0043493A95D522BD01DEC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = DD5210D113FB5480D0E6BFF1CDE4245F /* PBXContainerItemProxy */; - }; - A0C3928F735E03760B70DC4735286B75 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 51DFA6DB69D6BC7594B13005F4A0E74B /* PBXContainerItemProxy */; - }; - A10319D5917FC39E40F9BD4DDB1EF04A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = D8E27FD3930263DBE144E6DEE6DD8F43 /* PBXContainerItemProxy */; - }; - A29311AFE4FE194B4A251E8C7B5E57FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 0E9ACF16864F26F5B6DBCBE7DFE47D58 /* PBXContainerItemProxy */; - }; - A93263D2192B3B53C87927F1C910E9CE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsinspector"; - target = F7D033C4C128EECAA020990641FA985F /* React-jsinspector */; - targetProxy = 60C8C9FAE390605B1F6A1DB1051A40F6 /* PBXContainerItemProxy */; - }; - AD8CC2C3AD641422282F5A8CD85BA0A7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 13EF1229647EEDD20E086226A26C9EA6 /* PBXContainerItemProxy */; - }; - B40CDBE080A7BD59D221248B43339FDD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = C7D27A60D447887D62B4478D30D831C4 /* PBXContainerItemProxy */; - }; - B71216510B08ABC75522A021DD5C9FCE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = B4B458AAF9E354437B362F40F710CE88 /* PBXContainerItemProxy */; - }; - BAF209EB95DD44A482DECFB53DDF4EAA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = ReactCommon; - target = B6D5DD49633DFF0657B8C3F08EB3ABA9 /* ReactCommon */; - targetProxy = 645CB473A09E09C96450463D3CD2A687 /* PBXContainerItemProxy */; - }; - BB0C888F9800A9CBBD7F9AB387D65080 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 95BD7607104E910918F88DD81F19B1C1 /* PBXContainerItemProxy */; - }; - BB87C90278B653141413B07ECF29E03B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = CE8ED3B765478B8EBFC5731084A0710F /* PBXContainerItemProxy */; - }; - BD9A27944522233DC0927B646379AEDA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = EF35D916FEB5C7D4563D576974DC8374 /* PBXContainerItemProxy */; - }; - BF57805E818D9951286076AF4526ABAC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = EC5B5F10F6DB2D0F56CE870007E32DE1 /* PBXContainerItemProxy */; - }; - BF9BF0CDEA697B8AF2D71C6FF954AC77 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 2C95DFFCB2EC326C56D43774DED19805 /* PBXContainerItemProxy */; - }; - C46A1CA4D2A0C1F8623ECDC4A0BAC625 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 40A6312B91EF6591E211CA7D4740FF5B /* PBXContainerItemProxy */; - }; - C60F12BB3D0AA788D489B5D2E7583BA2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 8C3322EA93FE1112FA4E0847267F3498 /* PBXContainerItemProxy */; - }; - C6F8B6EE1BEEF8CE8AE73B377D43BAC5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = React; - target = 1BEE828C124E6416179B904A9F66D794 /* React */; - targetProxy = 62F08E6C7A6C4151CB6BC2F945969A07 /* PBXContainerItemProxy */; - }; - CB1231450678EB40FF6D52E17793B56F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = C583A5691E3DAE99E4675FD1989CDA14 /* PBXContainerItemProxy */; - }; - CD1B717D23511827B050214270259D28 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsi"; - target = FA877ADC442CB19CF61793D234C8B131 /* React-jsi */; - targetProxy = 9D77787F1C64613EA313BC1B53177FB8 /* PBXContainerItemProxy */; - }; - CF4A1EDCBC93ED34C80744E82EFA9E47 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTLinking"; - target = 6FE9147F8AAA4DE676C190F680F47AE2 /* React-RCTLinking */; - targetProxy = 9BD68D8ACC259A2357D6F95FBFF3436B /* PBXContainerItemProxy */; - }; - D09D4D6E49BA51BBDC11C5E6950F580E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = E12CEF0BB724DDDA3132C4E7F85D3B6E /* PBXContainerItemProxy */; - }; - D1B17CBC3FB65D91B8CF13A159F78473 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 2914894670B88996AFAF684490D2B770 /* PBXContainerItemProxy */; - }; - D47C61450FD47102A9D6290885B06872 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 180AD581AF9D9BC4A633E2DBC9CFF88B /* PBXContainerItemProxy */; - }; - D6BD087143576F625EC21C63221CF6D9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-jsiexecutor"; - target = DA0709CAAD589C6E7963495210438021 /* React-jsiexecutor */; - targetProxy = 49E82F703BE1319213F75B6CCCDFB91C /* PBXContainerItemProxy */; - }; - D8C76FBB7AA002D3C2BD9F147D34DFE9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 6E6A3A360D1495831C13566F3E432C6C /* PBXContainerItemProxy */; - }; - DC4AFA91DD4D3BE1D3826945716386FC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-Core"; - target = 7ACAA9BE580DD31A5CB9D97C45D9492D /* React-Core */; - targetProxy = 74FB3981CD5A16FB833B6C983AEE2E04 /* PBXContainerItemProxy */; - }; - DDAB6D8027D78DD10F1BA4FA5AB98411 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTNetwork"; - target = 651511D7DA7F07F9FC9AA40A2E86270D /* React-RCTNetwork */; - targetProxy = 01DD709E357FEC96084BE2521F70ED3E /* PBXContainerItemProxy */; - }; - DDFBB112F89C7324E0572676048A6E6D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 21E2E58CC7895C92D7CB4994458BCD18 /* PBXContainerItemProxy */; - }; - E1A987D229A9D200DE1BEBB07CA544D6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTSettings"; - target = 680299219D3A48D42A648AF6706275A9 /* React-RCTSettings */; - targetProxy = 1188C8CDA2FC58985E1612C10984752A /* PBXContainerItemProxy */; - }; - E33A6948181332F36C1B948AB5E3D4F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTTypeSafety; - target = D20469A9A1E5CFB26045EAEBE3F88E5E /* RCTTypeSafety */; - targetProxy = EFAB938296ABA2965A63F4EE7C372057 /* PBXContainerItemProxy */; - }; - E34BFF328F0D47B51288E72004999FE5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FBReactNativeSpec; - target = C3496D0495E700CF08A90C41EA8FA4BB /* FBReactNativeSpec */; - targetProxy = 3842C10F00E17344D7391DF475D9A707 /* PBXContainerItemProxy */; - }; - E5F49309FB625C006D3ADBACF72341A5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTImage"; - target = 4F265533AAB7C8985856EC78A33164BB /* React-RCTImage */; - targetProxy = 5A12CE7BAE70DD3B17AA01B5C5C0E475 /* PBXContainerItemProxy */; - }; - E768D7CF10A192412443C91BCA734CBE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = 665A6D8B41DD48125294D3CC9E74CCD6 /* PBXContainerItemProxy */; - }; - EC566DF9BFE7FD959CB2819808630F73 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Folly; - target = A4F685BE3CAC127BDCE4E0DBBD88D191 /* Folly */; - targetProxy = 973587FD3243D488ACC2A2CBA4B833BD /* PBXContainerItemProxy */; - }; - EDAA9699F59A1D14F9EB1C3976294919 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTAnimation"; - target = 938CCE22F6C4094B3FB6CF1478579E4B /* React-RCTAnimation */; - targetProxy = 12F77A3967A30A079F179F17B7CE729A /* PBXContainerItemProxy */; - }; - F1887910E1D2307247370E110F5C97EF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-cxxreact"; - target = 463F41A7E8B252F8AC5024DA1F4AF6DA /* React-cxxreact */; - targetProxy = 3E2073FF56543FDA76EFCC77A1820700 /* PBXContainerItemProxy */; - }; - F1C7F18095E6016390D9B3347858CF9B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTVibration"; - target = 53D121F9F9BB0F8AC1C94A12C5A8572F /* React-RCTVibration */; - targetProxy = C5DF0AD14EA73DDFBC972D6237A7BC49 /* PBXContainerItemProxy */; - }; - F35684772D64C0CA1DF3FAD417B69CDD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = glog; - target = D0EFEFB685D97280256C559792236873 /* glog */; - targetProxy = EED0646419E036730D0348937F804BB4 /* PBXContainerItemProxy */; - }; - F74C4B0B11351BEA1437EEC2D765376B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "React-RCTActionSheet"; - target = 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */; - targetProxy = EF4FB61ADC136AD64DA6EAD8A8E8C16A /* PBXContainerItemProxy */; - }; - F7D04D57FB116EFF248374308C552CC8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = DoubleConversion; - target = 2AB2EF542954AB1C999E03BFEF8DE806 /* DoubleConversion */; - targetProxy = 2DBF470DA8A0AE820A5ABA7AA5EDEBB9 /* PBXContainerItemProxy */; - }; - FAC411C23D2CEEC99A061A1A4B22D07D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RCTRequired; - target = E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */; - targetProxy = 6A307E7AA187B3493D468319584B81F0 /* PBXContainerItemProxy */; - }; - FCF08186724BF5B4FB64D9D9D570F1C8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "boost-for-react-native"; - target = ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */; - targetProxy = 3DFA7A3D896E0923873147B11AC710C1 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 0A80F5B5D9A7EEAD76B3352C5E8DA987 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 948F446B4881A6C512730ECDC0A1B8D9 /* React-CoreModules.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-CoreModules/React-CoreModules-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = CoreModules; - PRODUCT_NAME = "React-CoreModules"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 0B5052AB0CF3E91D959495D45C6892CD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0D7AF7130253177561A39A66DEB4686D /* DoubleConversion.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = DoubleConversion; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 0EC3A23A31F25E370EFBA1F1586B2011 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 41DB623908F11E8A026B0AF96DA6D3F5 /* FBLazyVector.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 1687EECAC44F00B70B43558EEC99E308 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 84AC2ED43EAFDF71A182199DA73FE6A5 /* React-jsi.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-jsi/React-jsi-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsi; - PRODUCT_NAME = "React-jsi"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 265DE69E4602E2E9B3D2E5487D9BA6AE /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1397723F36DBA3811F2B788D71AF3965 /* Folly.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Folly/Folly-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = Folly; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 2BD649F79F2E4E372CEFE455FAAAA75C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 995C942B2254716E1D2BD0E7F78FE98F /* React-RCTBlob.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-RCTBlob/React-RCTBlob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTBlob; - PRODUCT_NAME = "React-RCTBlob"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 2C2133976E4BE31D2DBC3E3E8431094F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 33280B41AF2C68E56E429B3B2113BA46 /* Pods-CalendarsExample-tvOS.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; - }; - 2D3DA3F6E8D8E34F89A21890B2CF9E75 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4262B0EC88101A06C3E1C2994998B301 /* React-RCTNetwork.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-RCTNetwork/React-RCTNetwork-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTNetwork; - PRODUCT_NAME = "React-RCTNetwork"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 2E7E5D745C5FF953379C31618F211E14 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 3FB861268C709613DA86AF3B4F913256 /* Pods-CalendarsExample-tvOSTests.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; - }; - 30FAA0CE493A4C291A9F66B23635E8F1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0D7AF7130253177561A39A66DEB4686D /* DoubleConversion.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/DoubleConversion/DoubleConversion-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = DoubleConversion; - PRODUCT_NAME = DoubleConversion; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 38865DF5D279373E4A09FD85CCED63C5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 47CC09E710CCEC47007E4E0BA3568061 /* 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; - }; - 3A01906974726C9E020C5416A0DC9CCE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9CED3452BEC03824202FB005DC51187F /* RCTTypeSafety.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/RCTTypeSafety/RCTTypeSafety-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTTypeSafety; - PRODUCT_NAME = RCTTypeSafety; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 3D6D66814F5A4181D76BDF96C42801E7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E63960AF9821CA4C2B292CA798F5723C /* React-RCTImage.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-RCTImage/React-RCTImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTImage; - PRODUCT_NAME = "React-RCTImage"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 4567E5FB6F72053C70A778964D9FE21B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FBD4C30437285D031146EA01C45A5125 /* Pods-CalendarsExampleTests.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; - }; - 49C315027487B24B3E5BC85B4AEFC67C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D5BF6D20138DCB83BFBFD1A775576B5C /* React-RCTAnimation.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-RCTAnimation/React-RCTAnimation-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTAnimation; - PRODUCT_NAME = "React-RCTAnimation"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 4EA94E1A339A6006072DA3C24ED88FDE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 995C942B2254716E1D2BD0E7F78FE98F /* React-RCTBlob.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-RCTBlob/React-RCTBlob-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTBlob; - PRODUCT_NAME = "React-RCTBlob"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 4FA3622B1D974F3C31D9C1ED92410002 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E2D8806A700836BCD1344D91401A7172 /* React.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 529DD0C663BB1E2344FB113C35C03F9E /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E63960AF9821CA4C2B292CA798F5723C /* React-RCTImage.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-RCTImage/React-RCTImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTImage; - PRODUCT_NAME = "React-RCTImage"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 53DBFD92C416AC7E3CB3BE9C85296BFF /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4E8349FA45346FE05BB7B1E1F11E3E74 /* React-RCTVibration.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-RCTVibration/React-RCTVibration-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTVibration; - PRODUCT_NAME = "React-RCTVibration"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 662012B0717D41DF6B90765CC8B90552 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E989F6316A747D8F1D48607134C17D99 /* boost-for-react-native.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 6A6F39801D45DD240C91ED76E02A5716 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC25AC5141DFF5E47D0ED5CD65C13E0C /* ReactCommon.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/ReactCommon/ReactCommon-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactCommon; - PRODUCT_NAME = ReactCommon; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 739F90E730E2F8C4AB46C6BB73215C4D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E2D8806A700836BCD1344D91401A7172 /* React.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 760FAC2BC7FE9808A60079A34653FD53 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 09E6F6EEB4A51FF5E965D58BA6DFE55F /* React-RCTLinking.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-RCTLinking/React-RCTLinking-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTLinking; - PRODUCT_NAME = "React-RCTLinking"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 794C6EACCCA1829C7F06D7822F69698A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 798913C836D4159FE568350B5478E2D1 /* glog.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7999FA9E485DACCD9D5741AABB14EF9A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 948F446B4881A6C512730ECDC0A1B8D9 /* React-CoreModules.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-CoreModules/React-CoreModules-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = CoreModules; - PRODUCT_NAME = "React-CoreModules"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7B1AB0726CAB9F846C4E8269755F17A2 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 98A4EB55B7A5C99BFB725FC0A7D4CA14 /* React-cxxreact.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-cxxreact/React-cxxreact-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = cxxreact; - PRODUCT_NAME = "React-cxxreact"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 7D6B5F35DE47B73CA8AE3DA6AAE6CDAE /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 84AC2ED43EAFDF71A182199DA73FE6A5 /* React-jsi.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-jsi/React-jsi-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsi; - PRODUCT_NAME = "React-jsi"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 7E675B61999495CDBD53DA998A0E70A3 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EBD1BDE09865E9B94AE500B8524D36D5 /* Pods-CalendarsExample-tvOSTests.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; - }; - 81F681954E991703FFEB5C85B2567591 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6D5EA87CEB99C21C4FF70F55AEC6D82B /* Pods-CalendarsExample-tvOS.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; - }; - 8283924112EC3D2C531DB77A33BAABDC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0115063272DD6DCB19B655C513262606 /* React-RCTSettings.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-RCTSettings/React-RCTSettings-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTSettings; - PRODUCT_NAME = "React-RCTSettings"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 838E2AB87CAEFC85D3CA98F3D9DDF3F8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 798913C836D4159FE568350B5478E2D1 /* glog.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/glog/glog-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = glog; - PRODUCT_NAME = glog; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 859E895C895D63E002CB799C38FD96B4 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D5BF6D20138DCB83BFBFD1A775576B5C /* React-RCTAnimation.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-RCTAnimation/React-RCTAnimation-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTAnimation; - PRODUCT_NAME = "React-RCTAnimation"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 85EA1136222254B286CF689213B721DA /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9CED3452BEC03824202FB005DC51187F /* RCTTypeSafety.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/RCTTypeSafety/RCTTypeSafety-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTTypeSafety; - PRODUCT_NAME = RCTTypeSafety; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 874478A56063DB085FCAAB4B9E03591C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 641C5C9EE49F9599A0616245D9F64668 /* React-Core.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-Core/React-Core-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = React; - PRODUCT_NAME = "React-Core"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 87CBD7A7BB8DEF9DEBF37A5AFB5ABF2C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7260B6BA331D206810E449904548A049 /* React-jsiexecutor.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-jsiexecutor/React-jsiexecutor-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsireact; - PRODUCT_NAME = "React-jsiexecutor"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 8BE1679EE154DDCB6419EC2ADF503249 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A9EE4E13A7217DCA4B897E24417029F /* React-jsinspector.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-jsinspector/React-jsinspector-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsinspector; - PRODUCT_NAME = "React-jsinspector"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 8D96D917D09CDFC93AF213089943EFAC /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4262B0EC88101A06C3E1C2994998B301 /* React-RCTNetwork.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-RCTNetwork/React-RCTNetwork-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTNetwork; - PRODUCT_NAME = "React-RCTNetwork"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 8DD51C3D5651E1E64A4D7554371E03E1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B75B30AC91ECCF58EC3B478A45952D94 /* React-RCTActionSheet.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-RCTActionSheet/React-RCTActionSheet-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTActionSheet; - PRODUCT_NAME = "React-RCTActionSheet"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 8F17DC3A99F99FBAD606CE6963886315 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Release; - }; - 90DD80FF09FB6CDE591D10EA1C242058 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1397723F36DBA3811F2B788D71AF3965 /* Folly.xcconfig */; - buildSettings = { - CODE_SIGN_IDENTITY = "iPhone Developer"; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - GCC_PREFIX_HEADER = "Target Support Files/Folly/Folly-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = folly; - PRODUCT_NAME = Folly; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 916E0404255105F480DC4950B7625F7A /* 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; - 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 = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Debug; - }; - 9FB04105756BA5146AE1EBE9977B6BD2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 47CC09E710CCEC47007E4E0BA3568061 /* 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; - }; - A254650AB5A3A5E0A7E1C98AF036BC50 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC25AC5141DFF5E47D0ED5CD65C13E0C /* ReactCommon.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/ReactCommon/ReactCommon-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactCommon; - PRODUCT_NAME = ReactCommon; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A5D1491BB85316FB859A68BE76CDE84F /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B75B30AC91ECCF58EC3B478A45952D94 /* React-RCTActionSheet.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-RCTActionSheet/React-RCTActionSheet-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTActionSheet; - PRODUCT_NAME = "React-RCTActionSheet"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A813B391E9EFECEAB0DF2F5CEDB26750 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E5C273ABEF7E424AC03750B6D82699DA /* FBReactNativeSpec.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/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBReactNativeSpec; - PRODUCT_NAME = FBReactNativeSpec; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - A83F06DDFF7D1F90F8953D7808F69401 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = FC95D8A149D214E0070E7832BE198B21 /* Pods-CalendarsExampleTests.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; - }; - B47CB119A04704FF179A9572B6D069EF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 641C5C9EE49F9599A0616245D9F64668 /* React-Core.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-Core/React-Core-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = React; - PRODUCT_NAME = "React-Core"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - B5381783585EAE202779AF58288D57EC /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 69E8A5F10176DFB95B5443D74C3B9FF9 /* Pods-CalendarsExample.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; - }; - B74A66D1B4DB325F337289BC6923B612 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E3E2E32FBCC1F05FFAA79AB104A8CFE5 /* RCTRequired.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - C128C18739AA9067D388429C13824733 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 41DB623908F11E8A026B0AF96DA6D3F5 /* FBLazyVector.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C53F668EDD19C33992F74C66F43E4E94 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4E8349FA45346FE05BB7B1E1F11E3E74 /* React-RCTVibration.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-RCTVibration/React-RCTVibration-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTVibration; - PRODUCT_NAME = "React-RCTVibration"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C64E301454C3CBC76D31024536136E47 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 70213BDC2825450815F0BEA54B215C24 /* ReactNativeNavigation.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/ReactNativeNavigation/ReactNativeNavigation-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactNativeNavigation; - PRODUCT_NAME = ReactNativeNavigation; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - CA10D4499BD3352EBC8B5DF60984A3C8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 37F6296183ED22523A7C92398BCCF486 /* React-RCTText.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-RCTText/React-RCTText-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTText; - PRODUCT_NAME = "React-RCTText"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - CEA983B14AF43B73C0871845BDF1BBA0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 37F6296183ED22523A7C92398BCCF486 /* React-RCTText.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-RCTText/React-RCTText-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTText; - PRODUCT_NAME = "React-RCTText"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - D2112A89EA3372DF3C151B53FE7889C7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 70213BDC2825450815F0BEA54B215C24 /* ReactNativeNavigation.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/ReactNativeNavigation/ReactNativeNavigation-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = ReactNativeNavigation; - PRODUCT_NAME = ReactNativeNavigation; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - D853076DFAB4A4B4562427C49EC35204 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E989F6316A747D8F1D48607134C17D99 /* boost-for-react-native.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - D94EF70A488A88BD171D70A15BFD46FF /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A9EE4E13A7217DCA4B897E24417029F /* React-jsinspector.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-jsinspector/React-jsinspector-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsinspector; - PRODUCT_NAME = "React-jsinspector"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - DE4E0DAFF0236084703632955B393B89 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E3E2E32FBCC1F05FFAA79AB104A8CFE5 /* RCTRequired.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - CODE_SIGN_IDENTITY = "iPhone Developer"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - E03427126DC2751A8592E25F4901E813 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 0115063272DD6DCB19B655C513262606 /* React-RCTSettings.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-RCTSettings/React-RCTSettings-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTSettings; - PRODUCT_NAME = "React-RCTSettings"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - E3BBDFBECD3E46B10BB0AE1EE39751D0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = ECAFEFF1F4135DFEC9F141290B785AB7 /* Pods-CalendarsExample.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; - }; - E63F7F1B3FBD17974505863CD0017669 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E5C273ABEF7E424AC03750B6D82699DA /* FBReactNativeSpec.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/FBReactNativeSpec/FBReactNativeSpec-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = FBReactNativeSpec; - PRODUCT_NAME = FBReactNativeSpec; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - E90F7EB7636AC5D06EED38A32625DB3D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 09E6F6EEB4A51FF5E965D58BA6DFE55F /* React-RCTLinking.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-RCTLinking/React-RCTLinking-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = RCTLinking; - PRODUCT_NAME = "React-RCTLinking"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F44BBC1856C437DC2FD741D225CCA63E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7260B6BA331D206810E449904548A049 /* React-jsiexecutor.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-jsiexecutor/React-jsiexecutor-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = jsireact; - PRODUCT_NAME = "React-jsiexecutor"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - F9897A3DDEF36775B4BBF0533DFB0A64 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 98A4EB55B7A5C99BFB725FC0A7D4CA14 /* React-cxxreact.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-cxxreact/React-cxxreact-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRIVATE_HEADERS_FOLDER_PATH = ""; - PRODUCT_MODULE_NAME = cxxreact; - PRODUCT_NAME = "React-cxxreact"; - PUBLIC_HEADERS_FOLDER_PATH = ""; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 0569CCDF3B3B687CF01EE8D4001AA7CC /* Build configuration list for PBXNativeTarget "DoubleConversion" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0B5052AB0CF3E91D959495D45C6892CD /* Debug */, - 30FAA0CE493A4C291A9F66B23635E8F1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 126589E951C0D69C2BAEC6627B0F70C7 /* Build configuration list for PBXNativeTarget "React-RCTNetwork" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2D3DA3F6E8D8E34F89A21890B2CF9E75 /* Debug */, - 8D96D917D09CDFC93AF213089943EFAC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 1C693249841FC98C262A41ECDF08B7C0 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 662012B0717D41DF6B90765CC8B90552 /* Debug */, - D853076DFAB4A4B4562427C49EC35204 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 215462817587A01224DE155F7C1572B3 /* Build configuration list for PBXNativeTarget "React-jsinspector" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D94EF70A488A88BD171D70A15BFD46FF /* Debug */, - 8BE1679EE154DDCB6419EC2ADF503249 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 242333E4A9C2BF6DF8964160796833A9 /* Build configuration list for PBXNativeTarget "Pods-CalendarsExampleTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A83F06DDFF7D1F90F8953D7808F69401 /* Debug */, - 4567E5FB6F72053C70A778964D9FE21B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 2B3BC7E8270BDE15126C66C4A8C7EFD5 /* Build configuration list for PBXNativeTarget "React-RCTVibration" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 53DBFD92C416AC7E3CB3BE9C85296BFF /* Debug */, - C53F668EDD19C33992F74C66F43E4E94 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 32A65AD2DD6B9F8BFCD65DF8B4AA1F65 /* Build configuration list for PBXNativeTarget "React-RCTActionSheet" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A5D1491BB85316FB859A68BE76CDE84F /* Debug */, - 8DD51C3D5651E1E64A4D7554371E03E1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 3AD2D67288DF0CBA5E463468EDBDB5B2 /* Build configuration list for PBXNativeTarget "ReactNativeNavigation" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C64E301454C3CBC76D31024536136E47 /* Debug */, - D2112A89EA3372DF3C151B53FE7889C7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 433345309CDFFF555CEC0B73441F2480 /* Build configuration list for PBXNativeTarget "React-RCTBlob" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2BD649F79F2E4E372CEFE455FAAAA75C /* Debug */, - 4EA94E1A339A6006072DA3C24ED88FDE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 916E0404255105F480DC4950B7625F7A /* Debug */, - 8F17DC3A99F99FBAD606CE6963886315 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 571F2AF26E3E3BE1CF278297E4327EA3 /* Build configuration list for PBXAggregateTarget "RCTRequired" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B74A66D1B4DB325F337289BC6923B612 /* Debug */, - DE4E0DAFF0236084703632955B393B89 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 5E87C273FA7E6CF0206BBAFEFFAA53A4 /* Build configuration list for PBXNativeTarget "glog" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 794C6EACCCA1829C7F06D7822F69698A /* Debug */, - 838E2AB87CAEFC85D3CA98F3D9DDF3F8 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 611882B4FC76DDB90E3FE11E69E82A1D /* Build configuration list for PBXAggregateTarget "FBLazyVector" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 0EC3A23A31F25E370EFBA1F1586B2011 /* Debug */, - C128C18739AA9067D388429C13824733 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7088478B510ECB79F5540CA35B970819 /* Build configuration list for PBXNativeTarget "React-Core" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 874478A56063DB085FCAAB4B9E03591C /* Debug */, - B47CB119A04704FF179A9572B6D069EF /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7D7A8F1C21B9CAF2E7F03117905ED1F7 /* Build configuration list for PBXAggregateTarget "React" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 4FA3622B1D974F3C31D9C1ED92410002 /* Debug */, - 739F90E730E2F8C4AB46C6BB73215C4D /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8AEA3CF29BF6CC011099BECDD7FBE41F /* Build configuration list for PBXNativeTarget "React-RCTImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 529DD0C663BB1E2344FB113C35C03F9E /* Debug */, - 3D6D66814F5A4181D76BDF96C42801E7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 920F7AE96737B6C7AF008996F3CAF047 /* Build configuration list for PBXNativeTarget "Folly" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 265DE69E4602E2E9B3D2E5487D9BA6AE /* Debug */, - 90DD80FF09FB6CDE591D10EA1C242058 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 92E0F7C8A41DE1102CDCEF4684E61A5B /* Build configuration list for PBXNativeTarget "Pods-CalendarsExample" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - B5381783585EAE202779AF58288D57EC /* Debug */, - E3BBDFBECD3E46B10BB0AE1EE39751D0 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 94BA432276622690708C6B59BA158661 /* Build configuration list for PBXNativeTarget "React-jsiexecutor" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 87CBD7A7BB8DEF9DEBF37A5AFB5ABF2C /* Debug */, - F44BBC1856C437DC2FD741D225CCA63E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9D94BD8072AB7502592FA63561A0DCE3 /* Build configuration list for PBXNativeTarget "React-RCTSettings" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E03427126DC2751A8592E25F4901E813 /* Debug */, - 8283924112EC3D2C531DB77A33BAABDC /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - AEF20FCF50FC4D1CC787BBA5317D3037 /* Build configuration list for PBXNativeTarget "React-CoreModules" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7999FA9E485DACCD9D5741AABB14EF9A /* Debug */, - 0A80F5B5D9A7EEAD76B3352C5E8DA987 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - B3E76B1390AF20A46D319CDCE2224F68 /* Build configuration list for PBXNativeTarget "ReactCommon" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A254650AB5A3A5E0A7E1C98AF036BC50 /* Debug */, - 6A6F39801D45DD240C91ED76E02A5716 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - CC3433B08FA9D085951A13BBD74D9A28 /* Build configuration list for PBXNativeTarget "React-RCTAnimation" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 49C315027487B24B3E5BC85B4AEFC67C /* Debug */, - 859E895C895D63E002CB799C38FD96B4 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - CC366A22F9451D397AB23382F3C72BC4 /* Build configuration list for PBXNativeTarget "React-RCTLinking" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 760FAC2BC7FE9808A60079A34653FD53 /* Debug */, - E90F7EB7636AC5D06EED38A32625DB3D /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D7D4A275B0EA73E7CA2B30990D113B6F /* Build configuration list for PBXNativeTarget "React-jsi" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1687EECAC44F00B70B43558EEC99E308 /* Debug */, - 7D6B5F35DE47B73CA8AE3DA6AAE6CDAE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - DB5640A4D55A282178129AB8D3C40CC3 /* Build configuration list for PBXNativeTarget "Yoga" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 38865DF5D279373E4A09FD85CCED63C5 /* Debug */, - 9FB04105756BA5146AE1EBE9977B6BD2 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E3159D6E14BCF4B03E73A99846441C65 /* Build configuration list for PBXNativeTarget "Pods-CalendarsExample-tvOS" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2C2133976E4BE31D2DBC3E3E8431094F /* Debug */, - 81F681954E991703FFEB5C85B2567591 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - E8AA29BA0F35EB58274C18D228085DD5 /* Build configuration list for PBXNativeTarget "React-cxxreact" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7B1AB0726CAB9F846C4E8269755F17A2 /* Debug */, - F9897A3DDEF36775B4BBF0533DFB0A64 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - EAB91469C0E589E392237EB540404DC4 /* Build configuration list for PBXNativeTarget "Pods-CalendarsExample-tvOSTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 2E7E5D745C5FF953379C31618F211E14 /* Debug */, - 7E675B61999495CDBD53DA998A0E70A3 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F3B5D9DA1E40073F034CC27A3F9CD632 /* Build configuration list for PBXNativeTarget "FBReactNativeSpec" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A813B391E9EFECEAB0DF2F5CEDB26750 /* Debug */, - E63F7F1B3FBD17974505863CD0017669 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F498C3F70A6FBC2B55C92EEF25E8E64A /* Build configuration list for PBXNativeTarget "RCTTypeSafety" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 85EA1136222254B286CF689213B721DA /* Debug */, - 3A01906974726C9E020C5416A0DC9CCE /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - FF0A08E8F430024C20EB71D620C340C3 /* Build configuration list for PBXNativeTarget "React-RCTText" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CEA983B14AF43B73C0871845BDF1BBA0 /* Debug */, - CA10D4499BD3352EBC8B5DF60984A3C8 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; -} diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-Info.plist b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-Info.plist deleted file mode 100644 index 2243fe6e27..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-acknowledgements.markdown deleted file mode 100644 index 102af75385..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-acknowledgements.plist deleted file mode 100644 index 7acbad1eab..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - 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-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-dummy.m b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-dummy.m deleted file mode 100644 index ab01a6b894..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_CalendarsExample_tvOS : NSObject -@end -@implementation PodsDummy_Pods_CalendarsExample_tvOS -@end diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-umbrella.h b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-umbrella.h deleted file mode 100644 index a02525ed9b..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_CalendarsExample_tvOSVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_CalendarsExample_tvOSVersionString[]; - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.debug.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.debug.xcconfig deleted file mode 100644 index 860bf2117c..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.debug.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.modulemap b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.modulemap deleted file mode 100644 index fa7a7df48c..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_CalendarsExample_tvOS { - umbrella header "Pods-CalendarsExample-tvOS-umbrella.h" - - export * - module * { export * } -} diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.release.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.release.xcconfig deleted file mode 100644 index 860bf2117c..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOS/Pods-CalendarsExample-tvOS.release.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-Info.plist b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-Info.plist deleted file mode 100644 index 2243fe6e27..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-acknowledgements.markdown deleted file mode 100644 index 102af75385..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-acknowledgements.plist deleted file mode 100644 index 7acbad1eab..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - 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-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-dummy.m b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-dummy.m deleted file mode 100644 index 2de56a5b23..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_CalendarsExample_tvOSTests : NSObject -@end -@implementation PodsDummy_Pods_CalendarsExample_tvOSTests -@end diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-umbrella.h b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-umbrella.h deleted file mode 100644 index fbd6bf3d69..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_CalendarsExample_tvOSTestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_CalendarsExample_tvOSTestsVersionString[]; - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.debug.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.debug.xcconfig deleted file mode 100644 index 860bf2117c..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.debug.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.modulemap b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.modulemap deleted file mode 100644 index 2df27a61ed..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_CalendarsExample_tvOSTests { - umbrella header "Pods-CalendarsExample-tvOSTests-umbrella.h" - - export * - module * { export * } -} diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.release.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.release.xcconfig deleted file mode 100644 index 860bf2117c..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample-tvOSTests/Pods-CalendarsExample-tvOSTests.release.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-Info.plist b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-Info.plist deleted file mode 100644 index 2243fe6e27..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-acknowledgements.markdown deleted file mode 100644 index eb3f4c5584..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-acknowledgements.markdown +++ /dev/null @@ -1,385 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## DoubleConversion - -Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -## Folly - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - -## React - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -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-Core - -MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -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. - - -## ReactNativeNavigation - -MIT License - -Copyright (c) 2016 Wix.com - -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. - - -## boost-for-react-native - -Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -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, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - -## glog - -Copyright (c) 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -A function gettimeofday in utilities.cc is based on - -http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd - -The license of this code is: - -Copyright (c) 2003-2008, Jouni Malinen and contributors -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name(s) of the above-listed copyright holder(s) nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-acknowledgements.plist deleted file mode 100644 index 68003080c4..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-acknowledgements.plist +++ /dev/null @@ -1,453 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright 2006-2011, the V8 project authors. All rights reserved. -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above - copyright notice, this list of conditions and the following - disclaimer in the documentation and/or other materials provided - with the distribution. - * Neither the name of Google Inc. nor the names of its - contributors may be used to endorse or promote products derived - from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - MIT - Title - DoubleConversion - Type - PSGroupSpecifier - - - FooterText - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - License - Apache License, Version 2.0 - Title - Folly - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -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 - MIT License - -Copyright (c) Facebook, Inc. and its affiliates. - -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-Core - Type - PSGroupSpecifier - - - FooterText - MIT License - -Copyright (c) 2016 Wix.com - -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 - ReactNativeNavigation - Type - PSGroupSpecifier - - - FooterText - Boost Software License - Version 1.0 - August 17th, 2003 - -Permission is hereby granted, free of charge, to any person or organization -obtaining a copy of the software and accompanying documentation covered by -this license (the "Software") to use, reproduce, display, distribute, -execute, and transmit the Software, and to prepare derivative works of the -Software, and to permit third-parties to whom the Software is furnished to -do so, all subject to the following: - -The copyright notices in the Software and this entire statement, including -the above license grant, this restriction and the following disclaimer, -must be included in all copies of the Software, in whole or in part, and -all derivative works of the Software, unless such copies or derivative -works are solely in the form of machine-executable object code generated by -a source language processor. - -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, TITLE AND NON-INFRINGEMENT. IN NO EVENT -SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE -FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, -ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - - License - Boost Software License - Title - boost-for-react-native - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2008, Google Inc. -All rights reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - - * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. - * Neither the name of Google Inc. nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - -A function gettimeofday in utilities.cc is based on - -http://www.google.com/codesearch/p?hl=en#dR3YEbitojA/COPYING&q=GetSystemTimeAsFileTime%20license:bsd - -The license of this code is: - -Copyright (c) 2003-2008, Jouni Malinen <j@w1.fi> and contributors -All Rights Reserved. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - -2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -3. Neither the name(s) of the above-listed copyright holder(s) nor the - names of its contributors may be used to endorse or promote products - derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - - License - Google - Title - glog - 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-CalendarsExample/Pods-CalendarsExample-dummy.m b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-dummy.m deleted file mode 100644 index f31648374e..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_CalendarsExample : NSObject -@end -@implementation PodsDummy_Pods_CalendarsExample -@end diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-umbrella.h b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-umbrella.h deleted file mode 100644 index 0909effa84..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_CalendarsExampleVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_CalendarsExampleVersionString[]; - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.debug.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.debug.xcconfig deleted file mode 100644 index 75d2d954be..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.debug.xcconfig +++ /dev/null @@ -1,9 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "$(PODS_ROOT)/Headers/Private/React-Core" -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeNavigation" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" -OTHER_LDFLAGS = $(inherited) -ObjC -l"DoubleConversion" -l"FBReactNativeSpec" -l"Folly" -l"RCTTypeSafety" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeNavigation" -l"Yoga" -l"glog" -l"stdc++" -framework "JavaScriptCore" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.modulemap b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.modulemap deleted file mode 100644 index 53881998df..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_CalendarsExample { - umbrella header "Pods-CalendarsExample-umbrella.h" - - export * - module * { export * } -} diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.release.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.release.xcconfig deleted file mode 100644 index 75d2d954be..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExample/Pods-CalendarsExample.release.xcconfig +++ /dev/null @@ -1,9 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "$(PODS_ROOT)/Headers/Private/React-Core" -LIBRARY_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/DoubleConversion" "${PODS_CONFIGURATION_BUILD_DIR}/FBReactNativeSpec" "${PODS_CONFIGURATION_BUILD_DIR}/Folly" "${PODS_CONFIGURATION_BUILD_DIR}/RCTTypeSafety" "${PODS_CONFIGURATION_BUILD_DIR}/React-Core" "${PODS_CONFIGURATION_BUILD_DIR}/React-CoreModules" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTActionSheet" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTAnimation" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTBlob" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTImage" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTLinking" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTNetwork" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTSettings" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTText" "${PODS_CONFIGURATION_BUILD_DIR}/React-RCTVibration" "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsi" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsiexecutor" "${PODS_CONFIGURATION_BUILD_DIR}/React-jsinspector" "${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon" "${PODS_CONFIGURATION_BUILD_DIR}/ReactNativeNavigation" "${PODS_CONFIGURATION_BUILD_DIR}/Yoga" "${PODS_CONFIGURATION_BUILD_DIR}/glog" -OTHER_LDFLAGS = $(inherited) -ObjC -l"DoubleConversion" -l"FBReactNativeSpec" -l"Folly" -l"RCTTypeSafety" -l"React-Core" -l"React-CoreModules" -l"React-RCTActionSheet" -l"React-RCTAnimation" -l"React-RCTBlob" -l"React-RCTImage" -l"React-RCTLinking" -l"React-RCTNetwork" -l"React-RCTSettings" -l"React-RCTText" -l"React-RCTVibration" -l"React-cxxreact" -l"React-jsi" -l"React-jsiexecutor" -l"React-jsinspector" -l"ReactCommon" -l"ReactNativeNavigation" -l"Yoga" -l"glog" -l"stdc++" -framework "JavaScriptCore" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-Info.plist b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-Info.plist deleted file mode 100644 index 2243fe6e27..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-acknowledgements.markdown b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-acknowledgements.markdown deleted file mode 100644 index 102af75385..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-acknowledgements.plist b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-acknowledgements.plist deleted file mode 100644 index 7acbad1eab..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - 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-CalendarsExampleTests/Pods-CalendarsExampleTests-dummy.m b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-dummy.m deleted file mode 100644 index 7936110b67..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_CalendarsExampleTests : NSObject -@end -@implementation PodsDummy_Pods_CalendarsExampleTests -@end diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-umbrella.h b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-umbrella.h deleted file mode 100644 index 639590e1bb..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_CalendarsExampleTestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_CalendarsExampleTestsVersionString[]; - diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.debug.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.debug.xcconfig deleted file mode 100644 index ad582dba5a..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.debug.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "$(PODS_ROOT)/Headers/Private/React-Core" -OTHER_LDFLAGS = $(inherited) -l"stdc++" -framework "JavaScriptCore" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.modulemap b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.modulemap deleted file mode 100644 index 58eef25e2b..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_CalendarsExampleTests { - umbrella header "Pods-CalendarsExampleTests-umbrella.h" - - export * - module * { export * } -} diff --git a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.release.xcconfig b/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.release.xcconfig deleted file mode 100644 index ad582dba5a..0000000000 --- a/ios/Pods/Target Support Files/Pods-CalendarsExampleTests/Pods-CalendarsExampleTests.release.xcconfig +++ /dev/null @@ -1,8 +0,0 @@ -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/DoubleConversion" "${PODS_ROOT}/Headers/Public/FBLazyVector" "${PODS_ROOT}/Headers/Public/FBReactNativeSpec" "${PODS_ROOT}/Headers/Public/RCTRequired" "${PODS_ROOT}/Headers/Public/RCTTypeSafety" "${PODS_ROOT}/Headers/Public/React-Core" "${PODS_ROOT}/Headers/Public/React-RCTBlob" "${PODS_ROOT}/Headers/Public/React-RCTText" "${PODS_ROOT}/Headers/Public/React-cxxreact" "${PODS_ROOT}/Headers/Public/React-jsi" "${PODS_ROOT}/Headers/Public/React-jsiexecutor" "${PODS_ROOT}/Headers/Public/React-jsinspector" "${PODS_ROOT}/Headers/Public/ReactCommon" "${PODS_ROOT}/Headers/Public/ReactNativeNavigation" "${PODS_ROOT}/Headers/Public/Yoga" "${PODS_ROOT}/Headers/Public/glog" "$(PODS_ROOT)/Headers/Private/React-Core" -OTHER_LDFLAGS = $(inherited) -l"stdc++" -framework "JavaScriptCore" -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 -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/package.json b/package.json index c39b712116..0a00407792 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "author": "Wix.com", "license": "MIT", "dependencies": { + "hoist-non-react-statics": "^3.3.1", "lodash": "^4.0.0", "prop-types": "^15.5.10", "xdate": "^0.8.0" diff --git a/src/agenda/index.js b/src/agenda/index.js index b5e9d6311d..b8bad2bce7 100644 --- a/src/agenda/index.js +++ b/src/agenda/index.js @@ -118,7 +118,7 @@ export default class AgendaView extends Component { } calendarOffset() { - return 90 - (this.viewHeight / 2); + return 96 - (this.viewHeight / 2); } initialScrollPadPosition() { @@ -185,6 +185,9 @@ export default class AgendaView extends Component { } onVisibleMonthsChange(months) { + if (this.props.onVisibleMonthsChange) { + this.props.onVisibleMonthsChange(months); + } if (this.props.items && !this.state.firstResevationLoad) { clearTimeout(this.scrollTimeout); this.scrollTimeout = setTimeout(() => { @@ -207,7 +210,7 @@ export default class AgendaView extends Component { } } - componentWillMount() { + UNSAFE_componentWillMount() { this._isMounted = true; this.loadReservations(this.props); } @@ -216,7 +219,7 @@ export default class AgendaView extends Component { this._isMounted = false; } - componentWillReceiveProps(props) { + UNSAFE_componentWillReceiveProps(props) { if (props.items) { this.setState({ firstResevationLoad: false @@ -332,7 +335,7 @@ export default class AgendaView extends Component { } render() { - const agendaHeight = Math.max(0, this.viewHeight - HEADER_HEIGHT); + const agendaHeight = this.initialScrollPadPosition(); const weekDaysNames = dateutils.weekDayNames(this.props.firstDay); const weekdaysStyle = [this.styles.weekdays, { @@ -416,7 +419,7 @@ export default class AgendaView extends Component { markingType={this.props.markingType} removeClippedSubviews={this.props.removeClippedSubviews} onDayPress={this._chooseDayFromCalendar.bind(this)} - scrollingEnabled={this.state.calendarScrollable} + scrollEnabled={this.state.calendarScrollable} hideExtraDays={this.state.calendarScrollable} firstDay={this.props.firstDay} monthFormat={this.props.monthFormat} @@ -442,7 +445,7 @@ export default class AgendaView extends Component { showsHorizontalScrollIndicator={false} showsVerticalScrollIndicator={false} style={scrollPadStyle} - scrollEventThrottle={1} + scrollEventThrottle={8} scrollsToTop={false} onTouchStart={this.onTouchStart} onTouchEnd={this.onTouchEnd} diff --git a/src/agenda/reservation-list/index.js b/src/agenda/reservation-list/index.js index e2826f7505..31a9fc4ec7 100644 --- a/src/agenda/reservation-list/index.js +++ b/src/agenda/reservation-list/index.js @@ -50,7 +50,7 @@ class ReactComp extends Component { this.scrollOver = true; } - componentWillMount() { + UNSAFE_componentWillMount() { this.updateDataSource(this.getReservations(this.props).reservations); } @@ -74,7 +74,7 @@ class ReactComp extends Component { this.updateDataSource(reservations.reservations); } - componentWillReceiveProps(props) { + UNSAFE_componentWillReceiveProps(props) { if (!dateutils.sameDate(props.topDay, this.props.topDay)) { this.setState({ reservations: [] diff --git a/src/calendar-list/index.js b/src/calendar-list/index.js index d43f764797..0da07ec14f 100644 --- a/src/calendar-list/index.js +++ b/src/calendar-list/index.js @@ -47,7 +47,9 @@ class CalendarList extends Component { /** Style for the List item (the calendar) */ calendarStyle: PropTypes.oneOfType([PropTypes.object, PropTypes.number, PropTypes.array]), /** Whether to use static header that will not scroll with the list (horizontal only) */ - staticHeader: PropTypes.bool + staticHeader: PropTypes.bool, + /** A custom key extractor for the generated calendar months */ + keyExtractor: PropTypes.func } static defaultProps = { @@ -59,7 +61,8 @@ class CalendarList extends Component { showScrollIndicator: false, scrollEnabled: true, scrollsToTop: false, - removeClippedSubviews: Platform.OS === 'android' ? false : true + removeClippedSubviews: Platform.OS === 'android' ? false : true, + keyExtractor: (item, index) => String(index) } constructor(props) { @@ -139,7 +142,7 @@ class CalendarList extends Component { this.listView.scrollToOffset({offset: scrollAmount, animated: false}); } - componentWillReceiveProps(props) { + UNSAFE_componentWillReceiveProps(props) { const current = parseDate(this.props.current); const nextCurrent = parseDate(props.current); @@ -292,12 +295,12 @@ class CalendarList extends Component { ref={(c) => this.listView = c} //scrollEventThrottle={1000} style={[this.style.container, this.props.style]} - initialListSize={this.props.pastScrollRange + this.props.futureScrollRange + 1} + initialListSize={this.props.pastScrollRange + this.props.futureScrollRange + 1} // ListView deprecated data={this.state.rows} //snapToAlignment='start' //snapToInterval={this.calendarHeight} removeClippedSubviews={this.props.removeClippedSubviews} - pageSize={1} + pageSize={1} // ListView deprecated horizontal={this.props.horizontal} pagingEnabled={this.props.pagingEnabled} onViewableItemsChanged={this.onViewableItemsChangedBound} @@ -306,10 +309,12 @@ class CalendarList extends Component { showsVerticalScrollIndicator={this.props.showScrollIndicator} showsHorizontalScrollIndicator={this.props.showScrollIndicator} scrollEnabled={this.props.scrollEnabled} - keyExtractor={(item, index) => String(index)} + keyExtractor={this.props.keyExtractor} initialScrollIndex={this.state.openDate ? this.getMonthIndex(this.state.openDate) : false} getItemLayout={this.getItemLayout} scrollsToTop={this.props.scrollsToTop} + onEndReachedThreshold={this.props.onEndReachedThreshold} + onEndReached={this.props.onEndReached} /> {this.renderStaticHeader()} diff --git a/src/calendar/day/custom/index.js b/src/calendar/day/custom/index.js index 90278a8438..e0fdc2c113 100644 --- a/src/calendar/day/custom/index.js +++ b/src/calendar/day/custom/index.js @@ -19,6 +19,7 @@ class Day extends Component { theme: PropTypes.object, marking: PropTypes.any, onPress: PropTypes.func, + onLongPress: PropTypes.func, date: PropTypes.object }; @@ -54,6 +55,7 @@ class Day extends Component { if (marking.selected) { containerStyle.push(this.style.selected); + textStyle.push(this.style.selectedText); } else if (isDisabled) { textStyle.push(this.style.disabledText); } else if (this.props.state === 'today') { diff --git a/src/calendar/day/multi-dot/index.js b/src/calendar/day/multi-dot/index.js index 78614420de..b3deeabba4 100644 --- a/src/calendar/day/multi-dot/index.js +++ b/src/calendar/day/multi-dot/index.js @@ -83,7 +83,9 @@ class Day extends Component { testID={this.props.testID} style={containerStyle} onPress={this.onDayPress} - onLongPress={this.onDayLongPress}> + onLongPress={this.onDayLongPress} + disabled={marking.disableTouchEvent} + > {String(this.props.children)} {dot} diff --git a/src/calendar/day/multi-period/index.js b/src/calendar/day/multi-period/index.js index b75ea22214..9152df5ff3 100644 --- a/src/calendar/day/multi-period/index.js +++ b/src/calendar/day/multi-period/index.js @@ -16,6 +16,7 @@ class Day extends Component { theme: PropTypes.object, marking: PropTypes.any, onPress: PropTypes.func, + onLongPress: PropTypes.func, date: PropTypes.object, }; @@ -23,11 +24,15 @@ class Day extends Component { super(props); this.style = styleConstructor(props.theme); this.onDayPress = this.onDayPress.bind(this); + this.onDayLongPress = this.onDayLongPress.bind(this); } onDayPress() { this.props.onPress(this.props.date); } + onDayLongPress() { + this.props.onLongPress(this.props.date); + } shouldComponentUpdate(nextProps) { return shouldUpdate(this.props, nextProps, ['state', 'children', 'marking', 'onPress', 'onLongPress']); @@ -94,7 +99,13 @@ class Day extends Component { style={{ alignSelf: 'stretch' }}> - + {String(this.props.children)} diff --git a/src/calendar/day/period/index.js b/src/calendar/day/period/index.js index bcef545612..55e4924553 100644 --- a/src/calendar/day/period/index.js +++ b/src/calendar/day/period/index.js @@ -196,7 +196,9 @@ class Day extends Component { + onLongPress={this.onDayLongPress} + disabled={this.props.marking.disableTouchEvent} + > {fillers} diff --git a/src/calendar/header/index.js b/src/calendar/header/index.js index 0d7be61fa7..f1cd0e7db0 100644 --- a/src/calendar/header/index.js +++ b/src/calendar/header/index.js @@ -22,7 +22,9 @@ class CalendarHeader extends Component { hideDayNames: PropTypes.bool, weekNumbers: PropTypes.bool, onPressArrowLeft: PropTypes.func, - onPressArrowRight: PropTypes.func + onPressArrowRight: PropTypes.func, + disableArrowLeft: PropTypes.bool, + disableArrowRight: PropTypes.bool }; static defaultProps = { @@ -65,6 +67,15 @@ class CalendarHeader extends Component { if (nextProps.monthFormat !== this.props.monthFormat) { return true; } + if (nextProps.renderArrow !== this.props.renderArrow) { + return true; + } + if (nextProps.disableArrowLeft !== this.props.disableArrowLeft) { + return true; + } + if (nextProps.disableArrowRight !== this.props.disableArrowRight) { + return true; + } return false; } @@ -94,6 +105,7 @@ class CalendarHeader extends Component { leftArrow = ( } ); rightArrow = ( } ); diff --git a/src/calendar/header/style.js b/src/calendar/header/style.js index 21d2a5ecee..6dd06ed2e2 100644 --- a/src/calendar/header/style.js +++ b/src/calendar/header/style.js @@ -1,4 +1,4 @@ -import {StyleSheet, Platform} from 'react-native'; +import {StyleSheet} from 'react-native'; import * as defaultStyle from '../../style'; const STYLESHEET_ID = 'stylesheet.calendar.header'; @@ -26,14 +26,10 @@ export default function(theme={}) { ...appStyle.arrowStyle }, arrowImage: { - ...Platform.select({ - ios: { - tintColor: appStyle.arrowColor - }, - android: { - tintColor: appStyle.arrowColor - } - }) + tintColor: appStyle.arrowColor + }, + disabledArrowImage: { + tintColor: appStyle.disabledArrowColor }, week: { marginTop: 7, diff --git a/src/calendar/index.js b/src/calendar/index.js index fd3a39c579..52f2b7bac1 100644 --- a/src/calendar/index.js +++ b/src/calendar/index.js @@ -74,8 +74,12 @@ class Calendar extends Component { showWeekNumbers: PropTypes.bool, /** Handler which gets executed when press arrow icon left. It receive a callback can go back month */ onPressArrowLeft: PropTypes.func, - /** Handler which gets executed when press arrow icon left. It receive a callback can go next month */ + /** Handler which gets executed when press arrow icon right. It receive a callback can go next month */ onPressArrowRight: PropTypes.func, + /** Disable left arrow. Default = false */ + disableArrowLeft: PropTypes.bool, + /** Disable right arrow. Default = false */ + disableArrowRight: PropTypes.bool, /** Style passed to the header */ headerStyle: PropTypes.oneOfType([PropTypes.object, PropTypes.number, PropTypes.array]) }; @@ -96,7 +100,7 @@ class Calendar extends Component { this.shouldComponentUpdate = shouldComponentUpdate; } - componentWillReceiveProps(nextProps) { + UNSAFE_componentWillReceiveProps(nextProps) { const current = parseDate(nextProps.current); if (current && current.toString('yyyy MM') !== this.state.currentMonth.toString('yyyy MM')) { this.setState({ @@ -259,6 +263,7 @@ class Calendar extends Component { return ( this.header = c} style={this.props.headerStyle} theme={this.props.theme} hideArrows={this.props.hideArrows} @@ -272,6 +277,8 @@ class Calendar extends Component { weekNumbers={this.props.showWeekNumbers} onPressArrowLeft={this.props.onPressArrowLeft} onPressArrowRight={this.props.onPressArrowRight} + disableArrowLeft={this.props.disableArrowLeft} + disableArrowRight={this.props.disableArrowRight} /> {weeks} ); diff --git a/src/calendar/updater.js b/src/calendar/updater.js index 366881ec9f..2687a7c3d9 100644 --- a/src/calendar/updater.js +++ b/src/calendar/updater.js @@ -12,7 +12,7 @@ export default function shouldComponentUpdate(nextProps, nextState) { return prev; }, {update: false}); - shouldUpdate = ['markedDates', 'hideExtraDays'].reduce((prev, next) => { + shouldUpdate = ['markedDates', 'hideExtraDays', 'displayLoadingIndicator'].reduce((prev, next) => { if (!prev.update && nextProps[next] !== this.props[next]) { return { update: true, diff --git a/src/expandableCalendar/agendaList.js b/src/expandableCalendar/agendaList.js index d72de95097..52fd0ad568 100644 --- a/src/expandableCalendar/agendaList.js +++ b/src/expandableCalendar/agendaList.js @@ -29,7 +29,8 @@ class AgendaList extends Component { } static defaultProps = { - dayFormat: 'dddd, MMM d' + dayFormat: 'dddd, MMM d', + stickySectionHeadersEnabled: true } constructor(props) { @@ -120,17 +121,19 @@ class AgendaList extends Component { } renderSectionHeader = ({section: {title}}) => { - const today = XDate().toString(this.props.dayFormat).toUpperCase(); - const date = XDate(title).toString(this.props.dayFormat).toUpperCase(); + const today = XDate().toString(this.props.dayFormat); + const date = XDate(title).toString(this.props.dayFormat); const todayString = XDate.locales[XDate.defaultLocale].today || commons.todayString; - const sectionTitle = date === today ? `${todayString.toUpperCase()}, ${date}` : date; + const sectionTitle = date === today ? `${todayString}, ${date}` : date; return ( {sectionTitle} ); } - keyExtractor = (item, index) => String(index); + keyExtractor = (item, index) => { + return _.isFunction(this.props.keyExtractor) ? this.props.keyExtractor(item, index) : String(index); + } render() { return ( @@ -139,7 +142,6 @@ class AgendaList extends Component { ref={this.list} keyExtractor={this.keyExtractor} showsVerticalScrollIndicator={false} - stickySectionHeadersEnabled onViewableItemsChanged={this.onViewableItemsChanged} viewabilityConfig={this.viewabilityConfig} renderSectionHeader={this.renderSectionHeader} diff --git a/src/expandableCalendar/commons.js b/src/expandableCalendar/commons.js index 69c5d9aa66..438bab2fdf 100644 --- a/src/expandableCalendar/commons.js +++ b/src/expandableCalendar/commons.js @@ -17,5 +17,6 @@ export const UPDATE_SOURCES = { LIST_DRAG: 'listDrag', DAY_PRESS: 'dayPress', PAGE_SCROLL: 'pageScroll', + WEEK_SCROLL: 'weekScroll', PROP_UPDATE: 'propUpdate' }; diff --git a/src/expandableCalendar/index.js b/src/expandableCalendar/index.js index b431839769..cfbcc18870 100644 --- a/src/expandableCalendar/index.js +++ b/src/expandableCalendar/index.js @@ -16,9 +16,9 @@ import {parseDate} from '../interface'; import styleConstructor from './style'; import CalendarList from '../calendar-list'; import asCalendarConsumer from './asCalendarConsumer'; +import WeekCalendar from './weekCalendar'; import Week from './week'; - const commons = require('./commons'); const UPDATE_SOURCES = commons.UPDATE_SOURCES; const POSITIONS = { @@ -55,7 +55,9 @@ class ExpandableCalendar extends Component { /** source for the right arrow image */ rightArrowImageSource: PropTypes.oneOfType([PropTypes.object, PropTypes.number, PropTypes.func]), /** whether to have shadow/elevation for the calendar */ - allowShadow: PropTypes.bool + allowShadow: PropTypes.bool, + /** whether to disable the week scroll in closed position */ + disableWeekScroll: PropTypes.bool } static defaultProps = { @@ -407,6 +409,8 @@ class ExpandableCalendar extends Component { renderWeekCalendar() { const {position} = this.state; + const {disableWeekScroll} = this.props; + const WeekComponent = disableWeekScroll ? Week : WeekCalendar; return ( - ); @@ -442,7 +448,7 @@ class ExpandableCalendar extends Component { renderArrow = (direction) => { if (_.isFunction(this.props.renderArrow)) { - this.props.renderArrow(direction); + return this.props.renderArrow(direction); } return ( @@ -454,7 +460,7 @@ class ExpandableCalendar extends Component { } render() { - const {style, hideKnob, horizontal, allowShadow, theme} = this.props; + const {style, hideKnob, horizontal, allowShadow, theme, ...others} = this.props; const {deltaY, position} = this.state; const isOpen = position === POSITIONS.OPEN; const themeObject = Object.assign(this.headerStyleOverride, theme); @@ -468,7 +474,8 @@ class ExpandableCalendar extends Component { > this.calendar = r} current={this.initialDate} diff --git a/src/expandableCalendar/style.js b/src/expandableCalendar/style.js index b2c34111fe..0dc6c046ce 100644 --- a/src/expandableCalendar/style.js +++ b/src/expandableCalendar/style.js @@ -52,7 +52,8 @@ export default function styleConstructor(theme = {}) { paddingBottom: 8, paddingLeft: 20, backgroundColor: appStyle.calendarBackground, - textAlign: 'left' + textAlign: 'left', + textTransform: 'uppercase' }, header: { position: 'absolute', @@ -92,6 +93,14 @@ export default function styleConstructor(theme = {}) { flexDirection: 'row', justifyContent: 'space-around' }, + dayHeader: { + width: 32, + textAlign: 'center', + fontSize: appStyle.textDayHeaderFontSize, + fontFamily: appStyle.textDayHeaderFontFamily, + fontWeight: appStyle.textDayHeaderFontWeight, + color: appStyle.textSectionTitleColor + }, arrowImage: { tintColor: appStyle.arrowColor }, diff --git a/src/expandableCalendar/week.js b/src/expandableCalendar/week.js index 9a72cf46f7..82b3b85c66 100644 --- a/src/expandableCalendar/week.js +++ b/src/expandableCalendar/week.js @@ -83,7 +83,6 @@ class Week extends Component { getDateMarking(day) { const {markedDates} = this.props; - if (!markedDates) { return false; } diff --git a/src/expandableCalendar/weekCalendar.js b/src/expandableCalendar/weekCalendar.js new file mode 100644 index 0000000000..ad7950d2b4 --- /dev/null +++ b/src/expandableCalendar/weekCalendar.js @@ -0,0 +1,229 @@ +import _ from 'lodash'; +import React, {Component} from 'react'; +import {FlatList, View, Text} from 'react-native'; +import PropTypes from 'prop-types'; +import XDate from 'xdate'; + +import styleConstructor from './style'; +import CalendarList from '../calendar-list'; +import Week from '../expandableCalendar/week'; +import asCalendarConsumer from './asCalendarConsumer'; +import {weekDayNames} from '../dateutils'; + + +const commons = require('./commons'); +const UPDATE_SOURCES = commons.UPDATE_SOURCES; +const NUMBER_OF_PAGES = 2; // must be a positive number + +/** + * @description: Week calendar component + * @example: https://github.com/wix/react-native-calendars/blob/master/example/src/screens/expandableCalendar.js + */ +class WeekCalendar extends Component { + static displayName = 'WeekCalendar'; + + static propTypes = { + ...CalendarList.propTypes, + // the current date + current: PropTypes.any, + /** whether to have shadow/elevation for the calendar */ + allowShadow: PropTypes.bool, + /** whether to hide the names of the week days */ + hideDayNames: PropTypes.bool + }; + + static defaultProps = { + firstDay: 0, + allowShadow: true + } + + constructor(props) { + super(props); + + this.style = styleConstructor(props.theme); + this.list = React.createRef(); + this.page = NUMBER_OF_PAGES; + + this.state = { + items: this.getDatesArray(), + }; + } + + componentDidUpdate(prevProps) { + const {updateSource, date} = this.props.context; + + if (date !== prevProps.context.date && updateSource !== UPDATE_SOURCES.WEEK_SCROLL) { + this.setState({items: this.getDatesArray()}); + this.list.current.scrollToIndex({animated: false, index: NUMBER_OF_PAGES}); + } + } + + get containerWidth() { + return this.props.calendarWidth || commons.screenWidth; + } + + getDatesArray() { + const array = []; + for (let index = -NUMBER_OF_PAGES; index <= NUMBER_OF_PAGES; index++) { + const d = this.getDate(index); + array.push(d); + } + return array; + } + + getDate(weekIndex) { + const {current, context, firstDay} = this.props; + const d = XDate(current || context.date); + // get the first day of the week as date (for the on scroll mark) + let dayOfTheWeek = d.getDay(); + if (dayOfTheWeek < firstDay && firstDay > 0) { + dayOfTheWeek = 7 + dayOfTheWeek; + } + + // leave the current date in the visible week as is + const dd = weekIndex === 0 ? d : d.addDays(firstDay - dayOfTheWeek); + const newDate = dd.addWeeks(weekIndex); + const dateString = newDate.toString('yyyy-MM-dd'); + + return dateString; + } + + getMarkedDates() { + const {context, markedDates} = this.props; + + if (markedDates) { + const marked = _.cloneDeep(markedDates); + + if (marked[context.date]) { + marked[context.date].selected = true; + } else { + marked[context.date] = {selected: true}; + } + return marked; + } + return {[context.date]: {selected: true}}; + } + + onDayPress = (value) => { + _.invoke(this.props.context, 'setDate', value.dateString, UPDATE_SOURCES.DAY_PRESS); + } + + onScroll = ({nativeEvent: {contentOffset: {x}}}) => { + const newPage = Math.round(x / this.containerWidth); + + if (this.page !== newPage) { + const {items} = this.state; + this.page = newPage; + + _.invoke(this.props.context, 'setDate', items[this.page], UPDATE_SOURCES.WEEK_SCROLL); + + if (this.page === items.length - 1) { + for (let i = 0; i <= NUMBER_OF_PAGES; i++) { + items[i] = items[i + NUMBER_OF_PAGES]; + } + this.setState({items: [...items]}); + } else if (this.page === 0) { + for (let i = items.length - 1; i >= NUMBER_OF_PAGES; i--) { + items[i] = items[i - NUMBER_OF_PAGES]; + } + this.setState({items: [...items]}); + } + } + } + + onMomentumScrollEnd = () => { + const {items} = this.state; + const isFirstPage = this.page === 0; + const isLastPage = this.page === items.length - 1; + + if (isFirstPage || isLastPage) { + this.list.current.scrollToIndex({animated: false, index: NUMBER_OF_PAGES}); + this.page = NUMBER_OF_PAGES; + const newWeekArray = this.getDatesArray(); + + if (isLastPage) { + for (let i = NUMBER_OF_PAGES + 1; i < items.length; i++) { + items[i] = newWeekArray[i]; + } + } else { + for (let i = 0; i < NUMBER_OF_PAGES; i++) { + items[i] = newWeekArray[i]; + } + } + + setTimeout(() => { + this.setState({items: [...items]}); + }, 100); + } + } + + renderItem = ({item}) => { + const {calendarWidth, style, onDayPress, ...others} = this.props; + + return ( + + ); + } + + getItemLayout = (data, index) => { + return { + length: this.containerWidth, + offset: this.containerWidth * index, + index + }; + } + + keyExtractor = (item, index) => index.toString(); + + render() { + const {allowShadow, firstDay, hideDayNames} = this.props; + const {items} = this.state; + let weekDaysNames = weekDayNames(firstDay); + + return ( + + {!hideDayNames && + + {/* {this.props.weekNumbers && } */} + {weekDaysNames.map((day, idx) => ( + + {day} + + ))} + } + + + ); + } +} + +export default asCalendarConsumer(WeekCalendar); diff --git a/src/index.js b/src/index.js index 3d3268289b..2906672e8e 100644 --- a/src/index.js +++ b/src/index.js @@ -5,4 +5,5 @@ export { default as ExpandableCalendar } from './expandableCalendar'; export { default as AgendaList } from './expandableCalendar/agendaList'; export { default as CalendarProvider } from './expandableCalendar/calendarProvider'; export { default as asCalendarConsumer } from './expandableCalendar/asCalendarConsumer'; +export { default as WeekCalendar } from './expandableCalendar/weekCalendar'; export { default as LocaleConfig } from 'xdate'; diff --git a/src/style.js b/src/style.js index 181f2d21c3..d019230ee4 100644 --- a/src/style.js +++ b/src/style.js @@ -45,6 +45,7 @@ export const selectedDotColor = foregroundColor; export const disabledDotColor = undefined; export const todayDotColor = undefined; export const arrowColor = textLinkColor; +export const disabledArrowColor = '#d9e1e8'; export const monthTextColor = textDefaultColor; export const indicatorColor = undefined; // use the default color of React Native ActivityIndicator export const agendaDayTextColor = '#7a92a5';