Update to react-native 0.64 and enable Hermes

Summary:
allow-large-files

Per title. hermes enabled so that we can verify the hermes debugger works.

Reviewed By: passy

Differential Revision: D27229331

fbshipit-source-id: c2e45151b9d2097edc7e79f54eb89f9d110899d6
This commit is contained in:
Michel Weststrate
2021-03-22 10:23:12 -07:00
committed by Facebook GitHub Bot
parent ea0cc7f15b
commit e1b12bbcf7
14 changed files with 1004 additions and 1510 deletions

View File

@@ -30,6 +30,8 @@ emoji=true
esproposal.optional_chaining=enable esproposal.optional_chaining=enable
esproposal.nullish_coalescing=enable esproposal.nullish_coalescing=enable
exact_by_default=true
module.file_ext=.js module.file_ext=.js
module.file_ext=.json module.file_ext=.json
module.file_ext=.ios.js module.file_ext=.ios.js
@@ -71,4 +73,4 @@ untyped-import
untyped-type-import untyped-type-import
[version] [version]
^0.113.0 ^0.137.0

View File

@@ -85,11 +85,6 @@ const App: () => React$Node = () => {
contentInsetAdjustmentBehavior="automatic" contentInsetAdjustmentBehavior="automatic"
style={styles.scrollView}> style={styles.scrollView}>
<Header /> <Header />
{global.HermesInternal == null ? null : (
<View style={styles.engine}>
<Text style={styles.footer}>Engine: Hermes</Text>
</View>
)}
<View style={styles.body}> <View style={styles.body}>
<View style={styles.sectionContainer}> <View style={styles.sectionContainer}>
<FlipperTicTacToe /> <FlipperTicTacToe />

View File

@@ -85,7 +85,7 @@ import com.android.build.OutputFile
*/ */
project.ext.react = [ project.ext.react = [
enableHermes: false, // clean and rebuild if changing enableHermes: true, // clean and rebuild if changing
] ]
apply from: "../../node_modules/react-native/react.gradle" apply from: "../../node_modules/react-native/react.gradle"
@@ -128,6 +128,8 @@ def jscFlavor = 'org.webkit:android-jsc:+'
def enableHermes = project.ext.react.get("enableHermes", false); def enableHermes = project.ext.react.get("enableHermes", false);
android { android {
ndkVersion rootProject.ext.ndkVersion
compileSdkVersion rootProject.ext.compileSdkVersion compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions { compileOptions {
@@ -180,7 +182,7 @@ android {
def abi = output.getFilter(OutputFile.ABI) def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride = output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode defaultConfig.versionCode * 1000 + versionCodes.get(abi)
} }
} }

View File

@@ -5,5 +5,10 @@
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" /> <application
android:usesCleartextTraffic="true"
tools:targetApi="28"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest> </manifest>

View File

@@ -9,17 +9,18 @@
buildscript { buildscript {
ext { ext {
buildToolsVersion = "29.0.2" buildToolsVersion = "29.0.3"
minSdkVersion = 16 minSdkVersion = 21
compileSdkVersion = 29 compileSdkVersion = 29
targetSdkVersion = 29 targetSdkVersion = 29
ndkVersion = "20.1.5948944"
} }
repositories { repositories {
google() google()
jcenter() jcenter()
} }
dependencies { dependencies {
classpath("com.android.tools.build:gradle:3.5.3") classpath("com.android.tools.build:gradle:4.1.0")
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.2-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists

View File

@@ -5,7 +5,10 @@ platform :ios, '10.0'
target 'ReactNativeFlipperExample' do target 'ReactNativeFlipperExample' do
config = use_native_modules! config = use_native_modules!
use_react_native!(:path => config["reactNativePath"]) use_react_native!(
:path => config["reactNativePath"],
:hermes_enabled => true
)
target 'ReactNativeFlipperExampleTests' do target 'ReactNativeFlipperExampleTests' do
inherit! :complete inherit! :complete
@@ -21,12 +24,3 @@ target 'ReactNativeFlipperExample' do
flipper_post_install(installer) flipper_post_install(installer)
end end
end end
target 'ReactNativeFlipperExample-tvOS' do
# Pods for ReactNativeFlipperExample-tvOS
target 'ReactNativeFlipperExample-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end

View File

@@ -2,14 +2,14 @@ PODS:
- boost-for-react-native (1.63.0) - boost-for-react-native (1.63.0)
- CocoaAsyncSocket (7.6.5) - CocoaAsyncSocket (7.6.5)
- DoubleConversion (1.1.6) - DoubleConversion (1.1.6)
- FBLazyVector (0.63.4) - FBLazyVector (0.64.0)
- FBReactNativeSpec (0.63.4): - FBReactNativeSpec (0.64.0):
- Folly (= 2020.01.13.00) - RCT-Folly (= 2020.01.13.00)
- RCTRequired (= 0.63.4) - RCTRequired (= 0.64.0)
- RCTTypeSafety (= 0.63.4) - RCTTypeSafety (= 0.64.0)
- React-Core (= 0.63.4) - React-Core (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - ReactCommon/turbomodule/core (= 0.64.0)
- Flipper (0.79.0): - Flipper (0.79.0):
- Flipper-Folly (~> 2.5) - Flipper-Folly (~> 2.5)
- Flipper-RSocket (~> 1.3) - Flipper-RSocket (~> 1.3)
@@ -56,246 +56,284 @@ PODS:
- FlipperKit/SKIOSNetworkPlugin (0.79.0): - FlipperKit/SKIOSNetworkPlugin (0.79.0):
- FlipperKit/Core - FlipperKit/Core
- FlipperKit/FlipperKitNetworkPlugin - 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) - glog (0.3.5)
- hermes-engine (0.7.2)
- libevent (2.1.12) - libevent (2.1.12)
- OpenSSL-Universal (1.1.180) - OpenSSL-Universal (1.1.180)
- RCTRequired (0.63.4) - RCT-Folly (2020.01.13.00):
- RCTTypeSafety (0.63.4): - boost-for-react-native
- FBLazyVector (= 0.63.4) - DoubleConversion
- Folly (= 2020.01.13.00)
- RCTRequired (= 0.63.4)
- React-Core (= 0.63.4)
- React (0.63.4):
- React-Core (= 0.63.4)
- React-Core/DevSupport (= 0.63.4)
- React-Core/RCTWebSocket (= 0.63.4)
- React-RCTActionSheet (= 0.63.4)
- React-RCTAnimation (= 0.63.4)
- React-RCTBlob (= 0.63.4)
- React-RCTImage (= 0.63.4)
- React-RCTLinking (= 0.63.4)
- React-RCTNetwork (= 0.63.4)
- React-RCTSettings (= 0.63.4)
- React-RCTText (= 0.63.4)
- React-RCTVibration (= 0.63.4)
- React-callinvoker (0.63.4)
- React-Core (0.63.4):
- Folly (= 2020.01.13.00)
- glog - glog
- React-Core/Default (= 0.63.4) - RCT-Folly/Default (= 2020.01.13.00)
- React-cxxreact (= 0.63.4) - RCT-Folly/Default (2020.01.13.00):
- React-jsi (= 0.63.4) - boost-for-react-native
- React-jsiexecutor (= 0.63.4) - DoubleConversion
- glog
- RCT-Folly/Futures (2020.01.13.00):
- boost-for-react-native
- DoubleConversion
- glog
- libevent
- RCTRequired (0.64.0)
- RCTTypeSafety (0.64.0):
- FBLazyVector (= 0.64.0)
- RCT-Folly (= 2020.01.13.00)
- RCTRequired (= 0.64.0)
- React-Core (= 0.64.0)
- React (0.64.0):
- React-Core (= 0.64.0)
- React-Core/DevSupport (= 0.64.0)
- React-Core/RCTWebSocket (= 0.64.0)
- React-RCTActionSheet (= 0.64.0)
- React-RCTAnimation (= 0.64.0)
- React-RCTBlob (= 0.64.0)
- React-RCTImage (= 0.64.0)
- React-RCTLinking (= 0.64.0)
- React-RCTNetwork (= 0.64.0)
- React-RCTSettings (= 0.64.0)
- React-RCTText (= 0.64.0)
- React-RCTVibration (= 0.64.0)
- React-callinvoker (0.64.0)
- React-Core (0.64.0):
- glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default (= 0.64.0)
- React-cxxreact (= 0.64.0)
- React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/CoreModulesHeaders (0.63.4): - React-Core/CoreModulesHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/Default (0.63.4): - React-Core/Default (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- React-cxxreact (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-jsi (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/DevSupport (0.63.4): - React-Core/DevSupport (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- React-Core/Default (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-Core/RCTWebSocket (= 0.63.4) - React-Core/Default (= 0.64.0)
- React-cxxreact (= 0.63.4) - React-Core/RCTWebSocket (= 0.64.0)
- React-jsi (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsinspector (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-jsinspector (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTActionSheetHeaders (0.63.4): - React-Core/Hermes (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- hermes-engine
- RCT-Folly (= 2020.01.13.00)
- RCT-Folly/Futures
- React-cxxreact (= 0.64.0)
- React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga
- React-Core/RCTActionSheetHeaders (0.64.0):
- glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTAnimationHeaders (0.63.4): - React-Core/RCTAnimationHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTBlobHeaders (0.63.4): - React-Core/RCTBlobHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTImageHeaders (0.63.4): - React-Core/RCTImageHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTLinkingHeaders (0.63.4): - React-Core/RCTLinkingHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTNetworkHeaders (0.63.4): - React-Core/RCTNetworkHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTSettingsHeaders (0.63.4): - React-Core/RCTSettingsHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTTextHeaders (0.63.4): - React-Core/RCTTextHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTVibrationHeaders (0.63.4): - React-Core/RCTVibrationHeaders (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- RCT-Folly (= 2020.01.13.00)
- React-Core/Default - React-Core/Default
- React-cxxreact (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-Core/RCTWebSocket (0.63.4): - React-Core/RCTWebSocket (0.64.0):
- Folly (= 2020.01.13.00)
- glog - glog
- React-Core/Default (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-cxxreact (= 0.63.4) - React-Core/Default (= 0.64.0)
- React-jsi (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsiexecutor (= 0.63.4) - React-jsi (= 0.64.0)
- React-jsiexecutor (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga - Yoga
- React-CoreModules (0.63.4): - React-CoreModules (0.64.0):
- FBReactNativeSpec (= 0.63.4) - FBReactNativeSpec (= 0.64.0)
- Folly (= 2020.01.13.00) - RCT-Folly (= 2020.01.13.00)
- RCTTypeSafety (= 0.63.4) - RCTTypeSafety (= 0.64.0)
- React-Core/CoreModulesHeaders (= 0.63.4) - React-Core/CoreModulesHeaders (= 0.64.0)
- React-jsi (= 0.63.4) - React-jsi (= 0.64.0)
- React-RCTImage (= 0.63.4) - React-RCTImage (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - ReactCommon/turbomodule/core (= 0.64.0)
- React-cxxreact (0.63.4): - React-cxxreact (0.64.0):
- boost-for-react-native (= 1.63.0) - boost-for-react-native (= 1.63.0)
- DoubleConversion - DoubleConversion
- Folly (= 2020.01.13.00)
- glog - glog
- React-callinvoker (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-jsinspector (= 0.63.4) - React-callinvoker (= 0.64.0)
- React-jsi (0.63.4): - React-jsi (= 0.64.0)
- React-jsinspector (= 0.64.0)
- React-perflogger (= 0.64.0)
- React-runtimeexecutor (= 0.64.0)
- React-jsi (0.64.0):
- boost-for-react-native (= 1.63.0) - boost-for-react-native (= 1.63.0)
- DoubleConversion - DoubleConversion
- Folly (= 2020.01.13.00)
- glog - glog
- React-jsi/Default (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-jsi/Default (0.63.4): - React-jsi/Default (= 0.64.0)
- React-jsi/Default (0.64.0):
- boost-for-react-native (= 1.63.0) - boost-for-react-native (= 1.63.0)
- DoubleConversion - DoubleConversion
- Folly (= 2020.01.13.00)
- glog - glog
- React-jsiexecutor (0.63.4): - RCT-Folly (= 2020.01.13.00)
- React-jsiexecutor (0.64.0):
- DoubleConversion - DoubleConversion
- Folly (= 2020.01.13.00)
- glog - glog
- React-cxxreact (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-jsi (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsinspector (0.63.4) - React-jsi (= 0.64.0)
- react-native-flipper (0.79.0): - React-perflogger (= 0.64.0)
- React-jsinspector (0.64.0)
- react-native-flipper (0.81.0):
- React-Core - React-Core
- React-RCTActionSheet (0.63.4): - React-perflogger (0.64.0)
- React-Core/RCTActionSheetHeaders (= 0.63.4) - React-RCTActionSheet (0.64.0):
- React-RCTAnimation (0.63.4): - React-Core/RCTActionSheetHeaders (= 0.64.0)
- FBReactNativeSpec (= 0.63.4) - React-RCTAnimation (0.64.0):
- Folly (= 2020.01.13.00) - FBReactNativeSpec (= 0.64.0)
- RCTTypeSafety (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-Core/RCTAnimationHeaders (= 0.63.4) - RCTTypeSafety (= 0.64.0)
- React-jsi (= 0.63.4) - React-Core/RCTAnimationHeaders (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - React-jsi (= 0.64.0)
- React-RCTBlob (0.63.4): - ReactCommon/turbomodule/core (= 0.64.0)
- FBReactNativeSpec (= 0.63.4) - React-RCTBlob (0.64.0):
- Folly (= 2020.01.13.00) - FBReactNativeSpec (= 0.64.0)
- React-Core/RCTBlobHeaders (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-Core/RCTWebSocket (= 0.63.4) - React-Core/RCTBlobHeaders (= 0.64.0)
- React-jsi (= 0.63.4) - React-Core/RCTWebSocket (= 0.64.0)
- React-RCTNetwork (= 0.63.4) - React-jsi (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - React-RCTNetwork (= 0.64.0)
- React-RCTImage (0.63.4): - ReactCommon/turbomodule/core (= 0.64.0)
- FBReactNativeSpec (= 0.63.4) - React-RCTImage (0.64.0):
- Folly (= 2020.01.13.00) - FBReactNativeSpec (= 0.64.0)
- RCTTypeSafety (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-Core/RCTImageHeaders (= 0.63.4) - RCTTypeSafety (= 0.64.0)
- React-jsi (= 0.63.4) - React-Core/RCTImageHeaders (= 0.64.0)
- React-RCTNetwork (= 0.63.4) - React-jsi (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - React-RCTNetwork (= 0.64.0)
- React-RCTLinking (0.63.4): - ReactCommon/turbomodule/core (= 0.64.0)
- FBReactNativeSpec (= 0.63.4) - React-RCTLinking (0.64.0):
- React-Core/RCTLinkingHeaders (= 0.63.4) - FBReactNativeSpec (= 0.64.0)
- React-jsi (= 0.63.4) - React-Core/RCTLinkingHeaders (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - React-jsi (= 0.64.0)
- React-RCTNetwork (0.63.4): - ReactCommon/turbomodule/core (= 0.64.0)
- FBReactNativeSpec (= 0.63.4) - React-RCTNetwork (0.64.0):
- Folly (= 2020.01.13.00) - FBReactNativeSpec (= 0.64.0)
- RCTTypeSafety (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-Core/RCTNetworkHeaders (= 0.63.4) - RCTTypeSafety (= 0.64.0)
- React-jsi (= 0.63.4) - React-Core/RCTNetworkHeaders (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - React-jsi (= 0.64.0)
- React-RCTSettings (0.63.4): - ReactCommon/turbomodule/core (= 0.64.0)
- FBReactNativeSpec (= 0.63.4) - React-RCTSettings (0.64.0):
- Folly (= 2020.01.13.00) - FBReactNativeSpec (= 0.64.0)
- RCTTypeSafety (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-Core/RCTSettingsHeaders (= 0.63.4) - RCTTypeSafety (= 0.64.0)
- React-jsi (= 0.63.4) - React-Core/RCTSettingsHeaders (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - React-jsi (= 0.64.0)
- React-RCTText (0.63.4): - ReactCommon/turbomodule/core (= 0.64.0)
- React-Core/RCTTextHeaders (= 0.63.4) - React-RCTText (0.64.0):
- React-RCTVibration (0.63.4): - React-Core/RCTTextHeaders (= 0.64.0)
- FBReactNativeSpec (= 0.63.4) - React-RCTVibration (0.64.0):
- Folly (= 2020.01.13.00) - FBReactNativeSpec (= 0.64.0)
- React-Core/RCTVibrationHeaders (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-jsi (= 0.63.4) - React-Core/RCTVibrationHeaders (= 0.64.0)
- ReactCommon/turbomodule/core (= 0.63.4) - React-jsi (= 0.64.0)
- ReactCommon/turbomodule/core (0.63.4): - ReactCommon/turbomodule/core (= 0.64.0)
- React-runtimeexecutor (0.64.0):
- React-jsi (= 0.64.0)
- ReactCommon/turbomodule/core (0.64.0):
- DoubleConversion - DoubleConversion
- Folly (= 2020.01.13.00)
- glog - glog
- React-callinvoker (= 0.63.4) - RCT-Folly (= 2020.01.13.00)
- React-Core (= 0.63.4) - React-callinvoker (= 0.64.0)
- React-cxxreact (= 0.63.4) - React-Core (= 0.64.0)
- React-jsi (= 0.63.4) - React-cxxreact (= 0.64.0)
- React-jsi (= 0.64.0)
- React-perflogger (= 0.64.0)
- Yoga (1.14.0) - Yoga (1.14.0)
- YogaKit (1.18.1): - YogaKit (1.18.1):
- Yoga (~> 1.14) - Yoga (~> 1.14)
@@ -303,13 +341,13 @@ PODS:
DEPENDENCIES: DEPENDENCIES:
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`) - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
- FBReactNativeSpec (from `../node_modules/react-native/Libraries/FBReactNativeSpec`) - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
- Flipper (= 0.79.0) - Flipper (= 0.79.0)
- Flipper-DoubleConversion (= 1.1.7) - Flipper-DoubleConversion (= 1.1.7)
- Flipper-Folly (~> 2.2) - Flipper-Folly (~> 2.5)
- Flipper-Glog (= 0.3.6) - Flipper-Glog (= 0.3.6)
- Flipper-PeerTalk (~> 0.0.4) - Flipper-PeerTalk (~> 0.0.4)
- Flipper-RSocket (~> 1.1) - Flipper-RSocket (~> 1.3)
- FlipperKit (= 0.79.0) - FlipperKit (= 0.79.0)
- FlipperKit/Core (= 0.79.0) - FlipperKit/Core (= 0.79.0)
- FlipperKit/CppBridge (= 0.79.0) - FlipperKit/CppBridge (= 0.79.0)
@@ -323,14 +361,17 @@ DEPENDENCIES:
- FlipperKit/FlipperKitReactPlugin (= 0.79.0) - FlipperKit/FlipperKitReactPlugin (= 0.79.0)
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.79.0) - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.79.0)
- FlipperKit/SKIOSNetworkPlugin (= 0.79.0) - FlipperKit/SKIOSNetworkPlugin (= 0.79.0)
- Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- hermes-engine (~> 0.7.2)
- libevent (~> 2.1.12)
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../node_modules/react-native/`) - React (from `../node_modules/react-native/`)
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`) - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
- React-Core (from `../node_modules/react-native/`) - React-Core (from `../node_modules/react-native/`)
- React-Core/DevSupport (from `../node_modules/react-native/`) - React-Core/DevSupport (from `../node_modules/react-native/`)
- React-Core/Hermes (from `../node_modules/react-native/`)
- React-Core/RCTWebSocket (from `../node_modules/react-native/`) - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`) - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
@@ -338,6 +379,7 @@ DEPENDENCIES:
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
- react-native-flipper (from `../node_modules/react-native-flipper`) - react-native-flipper (from `../node_modules/react-native-flipper`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`) - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
@@ -347,6 +389,7 @@ DEPENDENCIES:
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
- React-RCTText (from `../node_modules/react-native/Libraries/Text`) - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`) - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
@@ -361,6 +404,7 @@ SPEC REPOS:
- Flipper-PeerTalk - Flipper-PeerTalk
- Flipper-RSocket - Flipper-RSocket
- FlipperKit - FlipperKit
- hermes-engine
- libevent - libevent
- OpenSSL-Universal - OpenSSL-Universal
- YogaKit - YogaKit
@@ -371,11 +415,11 @@ EXTERNAL SOURCES:
FBLazyVector: FBLazyVector:
:path: "../node_modules/react-native/Libraries/FBLazyVector" :path: "../node_modules/react-native/Libraries/FBLazyVector"
FBReactNativeSpec: FBReactNativeSpec:
:path: "../node_modules/react-native/Libraries/FBReactNativeSpec" :path: "../node_modules/react-native/React/FBReactNativeSpec"
Folly:
:podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec"
glog: glog:
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
RCT-Folly:
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
RCTRequired: RCTRequired:
:path: "../node_modules/react-native/Libraries/RCTRequired" :path: "../node_modules/react-native/Libraries/RCTRequired"
RCTTypeSafety: RCTTypeSafety:
@@ -398,6 +442,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/jsinspector" :path: "../node_modules/react-native/ReactCommon/jsinspector"
react-native-flipper: react-native-flipper:
:path: "../node_modules/react-native-flipper" :path: "../node_modules/react-native-flipper"
React-perflogger:
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
React-RCTActionSheet: React-RCTActionSheet:
:path: "../node_modules/react-native/Libraries/ActionSheetIOS" :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
React-RCTAnimation: React-RCTAnimation:
@@ -416,6 +462,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/Text" :path: "../node_modules/react-native/Libraries/Text"
React-RCTVibration: React-RCTVibration:
:path: "../node_modules/react-native/Libraries/Vibration" :path: "../node_modules/react-native/Libraries/Vibration"
React-runtimeexecutor:
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
ReactCommon: ReactCommon:
:path: "../node_modules/react-native/ReactCommon" :path: "../node_modules/react-native/ReactCommon"
Yoga: Yoga:
@@ -425,8 +473,8 @@ SPEC CHECKSUMS:
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
DoubleConversion: cde416483dac037923206447da6e1454df403714 DoubleConversion: cde416483dac037923206447da6e1454df403714
FBLazyVector: 3bb422f41b18121b71783a905c10e58606f7dc3e FBLazyVector: 49cbe4b43e445b06bf29199b6ad2057649e4c8f5
FBReactNativeSpec: f2c97f2529dd79c083355182cc158c9f98f4bd6e FBReactNativeSpec: 9e9f783f0e063dba3464ba0f9a826ac6c7f2908f
Flipper: b6ab74c50d17c375c0ed3f729489cd1030f7c511 Flipper: b6ab74c50d17c375c0ed3f729489cd1030f7c511
Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41 Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
Flipper-Folly: f7a3caafbd74bda4827954fd7a6e000e36355489 Flipper-Folly: f7a3caafbd74bda4827954fd7a6e000e36355489
@@ -434,34 +482,37 @@ SPEC CHECKSUMS:
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9 Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
Flipper-RSocket: 602921fee03edacf18f5d6f3d3594ba477f456e5 Flipper-RSocket: 602921fee03edacf18f5d6f3d3594ba477f456e5
FlipperKit: 6a68648b412158059f9021b5e61c36bb3086ebc3 FlipperKit: 6a68648b412158059f9021b5e61c36bb3086ebc3
Folly: b73c3869541e86821df3c387eb0af5f65addfab4
glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3 glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
hermes-engine: 7d97ba46a1e29bacf3e3c61ecb2804a5ddd02d4f
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913 libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
RCTRequired: 082f10cd3f905d6c124597fd1c14f6f2655ff65e RCT-Folly: ec7a233ccc97cc556cf7237f0db1ff65b986f27c
RCTTypeSafety: 8c9c544ecbf20337d069e4ae7fd9a377aadf504b RCTRequired: 2f8cb5b7533219bf4218a045f92768129cf7050a
React: b0a957a2c44da4113b0c4c9853d8387f8e64e615 RCTTypeSafety: 512728b73549e72ad7330b92f3d42936f2a4de5b
React-callinvoker: c3f44dd3cb195b6aa46621fff95ded79d59043fe React: 98eac01574128a790f0bbbafe2d1a8607291ac24
React-Core: d3b2a1ac9a2c13c3bcde712d9281fc1c8a5b315b React-callinvoker: def3f7fae16192df68d9b69fd4bbb59092ee36bc
React-CoreModules: 0581ff36cb797da0943d424f69e7098e43e9be60 React-Core: 70a52aa5dbe9b83befae82038451a7df9fd54c5a
React-cxxreact: c1480d4fda5720086c90df537ee7d285d4c57ac3 React-CoreModules: 052edef46117862e2570eb3a0f06d81c61d2c4b8
React-jsi: a0418934cf48f25b485631deb27c64dc40fb4c31 React-cxxreact: c1dc71b30653cfb4770efdafcbdc0ad6d388baab
React-jsiexecutor: 93bd528844ad21dc07aab1c67cb10abae6df6949 React-jsi: 74341196d9547cbcbcfa4b3bbbf03af56431d5a1
React-jsinspector: 58aef7155bc9a9683f5b60b35eccea8722a4f53a React-jsiexecutor: 06a9c77b56902ae7ffcdd7a4905f664adc5d237b
react-native-flipper: 9a19986297caa455bb5ca6d5d7ad745b246c1236 React-jsinspector: 0ae35a37b20d5e031eb020a69cc5afdbd6406301
React-RCTActionSheet: 89a0ca9f4a06c1f93c26067af074ccdce0f40336 react-native-flipper: 558237babdf0ee5d5360ebac860d3a5d1d9fc133
React-RCTAnimation: 1bde3ecc0c104c55df246eda516e0deb03c4e49b React-perflogger: 9c547d8f06b9bf00cb447f2b75e8d7f19b7e02af
React-RCTBlob: a97d378b527740cc667e03ebfa183a75231ab0f0 React-RCTActionSheet: 3080b6e12e0e1a5b313c8c0050699b5c794a1b11
React-RCTImage: c1b1f2d3f43a4a528c8946d6092384b5c880d2f0 React-RCTAnimation: 3f96f21a497ae7dabf4d2f150ee43f906aaf516f
React-RCTLinking: 35ae4ab9dc0410d1fcbdce4d7623194a27214fb2 React-RCTBlob: 283b8e5025e7f954176bc48164f846909002f3ed
React-RCTNetwork: 29ec2696f8d8cfff7331fac83d3e893c95ef43ae React-RCTImage: 5088a484faac78f2d877e1b79125d3bb1ea94a16
React-RCTSettings: 60f0691bba2074ef394f95d4c2265ec284e0a46a React-RCTLinking: 5e8fbb3e9a8bc2e4e3eb15b1eb8bda5fcac27b8c
React-RCTText: 5c51df3f08cb9dedc6e790161195d12bac06101c React-RCTNetwork: 38ec277217b1e841d5e6a1fa78da65b9212ccb28
React-RCTVibration: ae4f914cfe8de7d4de95ae1ea6cc8f6315d73d9d React-RCTSettings: 242d6e692108c3de4f3bb74b7586a8799e9ab070
ReactCommon: 73d79c7039f473b76db6ff7c6b159c478acbbb3b React-RCTText: 8746736ac8eb5a4a74719aa695b7a236a93a83d2
Yoga: 4bd86afe9883422a7c4028c00e34790f560923d6 React-RCTVibration: 0fd6b21751a33cb72fce1a4a33ab9678416d307a
React-runtimeexecutor: cad74a1eaa53ee6e7a3620231939d8fe2c6afcf0
ReactCommon: cfe2b7fd20e0dbd2d1185cd7d8f99633fbc5ff05
Yoga: 8c8436d4171c87504c648ae23b1d81242bdf3bbf
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
PODFILE CHECKSUM: 8eabb2aa66c8796e18dd8854c60d9357b349418f PODFILE CHECKSUM: e18a5a9e62a6a77042fc43d0d959332ffc5f68ae
COCOAPODS: 1.10.1 COCOAPODS: 1.10.1

View File

@@ -1,53 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>

View File

@@ -1,24 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>

View File

@@ -9,7 +9,6 @@
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
00E356F31AD99517003FC87E /* ReactNativeFlipperExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeFlipperExampleTests.m */; }; 00E356F31AD99517003FC87E /* ReactNativeFlipperExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeFlipperExampleTests.m */; };
04AABBC96725AB03A1C97DFF /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BB32988C12103FDC9491AA15 /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a */; }; 04AABBC96725AB03A1C97DFF /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BB32988C12103FDC9491AA15 /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a */; };
0CB825FB9242F403EEB7BB7B /* libPods-ReactNativeFlipperExample-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FFAD63F0CE40E74B96B5EE9 /* libPods-ReactNativeFlipperExample-tvOSTests.a */; };
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; }; 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; }; 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
@@ -19,7 +18,6 @@
2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; }; 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
2DCD954D1E0B4F2C00145EB5 /* ReactNativeFlipperExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeFlipperExampleTests.m */; }; 2DCD954D1E0B4F2C00145EB5 /* ReactNativeFlipperExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* ReactNativeFlipperExampleTests.m */; };
639C22F933B67E306797543C /* libPods-ReactNativeFlipperExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F4E7081D6B7F1262E4655A1 /* libPods-ReactNativeFlipperExample.a */; }; 639C22F933B67E306797543C /* libPods-ReactNativeFlipperExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F4E7081D6B7F1262E4655A1 /* libPods-ReactNativeFlipperExample.a */; };
694D62B9D8FC3230505BD01B /* libPods-ReactNativeFlipperExample-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E5E86FC2F7A4A6235ECBD215 /* libPods-ReactNativeFlipperExample-tvOS.a */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */ /* Begin PBXContainerItemProxy section */
@@ -44,7 +42,6 @@
00E356EE1AD99517003FC87E /* ReactNativeFlipperExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNativeFlipperExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 00E356EE1AD99517003FC87E /* ReactNativeFlipperExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ReactNativeFlipperExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
00E356F21AD99517003FC87E /* ReactNativeFlipperExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactNativeFlipperExampleTests.m; sourceTree = "<group>"; }; 00E356F21AD99517003FC87E /* ReactNativeFlipperExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ReactNativeFlipperExampleTests.m; sourceTree = "<group>"; };
0FAB9DB83AF6A6EFC8A6A53B /* Pods-ReactNativeFlipperExample-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-tvOS.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-tvOS/Pods-ReactNativeFlipperExample-tvOS.release.xcconfig"; sourceTree = "<group>"; };
13B07F961A680F5B00A75B9A /* ReactNativeFlipperExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNativeFlipperExample.app; sourceTree = BUILT_PRODUCTS_DIR; }; 13B07F961A680F5B00A75B9A /* ReactNativeFlipperExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ReactNativeFlipperExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReactNativeFlipperExample/AppDelegate.h; sourceTree = "<group>"; }; 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ReactNativeFlipperExample/AppDelegate.h; sourceTree = "<group>"; };
13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ReactNativeFlipperExample/AppDelegate.m; sourceTree = "<group>"; }; 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ReactNativeFlipperExample/AppDelegate.m; sourceTree = "<group>"; };
@@ -54,19 +51,14 @@
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactNativeFlipperExample/main.m; sourceTree = "<group>"; }; 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = ReactNativeFlipperExample/main.m; sourceTree = "<group>"; };
2D02E47B1E0B4A5D006451C7 /* ReactNativeFlipperExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ReactNativeFlipperExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 2D02E47B1E0B4A5D006451C7 /* ReactNativeFlipperExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "ReactNativeFlipperExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
2D02E4901E0B4A5D006451C7 /* ReactNativeFlipperExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ReactNativeFlipperExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; }; 2D02E4901E0B4A5D006451C7 /* ReactNativeFlipperExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "ReactNativeFlipperExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
2FFAD63F0CE40E74B96B5EE9 /* libPods-ReactNativeFlipperExample-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeFlipperExample-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
416BFADE15F32F0675E23F8D /* Pods-ReactNativeFlipperExample-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-tvOS/Pods-ReactNativeFlipperExample-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
8375714720F4FB5DC6AE4B8A /* Pods-ReactNativeFlipperExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample/Pods-ReactNativeFlipperExample.debug.xcconfig"; sourceTree = "<group>"; }; 8375714720F4FB5DC6AE4B8A /* Pods-ReactNativeFlipperExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample/Pods-ReactNativeFlipperExample.debug.xcconfig"; sourceTree = "<group>"; };
9934A36EAD23DCD5446752AE /* Pods-ReactNativeFlipperExample-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-tvOSTests/Pods-ReactNativeFlipperExample-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
9F4E7081D6B7F1262E4655A1 /* libPods-ReactNativeFlipperExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeFlipperExample.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 9F4E7081D6B7F1262E4655A1 /* libPods-ReactNativeFlipperExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeFlipperExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
AFD7D6BFD4B9F5E066113487 /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig"; sourceTree = "<group>"; }; AFD7D6BFD4B9F5E066113487 /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig"; sourceTree = "<group>"; };
B39EBD8F41E2054B23A9D490 /* Pods-ReactNativeFlipperExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample/Pods-ReactNativeFlipperExample.release.xcconfig"; sourceTree = "<group>"; }; B39EBD8F41E2054B23A9D490 /* Pods-ReactNativeFlipperExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample/Pods-ReactNativeFlipperExample.release.xcconfig"; sourceTree = "<group>"; };
BB32988C12103FDC9491AA15 /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BB32988C12103FDC9491AA15 /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
DD33AD164D87475567F87ECA /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig"; sourceTree = "<group>"; }; DD33AD164D87475567F87ECA /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig"; sourceTree = "<group>"; };
E5E86FC2F7A4A6235ECBD215 /* libPods-ReactNativeFlipperExample-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReactNativeFlipperExample-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; 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; }; 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; };
F493CDB8609947635C627005 /* Pods-ReactNativeFlipperExample-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReactNativeFlipperExample-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-ReactNativeFlipperExample-tvOSTests/Pods-ReactNativeFlipperExample-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */ /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */
@@ -90,7 +82,6 @@
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
694D62B9D8FC3230505BD01B /* libPods-ReactNativeFlipperExample-tvOS.a in Frameworks */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
@@ -98,7 +89,6 @@
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
0CB825FB9242F403EEB7BB7B /* libPods-ReactNativeFlipperExample-tvOSTests.a in Frameworks */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
@@ -143,8 +133,6 @@
ED2971642150620600B7C4FE /* JavaScriptCore.framework */, ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
9F4E7081D6B7F1262E4655A1 /* libPods-ReactNativeFlipperExample.a */, 9F4E7081D6B7F1262E4655A1 /* libPods-ReactNativeFlipperExample.a */,
BB32988C12103FDC9491AA15 /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a */, BB32988C12103FDC9491AA15 /* libPods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.a */,
E5E86FC2F7A4A6235ECBD215 /* libPods-ReactNativeFlipperExample-tvOS.a */,
2FFAD63F0CE40E74B96B5EE9 /* libPods-ReactNativeFlipperExample-tvOSTests.a */,
); );
name = Frameworks; name = Frameworks;
sourceTree = "<group>"; sourceTree = "<group>";
@@ -156,10 +144,6 @@
B39EBD8F41E2054B23A9D490 /* Pods-ReactNativeFlipperExample.release.xcconfig */, B39EBD8F41E2054B23A9D490 /* Pods-ReactNativeFlipperExample.release.xcconfig */,
AFD7D6BFD4B9F5E066113487 /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig */, AFD7D6BFD4B9F5E066113487 /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.debug.xcconfig */,
DD33AD164D87475567F87ECA /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig */, DD33AD164D87475567F87ECA /* Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests.release.xcconfig */,
416BFADE15F32F0675E23F8D /* Pods-ReactNativeFlipperExample-tvOS.debug.xcconfig */,
0FAB9DB83AF6A6EFC8A6A53B /* Pods-ReactNativeFlipperExample-tvOS.release.xcconfig */,
9934A36EAD23DCD5446752AE /* Pods-ReactNativeFlipperExample-tvOSTests.debug.xcconfig */,
F493CDB8609947635C627005 /* Pods-ReactNativeFlipperExample-tvOSTests.release.xcconfig */,
); );
path = Pods; path = Pods;
sourceTree = "<group>"; sourceTree = "<group>";
@@ -247,7 +231,6 @@
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeFlipperExample-tvOS" */; buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeFlipperExample-tvOS" */;
buildPhases = ( buildPhases = (
376D02F0ACE1F013187102C4 /* [CP] Check Pods Manifest.lock */,
FD10A7F122414F3F0027D42C /* Start Packager */, FD10A7F122414F3F0027D42C /* Start Packager */,
2D02E4771E0B4A5D006451C7 /* Sources */, 2D02E4771E0B4A5D006451C7 /* Sources */,
2D02E4781E0B4A5D006451C7 /* Frameworks */, 2D02E4781E0B4A5D006451C7 /* Frameworks */,
@@ -267,7 +250,6 @@
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeFlipperExample-tvOSTests" */; buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "ReactNativeFlipperExample-tvOSTests" */;
buildPhases = ( buildPhases = (
EF8F7CC3E6A26470CD1E3653 /* [CP] Check Pods Manifest.lock */,
2D02E48C1E0B4A5D006451C7 /* Sources */, 2D02E48C1E0B4A5D006451C7 /* Sources */,
2D02E48D1E0B4A5D006451C7 /* Frameworks */, 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
2D02E48E1E0B4A5D006451C7 /* Resources */, 2D02E48E1E0B4A5D006451C7 /* Resources */,
@@ -392,28 +374,6 @@
shellPath = /bin/sh; shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh"; shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
}; };
376D02F0ACE1F013187102C4 /* [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-ReactNativeFlipperExample-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;
};
4B4AFCCBB0879333439F0C1B /* [CP] Copy Pods Resources */ = { 4B4AFCCBB0879333439F0C1B /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase; isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@@ -439,10 +399,12 @@
); );
inputPaths = ( inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-ReactNativeFlipperExample/Pods-ReactNativeFlipperExample-frameworks.sh", "${PODS_ROOT}/Target Support Files/Pods-ReactNativeFlipperExample/Pods-ReactNativeFlipperExample-frameworks.sh",
"${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos/hermes.framework",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL", "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL",
); );
name = "[CP] Embed Pods Frameworks"; name = "[CP] Embed Pods Frameworks";
outputPaths = ( outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
@@ -501,10 +463,12 @@
); );
inputPaths = ( inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests-frameworks.sh", "${PODS_ROOT}/Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests-frameworks.sh",
"${PODS_ROOT}/hermes-engine/destroot/Library/Frameworks/iphoneos/hermes.framework",
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL", "${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL/OpenSSL.framework/OpenSSL",
); );
name = "[CP] Embed Pods Frameworks"; name = "[CP] Embed Pods Frameworks";
outputPaths = ( outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework", "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSSL.framework",
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
@@ -512,28 +476,6 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests-frameworks.sh\"\n"; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests/Pods-ReactNativeFlipperExample-ReactNativeFlipperExampleTests-frameworks.sh\"\n";
showEnvVarsInLog = 0; showEnvVarsInLog = 0;
}; };
EF8F7CC3E6A26470CD1E3653 /* [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-ReactNativeFlipperExample-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;
};
FC3B49C295CE038DA736697B /* [CP] Copy Pods Resources */ = { FC3B49C295CE038DA736697B /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase; isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
@@ -750,7 +692,6 @@
}; };
2D02E4971E0B4A5E006451C7 /* Debug */ = { 2D02E4971E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 416BFADE15F32F0675E23F8D /* Pods-ReactNativeFlipperExample-tvOS.debug.xcconfig */;
buildSettings = { buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
@@ -778,7 +719,6 @@
}; };
2D02E4981E0B4A5E006451C7 /* Release */ = { 2D02E4981E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 0FAB9DB83AF6A6EFC8A6A53B /* Pods-ReactNativeFlipperExample-tvOS.release.xcconfig */;
buildSettings = { buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image"; ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
@@ -806,7 +746,6 @@
}; };
2D02E4991E0B4A5E006451C7 /* Debug */ = { 2D02E4991E0B4A5E006451C7 /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 9934A36EAD23DCD5446752AE /* Pods-ReactNativeFlipperExample-tvOSTests.debug.xcconfig */;
buildSettings = { buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)"; BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NONNULL = YES;
@@ -833,7 +772,6 @@
}; };
2D02E49A1E0B4A5E006451C7 /* Release */ = { 2D02E49A1E0B4A5E006451C7 /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = F493CDB8609947635C627005 /* Pods-ReactNativeFlipperExample-tvOSTests.release.xcconfig */;
buildSettings = { buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)"; BUNDLE_LOADER = "$(TEST_HOST)";
CLANG_ANALYZER_NONNULL = YES; CLANG_ANALYZER_NONNULL = YES;

View File

@@ -12,7 +12,7 @@ module.exports = {
getTransformOptions: async () => ({ getTransformOptions: async () => ({
transform: { transform: {
experimentalImportSupport: false, experimentalImportSupport: false,
inlineRequires: false, inlineRequires: true,
}, },
}), }),
}, },

View File

@@ -11,15 +11,15 @@
}, },
"dependencies": { "dependencies": {
"react": "^17.0.1", "react": "^17.0.1",
"react-native": "^0.63.4", "react-native": "^0.64.0",
"react-native-flipper": "^0.80.0" "react-native-flipper": "^0.80.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.13.8", "@babel/core": "^7.12.9",
"@babel/runtime": "^7.13.8", "@babel/runtime": "^7.12.5",
"babel-jest": "^26.6.3", "babel-jest": "^26.6.3",
"jest": "^26.6.3", "jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.65.0", "metro-react-native-babel-preset": "^0.64.0",
"react-test-renderer": "17.0.1", "react-test-renderer": "17.0.1",
"relative-deps": "^1.0.6" "relative-deps": "^1.0.6"
}, },
@@ -28,10 +28,5 @@
}, },
"relativeDependencies": { "relativeDependencies": {
"react-native-flipper": "../react-native-flipper" "react-native-flipper": "../react-native-flipper"
},
"resolutions": {
"minimist": "1.2.3",
"node-fetch": "^2.6.1",
"node-notifier": "^8.0.1"
} }
} }

File diff suppressed because it is too large Load Diff