diff --git a/ios/Podfile b/ios/Podfile index fc4f45f..30c1211 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,94 +1,22 @@ -platform :ios, '9.0' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' +require_relative '../node_modules/react-native/scripts/react_native_pods' -def add_flipper_pods!(versions = {}) - versions['Flipper'] ||= '~> 0.33.1' - versions['DoubleConversion'] ||= '1.1.7' - versions['Flipper-Folly'] ||= '~> 2.1' - versions['Flipper-Glog'] ||= '0.3.6' - versions['Flipper-PeerTalk'] ||= '~> 0.0.4' - versions['Flipper-RSocket'] ||= '~> 1.0' - - pod 'FlipperKit', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FlipperKitLayoutPlugin', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/SKIOSNetworkPlugin', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FlipperKitUserDefaultsPlugin', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FlipperKitReactPlugin', versions['Flipper'], :configuration => 'Debug' - - # List all transitive dependencies for FlipperKit pods - # to avoid them being linked in Release builds - pod 'Flipper', versions['Flipper'], :configuration => 'Debug' - pod 'Flipper-DoubleConversion', versions['DoubleConversion'], :configuration => 'Debug' - pod 'Flipper-Folly', versions['Flipper-Folly'], :configuration => 'Debug' - pod 'Flipper-Glog', versions['Flipper-Glog'], :configuration => 'Debug' - pod 'Flipper-PeerTalk', versions['Flipper-PeerTalk'], :configuration => 'Debug' - pod 'Flipper-RSocket', versions['Flipper-RSocket'], :configuration => 'Debug' - pod 'FlipperKit/Core', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/CppBridge', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FBCxxFollyDynamicConvert', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FBDefines', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FKPortForwarding', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FlipperKitHighlightOverlay', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FlipperKitLayoutTextSearchable', versions['Flipper'], :configuration => 'Debug' - pod 'FlipperKit/FlipperKitNetworkPlugin', versions['Flipper'], :configuration => 'Debug' -end - -# Post Install processing for Flipper -def flipper_post_install(installer) - installer.pods_project.targets.each do |target| - if target.name == 'YogaKit' - target.build_configurations.each do |config| - config.build_settings['SWIFT_VERSION'] = '4.1' - end - end - end -end +platform :ios, '10.0' target 'testingrnapps' do - # Pods for testingrnapps - pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector" - pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec" - pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired" - pod 'RCTTypeSafety', :path => "../node_modules/react-native/Libraries/TypeSafety" - pod 'React', :path => '../node_modules/react-native/' - pod 'React-Core', :path => '../node_modules/react-native/' - pod 'React-CoreModules', :path => '../node_modules/react-native/React/CoreModules' - pod 'React-Core/DevSupport', :path => '../node_modules/react-native/' - pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS' - pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation' - pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob' - pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image' - pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS' - pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network' - pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings' - pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text' - pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration' - pod 'React-Core/RCTWebSocket', :path => '../node_modules/react-native/' - - pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact' - pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi' - pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor' - pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector' - pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon" - pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon" - pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga', :modular_headers => true - - pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' - pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec' - pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' + config = use_native_modules! + use_react_native!(:path => config["reactNativePath"]) target 'testingrnappsTests' do inherit! :complete # Pods for testing end - use_native_modules! - # Enables Flipper. # # Note that if you have use_frameworks! enabled, Flipper will not work and # you should disable these next few lines. - add_flipper_pods! + use_flipper! post_install do |installer| flipper_post_install(installer) end diff --git a/ios/Podfile.lock b/ios/Podfile.lock new file mode 100644 index 0000000..3d2caff --- /dev/null +++ b/ios/Podfile.lock @@ -0,0 +1,508 @@ +PODS: + - boost-for-react-native (1.63.0) + - CocoaAsyncSocket (7.6.4) + - CocoaLibEvent (1.0.0) + - DoubleConversion (1.1.6) + - FBLazyVector (0.63.1) + - FBReactNativeSpec (0.63.1): + - Folly (= 2020.01.13.00) + - RCTRequired (= 0.63.1) + - RCTTypeSafety (= 0.63.1) + - React-Core (= 0.63.1) + - React-jsi (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - Flipper (0.41.5): + - Flipper-Folly (~> 2.2) + - Flipper-RSocket (~> 1.1) + - Flipper-DoubleConversion (1.1.7) + - Flipper-Folly (2.2.0): + - boost-for-react-native + - CocoaLibEvent (~> 1.0) + - Flipper-DoubleConversion + - Flipper-Glog + - OpenSSL-Universal (= 1.0.2.19) + - Flipper-Glog (0.3.6) + - Flipper-PeerTalk (0.0.4) + - Flipper-RSocket (1.1.0): + - Flipper-Folly (~> 2.2) + - FlipperKit (0.41.5): + - FlipperKit/Core (= 0.41.5) + - FlipperKit/Core (0.41.5): + - Flipper (~> 0.41.5) + - FlipperKit/CppBridge + - FlipperKit/FBCxxFollyDynamicConvert + - FlipperKit/FBDefines + - FlipperKit/FKPortForwarding + - FlipperKit/CppBridge (0.41.5): + - Flipper (~> 0.41.5) + - FlipperKit/FBCxxFollyDynamicConvert (0.41.5): + - Flipper-Folly (~> 2.2) + - FlipperKit/FBDefines (0.41.5) + - FlipperKit/FKPortForwarding (0.41.5): + - CocoaAsyncSocket (~> 7.6) + - Flipper-PeerTalk (~> 0.0.4) + - FlipperKit/FlipperKitHighlightOverlay (0.41.5) + - FlipperKit/FlipperKitLayoutPlugin (0.41.5): + - FlipperKit/Core + - FlipperKit/FlipperKitHighlightOverlay + - FlipperKit/FlipperKitLayoutTextSearchable + - YogaKit (~> 1.18) + - FlipperKit/FlipperKitLayoutTextSearchable (0.41.5) + - FlipperKit/FlipperKitNetworkPlugin (0.41.5): + - FlipperKit/Core + - FlipperKit/FlipperKitReactPlugin (0.41.5): + - FlipperKit/Core + - FlipperKit/FlipperKitUserDefaultsPlugin (0.41.5): + - FlipperKit/Core + - FlipperKit/SKIOSNetworkPlugin (0.41.5): + - FlipperKit/Core + - FlipperKit/FlipperKitNetworkPlugin + - Folly (2020.01.13.00): + - boost-for-react-native + - DoubleConversion + - Folly/Default (= 2020.01.13.00) + - glog + - Folly/Default (2020.01.13.00): + - boost-for-react-native + - DoubleConversion + - glog + - glog (0.3.5) + - OpenSSL-Universal (1.0.2.19): + - OpenSSL-Universal/Static (= 1.0.2.19) + - OpenSSL-Universal/Static (1.0.2.19) + - RCTRequired (0.63.1) + - RCTTypeSafety (0.63.1): + - FBLazyVector (= 0.63.1) + - Folly (= 2020.01.13.00) + - RCTRequired (= 0.63.1) + - React-Core (= 0.63.1) + - React (0.63.1): + - React-Core (= 0.63.1) + - React-Core/DevSupport (= 0.63.1) + - React-Core/RCTWebSocket (= 0.63.1) + - React-RCTActionSheet (= 0.63.1) + - React-RCTAnimation (= 0.63.1) + - React-RCTBlob (= 0.63.1) + - React-RCTImage (= 0.63.1) + - React-RCTLinking (= 0.63.1) + - React-RCTNetwork (= 0.63.1) + - React-RCTSettings (= 0.63.1) + - React-RCTText (= 0.63.1) + - React-RCTVibration (= 0.63.1) + - React-callinvoker (0.63.1) + - React-Core (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default (= 0.63.1) + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/CoreModulesHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/Default (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/DevSupport (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default (= 0.63.1) + - React-Core/RCTWebSocket (= 0.63.1) + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - React-jsinspector (= 0.63.1) + - Yoga + - React-Core/RCTActionSheetHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTAnimationHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTBlobHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTImageHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTLinkingHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTNetworkHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTSettingsHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTTextHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTVibrationHeaders (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-Core/RCTWebSocket (0.63.1): + - Folly (= 2020.01.13.00) + - glog + - React-Core/Default (= 0.63.1) + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsiexecutor (= 0.63.1) + - Yoga + - React-CoreModules (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - Folly (= 2020.01.13.00) + - RCTTypeSafety (= 0.63.1) + - React-Core/CoreModulesHeaders (= 0.63.1) + - React-jsi (= 0.63.1) + - React-RCTImage (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - React-cxxreact (0.63.1): + - boost-for-react-native (= 1.63.0) + - DoubleConversion + - Folly (= 2020.01.13.00) + - glog + - React-callinvoker (= 0.63.1) + - React-jsinspector (= 0.63.1) + - React-jsi (0.63.1): + - boost-for-react-native (= 1.63.0) + - DoubleConversion + - Folly (= 2020.01.13.00) + - glog + - React-jsi/Default (= 0.63.1) + - React-jsi/Default (0.63.1): + - boost-for-react-native (= 1.63.0) + - DoubleConversion + - Folly (= 2020.01.13.00) + - glog + - React-jsiexecutor (0.63.1): + - DoubleConversion + - Folly (= 2020.01.13.00) + - glog + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - React-jsinspector (0.63.1) + - react-native-safe-area-context (3.0.3): + - React + - react-native-video (4.4.5): + - React + - react-native-video/Video (= 4.4.5) + - react-native-video/Video (4.4.5): + - React + - React-RCTActionSheet (0.63.1): + - React-Core/RCTActionSheetHeaders (= 0.63.1) + - React-RCTAnimation (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - Folly (= 2020.01.13.00) + - RCTTypeSafety (= 0.63.1) + - React-Core/RCTAnimationHeaders (= 0.63.1) + - React-jsi (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - React-RCTBlob (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - Folly (= 2020.01.13.00) + - React-Core/RCTBlobHeaders (= 0.63.1) + - React-Core/RCTWebSocket (= 0.63.1) + - React-jsi (= 0.63.1) + - React-RCTNetwork (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - React-RCTImage (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - Folly (= 2020.01.13.00) + - RCTTypeSafety (= 0.63.1) + - React-Core/RCTImageHeaders (= 0.63.1) + - React-jsi (= 0.63.1) + - React-RCTNetwork (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - React-RCTLinking (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - React-Core/RCTLinkingHeaders (= 0.63.1) + - React-jsi (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - React-RCTNetwork (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - Folly (= 2020.01.13.00) + - RCTTypeSafety (= 0.63.1) + - React-Core/RCTNetworkHeaders (= 0.63.1) + - React-jsi (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - React-RCTSettings (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - Folly (= 2020.01.13.00) + - RCTTypeSafety (= 0.63.1) + - React-Core/RCTSettingsHeaders (= 0.63.1) + - React-jsi (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - React-RCTText (0.63.1): + - React-Core/RCTTextHeaders (= 0.63.1) + - React-RCTVibration (0.63.1): + - FBReactNativeSpec (= 0.63.1) + - Folly (= 2020.01.13.00) + - React-Core/RCTVibrationHeaders (= 0.63.1) + - React-jsi (= 0.63.1) + - ReactCommon/turbomodule/core (= 0.63.1) + - ReactCommon/turbomodule/core (0.63.1): + - DoubleConversion + - Folly (= 2020.01.13.00) + - glog + - React-callinvoker (= 0.63.1) + - React-Core (= 0.63.1) + - React-cxxreact (= 0.63.1) + - React-jsi (= 0.63.1) + - RNCAsyncStorage (1.11.0): + - React + - RNCMaskedView (0.1.10): + - React + - RNGestureHandler (1.6.1): + - React + - RNReanimated (1.9.0): + - React + - RNScreens (2.8.0): + - React + - Yoga (1.14.0) + - YogaKit (1.18.1): + - Yoga (~> 1.14) + +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`) + - Flipper (~> 0.41.1) + - Flipper-DoubleConversion (= 1.1.7) + - Flipper-Folly (~> 2.2) + - Flipper-Glog (= 0.3.6) + - Flipper-PeerTalk (~> 0.0.4) + - Flipper-RSocket (~> 1.1) + - FlipperKit (~> 0.41.1) + - FlipperKit/Core (~> 0.41.1) + - FlipperKit/CppBridge (~> 0.41.1) + - FlipperKit/FBCxxFollyDynamicConvert (~> 0.41.1) + - FlipperKit/FBDefines (~> 0.41.1) + - FlipperKit/FKPortForwarding (~> 0.41.1) + - FlipperKit/FlipperKitHighlightOverlay (~> 0.41.1) + - FlipperKit/FlipperKitLayoutPlugin (~> 0.41.1) + - FlipperKit/FlipperKitLayoutTextSearchable (~> 0.41.1) + - FlipperKit/FlipperKitNetworkPlugin (~> 0.41.1) + - FlipperKit/FlipperKitReactPlugin (~> 0.41.1) + - FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.41.1) + - FlipperKit/SKIOSNetworkPlugin (~> 0.41.1) + - 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-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) + - 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-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - react-native-video (from `../node_modules/react-native-video`) + - 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/turbomodule/core (from `../node_modules/react-native/ReactCommon`) + - "RNCAsyncStorage (from `../node_modules/@react-native-community/async-storage`)" + - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" + - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) + - RNReanimated (from `../node_modules/react-native-reanimated`) + - RNScreens (from `../node_modules/react-native-screens`) + - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) + +SPEC REPOS: + trunk: + - boost-for-react-native + - CocoaAsyncSocket + - CocoaLibEvent + - Flipper + - Flipper-DoubleConversion + - Flipper-Folly + - Flipper-Glog + - Flipper-PeerTalk + - Flipper-RSocket + - FlipperKit + - OpenSSL-Universal + - YogaKit + +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-callinvoker: + :path: "../node_modules/react-native/ReactCommon/callinvoker" + 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-native-safe-area-context: + :path: "../node_modules/react-native-safe-area-context" + react-native-video: + :path: "../node_modules/react-native-video" + 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" + RNCAsyncStorage: + :path: "../node_modules/@react-native-community/async-storage" + RNCMaskedView: + :path: "../node_modules/@react-native-community/masked-view" + RNGestureHandler: + :path: "../node_modules/react-native-gesture-handler" + RNReanimated: + :path: "../node_modules/react-native-reanimated" + RNScreens: + :path: "../node_modules/react-native-screens" + Yoga: + :path: "../node_modules/react-native/ReactCommon/yoga" + +SPEC CHECKSUMS: + boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c + CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845 + CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f + DoubleConversion: cde416483dac037923206447da6e1454df403714 + FBLazyVector: a50434c875bd42f2b1c99c712bda892a1dc659c7 + FBReactNativeSpec: 393853a536428e05a9da00b6290042f09809b15b + Flipper: 33585e2d9810fe5528346be33bcf71b37bb7ae13 + Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 + Flipper-Folly: c12092ea368353b58e992843a990a3225d4533c3 + Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6 + Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 + Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7 + FlipperKit: bc68102cd4952a258a23c9c1b316c7bec1fecf83 + Folly: b73c3869541e86821df3c387eb0af5f65addfab4 + glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3 + OpenSSL-Universal: 8b48cc0d10c1b2923617dfe5c178aa9ed2689355 + RCTRequired: d9b1a9e6fa097744ca3ede59f86a35096df7202b + RCTTypeSafety: c227cd061983e9e964115afbc4e8730d6a6f1395 + React: 86e972a20967ee4137aa19dc48319405927c2e94 + React-callinvoker: 87ee376c25277d74e164ff036b27084e343f3e69 + React-Core: f5ec03baf7ed58d9f3ee04a8f84e4c97ee8bf4c9 + React-CoreModules: 958898aa8c069280e866e35a2f29480a81fcf335 + React-cxxreact: 90de76b9b51575668ad7fd4e33a5a8c143beecc2 + React-jsi: b32a31da32e030f30bbf9a8d3a9c8325df9e793f + React-jsiexecutor: 7ab9cdcdd18d57652fb041f8a147fe9658d4e00a + React-jsinspector: 2e28bb487e42dda6c94dbfa0c648d1343767a0fb + react-native-safe-area-context: 45e98227f3d65b31d384a5d0950aec4bf73a884c + react-native-video: eee541262ada11bc7ffe8ec5508e6a877937c462 + React-RCTActionSheet: 1702a1a85e550b5c36e2e03cb2bd3adea053de95 + React-RCTAnimation: ddda576010a878865a4eab83a78acd92176ef6a1 + React-RCTBlob: 34334384284c81577409d5205bd2b9ff594d8ab6 + React-RCTImage: e2a661266dca295cffb33909cc64675a2efedb26 + React-RCTLinking: cd39b9b5e9cbb9e827854e30dfa92d7db074cea8 + React-RCTNetwork: 16939b7e4058d6f662b304a1f61689e249a2bfcc + React-RCTSettings: 24726a62de0c326f9ebfc3838898a501b87ce711 + React-RCTText: 4f95d322b7e6da72817284abf8a2cdcec18b9cd8 + React-RCTVibration: f3a9123c244f35c40d3c9f3ec3f0b9e5717bb292 + ReactCommon: 2905859f84a94a381bb0d8dd3921ccb1a0047cb8 + RNCAsyncStorage: d059c3ee71738c39834a627476322a5a8cd5bf36 + RNCMaskedView: 5a8ec07677aa885546a0d98da336457e2bea557f + RNGestureHandler: 8f09cd560f8d533eb36da5a6c5a843af9f056b38 + RNReanimated: b5ccb50650ba06f6e749c7c329a1bc3ae0c88b43 + RNScreens: 62211832af51e0aebcf6e8c36bcf7dd65592f244 + Yoga: d5bd05a2b6b94c52323745c2c2b64557c8c66f64 + YogaKit: f782866e155069a2cca2517aafea43200b01fd5a + +PODFILE CHECKSUM: 991de010542fff0a07395769a021d45eed185bf8 + +COCOAPODS: 1.8.3 diff --git a/ios/testingrnapps.xcodeproj/project.pbxproj b/ios/testingrnapps.xcodeproj/project.pbxproj index 5e04fa7..3df4617 100644 --- a/ios/testingrnapps.xcodeproj/project.pbxproj +++ b/ios/testingrnapps.xcodeproj/project.pbxproj @@ -8,14 +8,18 @@ /* Begin PBXBuildFile section */ 00E356F31AD99517003FC87E /* testingrnappsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* testingrnappsTests.m */; }; + 0B0078BFEEAB987184A028C4 /* libPods-testingrnapps-testingrnappsTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 091A71B191ACF12D0297D15D /* libPods-testingrnapps-testingrnappsTests.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 */; }; + 23A3804CB6F0FDA150ABED48 /* libPods-testingrnapps.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 69D06399064CDF7C0787CF1C /* libPods-testingrnapps.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 */; }; 2DCD954D1E0B4F2C00145EB5 /* testingrnappsTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* testingrnappsTests.m */; }; + 8C052DE025AFEF5273B17DE1 /* libPods-testingrnapps-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D6EFE90B437D81D2619C9510 /* libPods-testingrnapps-tvOSTests.a */; }; + 96013DF53F63707F0DAE301B /* libPods-testingrnapps-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 444F67A41F8AF0B4AE4FD546 /* libPods-testingrnapps-tvOS.a */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -40,6 +44,8 @@ 00E356EE1AD99517003FC87E /* testingrnappsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = testingrnappsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 00E356F21AD99517003FC87E /* testingrnappsTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = testingrnappsTests.m; sourceTree = ""; }; + 091A71B191ACF12D0297D15D /* libPods-testingrnapps-testingrnappsTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testingrnapps-testingrnappsTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1161A6E710BB3EF213251013 /* Pods-testingrnapps-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-testingrnapps-tvOSTests/Pods-testingrnapps-tvOSTests.release.xcconfig"; sourceTree = ""; }; 13B07F961A680F5B00A75B9A /* testingrnapps.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = testingrnapps.app; sourceTree = BUILT_PRODUCTS_DIR; }; 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = testingrnapps/AppDelegate.h; sourceTree = ""; }; 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = testingrnapps/AppDelegate.m; sourceTree = ""; }; @@ -47,8 +53,18 @@ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = testingrnapps/Images.xcassets; sourceTree = ""; }; 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = testingrnapps/Info.plist; sourceTree = ""; }; 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = testingrnapps/main.m; sourceTree = ""; }; + 1A19940460D2384137E82525 /* Pods-testingrnapps.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps.release.xcconfig"; path = "Target Support Files/Pods-testingrnapps/Pods-testingrnapps.release.xcconfig"; sourceTree = ""; }; + 2758251B4658BEC780892B2F /* Pods-testingrnapps-testingrnappsTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps-testingrnappsTests.release.xcconfig"; path = "Target Support Files/Pods-testingrnapps-testingrnappsTests/Pods-testingrnapps-testingrnappsTests.release.xcconfig"; sourceTree = ""; }; 2D02E47B1E0B4A5D006451C7 /* testingrnapps-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "testingrnapps-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 2D02E4901E0B4A5D006451C7 /* testingrnapps-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "testingrnapps-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3A0EEB345B2580B5F3BD693C /* Pods-testingrnapps-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps-tvOS.release.xcconfig"; path = "Target Support Files/Pods-testingrnapps-tvOS/Pods-testingrnapps-tvOS.release.xcconfig"; sourceTree = ""; }; + 414829C8F038B024F4B19F86 /* Pods-testingrnapps.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps.debug.xcconfig"; path = "Target Support Files/Pods-testingrnapps/Pods-testingrnapps.debug.xcconfig"; sourceTree = ""; }; + 444F67A41F8AF0B4AE4FD546 /* libPods-testingrnapps-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testingrnapps-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4905D6573C9B5F8FD5EA5596 /* Pods-testingrnapps-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-testingrnapps-tvOS/Pods-testingrnapps-tvOS.debug.xcconfig"; sourceTree = ""; }; + 69D06399064CDF7C0787CF1C /* libPods-testingrnapps.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testingrnapps.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6E699AE357232EBEE269D1FD /* Pods-testingrnapps-testingrnappsTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps-testingrnappsTests.debug.xcconfig"; path = "Target Support Files/Pods-testingrnapps-testingrnappsTests/Pods-testingrnapps-testingrnappsTests.debug.xcconfig"; sourceTree = ""; }; + 93555FC577EDF08D08F5518B /* Pods-testingrnapps-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-testingrnapps-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-testingrnapps-tvOSTests/Pods-testingrnapps-tvOSTests.debug.xcconfig"; sourceTree = ""; }; + D6EFE90B437D81D2619C9510 /* libPods-testingrnapps-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-testingrnapps-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; }; /* End PBXFileReference section */ @@ -58,6 +74,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0B0078BFEEAB987184A028C4 /* libPods-testingrnapps-testingrnappsTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -65,6 +82,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 23A3804CB6F0FDA150ABED48 /* libPods-testingrnapps.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -72,6 +90,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 96013DF53F63707F0DAE301B /* libPods-testingrnapps-tvOS.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -79,6 +98,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 8C052DE025AFEF5273B17DE1 /* libPods-testingrnapps-tvOSTests.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -121,6 +141,10 @@ children = ( ED297162215061F000B7C4FE /* JavaScriptCore.framework */, ED2971642150620600B7C4FE /* JavaScriptCore.framework */, + 69D06399064CDF7C0787CF1C /* libPods-testingrnapps.a */, + 091A71B191ACF12D0297D15D /* libPods-testingrnapps-testingrnappsTests.a */, + 444F67A41F8AF0B4AE4FD546 /* libPods-testingrnapps-tvOS.a */, + D6EFE90B437D81D2619C9510 /* libPods-testingrnapps-tvOSTests.a */, ); name = Frameworks; sourceTree = ""; @@ -140,6 +164,7 @@ 00E356EF1AD99517003FC87E /* testingrnappsTests */, 83CBBA001A601CBA00E9B192 /* Products */, 2D16E6871FA4F8E400B85C8A /* Frameworks */, + A4F47195D1BC58BC63C148A5 /* Pods */, ); indentWidth = 2; sourceTree = ""; @@ -157,6 +182,22 @@ name = Products; sourceTree = ""; }; + A4F47195D1BC58BC63C148A5 /* Pods */ = { + isa = PBXGroup; + children = ( + 414829C8F038B024F4B19F86 /* Pods-testingrnapps.debug.xcconfig */, + 1A19940460D2384137E82525 /* Pods-testingrnapps.release.xcconfig */, + 6E699AE357232EBEE269D1FD /* Pods-testingrnapps-testingrnappsTests.debug.xcconfig */, + 2758251B4658BEC780892B2F /* Pods-testingrnapps-testingrnappsTests.release.xcconfig */, + 4905D6573C9B5F8FD5EA5596 /* Pods-testingrnapps-tvOS.debug.xcconfig */, + 3A0EEB345B2580B5F3BD693C /* Pods-testingrnapps-tvOS.release.xcconfig */, + 93555FC577EDF08D08F5518B /* Pods-testingrnapps-tvOSTests.debug.xcconfig */, + 1161A6E710BB3EF213251013 /* Pods-testingrnapps-tvOSTests.release.xcconfig */, + ); + name = Pods; + path = Pods; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -164,9 +205,11 @@ isa = PBXNativeTarget; buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "testingrnappsTests" */; buildPhases = ( + CFE0B0F625F10B65842D9DAA /* [CP] Check Pods Manifest.lock */, 00E356EA1AD99517003FC87E /* Sources */, 00E356EB1AD99517003FC87E /* Frameworks */, 00E356EC1AD99517003FC87E /* Resources */, + 4CBF47984D57DFB94C703F41 /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -182,11 +225,13 @@ isa = PBXNativeTarget; buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "testingrnapps" */; buildPhases = ( + 7959B1E373E0F9810D8EA509 /* [CP] Check Pods Manifest.lock */, FD10A7F022414F080027D42C /* Start Packager */, 13B07F871A680F5B00A75B9A /* Sources */, 13B07F8C1A680F5B00A75B9A /* Frameworks */, 13B07F8E1A680F5B00A75B9A /* Resources */, 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */, + 3CED5A114262959658B13FCC /* [CP] Copy Pods Resources */, ); buildRules = ( ); @@ -201,6 +246,7 @@ isa = PBXNativeTarget; buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "testingrnapps-tvOS" */; buildPhases = ( + 5E58A40AA60FFE4AC8990106 /* [CP] Check Pods Manifest.lock */, FD10A7F122414F3F0027D42C /* Start Packager */, 2D02E4771E0B4A5D006451C7 /* Sources */, 2D02E4781E0B4A5D006451C7 /* Frameworks */, @@ -220,6 +266,7 @@ isa = PBXNativeTarget; buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "testingrnapps-tvOSTests" */; buildPhases = ( + DEF641D0F8595BD99A000461 /* [CP] Check Pods Manifest.lock */, 2D02E48C1E0B4A5D006451C7 /* Sources */, 2D02E48D1E0B4A5D006451C7 /* Frameworks */, 2D02E48E1E0B4A5D006451C7 /* Resources */, @@ -344,6 +391,130 @@ shellPath = /bin/sh; shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; }; + 3CED5A114262959658B13FCC /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-testingrnapps/Pods-testingrnapps-resources.sh", + "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-testingrnapps/Pods-testingrnapps-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 4CBF47984D57DFB94C703F41 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-testingrnapps-testingrnappsTests/Pods-testingrnapps-testingrnappsTests-resources.sh", + "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle", + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-testingrnapps-testingrnappsTests/Pods-testingrnapps-testingrnappsTests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 5E58A40AA60FFE4AC8990106 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-testingrnapps-tvOS-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + 7959B1E373E0F9810D8EA509 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-testingrnapps-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + CFE0B0F625F10B65842D9DAA /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-testingrnapps-testingrnappsTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; + DEF641D0F8595BD99A000461 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-testingrnapps-tvOSTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; FD10A7F022414F080027D42C /* Start Packager */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -449,6 +620,7 @@ /* Begin XCBuildConfiguration section */ 00E356F61AD99517003FC87E /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 6E699AE357232EBEE269D1FD /* Pods-testingrnapps-testingrnappsTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; GCC_PREPROCESSOR_DEFINITIONS = ( @@ -471,6 +643,7 @@ }; 00E356F71AD99517003FC87E /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 2758251B4658BEC780892B2F /* Pods-testingrnapps-testingrnappsTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; @@ -490,6 +663,7 @@ }; 13B07F941A680F5B00A75B9A /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 414829C8F038B024F4B19F86 /* Pods-testingrnapps.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; @@ -516,6 +690,7 @@ }; 13B07F951A680F5B00A75B9A /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 1A19940460D2384137E82525 /* Pods-testingrnapps.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; @@ -536,6 +711,7 @@ }; 2D02E4971E0B4A5E006451C7 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 4905D6573C9B5F8FD5EA5596 /* Pods-testingrnapps-tvOS.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; @@ -563,6 +739,7 @@ }; 2D02E4981E0B4A5E006451C7 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 3A0EEB345B2580B5F3BD693C /* Pods-testingrnapps-tvOS.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; @@ -590,6 +767,7 @@ }; 2D02E4991E0B4A5E006451C7 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 93555FC577EDF08D08F5518B /* Pods-testingrnapps-tvOSTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CLANG_ANALYZER_NONNULL = YES; @@ -616,6 +794,7 @@ }; 2D02E49A1E0B4A5E006451C7 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 1161A6E710BB3EF213251013 /* Pods-testingrnapps-tvOSTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CLANG_ANALYZER_NONNULL = YES; diff --git a/ios/testingrnapps.xcworkspace/contents.xcworkspacedata b/ios/testingrnapps.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..3d20d4f --- /dev/null +++ b/ios/testingrnapps.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/ios/testingrnapps.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/testingrnapps.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/testingrnapps.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + +