diff --git a/Example/Gemfile.lock b/Example/Gemfile.lock
index 49ea1312e..5fe10c74b 100644
--- a/Example/Gemfile.lock
+++ b/Example/Gemfile.lock
@@ -3,24 +3,24 @@ GEM
specs:
CFPropertyList (3.0.6)
rexml
- activesupport (7.0.7.2)
+ activesupport (7.0.8)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
- addressable (2.8.4)
+ addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
claide (1.1.0)
- cocoapods (1.12.1)
+ cocoapods (1.14.3)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
- cocoapods-core (= 1.12.1)
+ cocoapods-core (= 1.14.3)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
- cocoapods-downloader (>= 1.6.0, < 2.0)
+ cocoapods-downloader (>= 2.1, < 3.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
cocoapods-search (>= 1.0.0, < 2.0)
cocoapods-trunk (>= 1.6.0, < 2.0)
@@ -32,8 +32,8 @@ GEM
molinillo (~> 0.8.0)
nap (~> 1.0)
ruby-macho (>= 2.3.0, < 3.0)
- xcodeproj (>= 1.21.0, < 2.0)
- cocoapods-core (1.12.1)
+ xcodeproj (>= 1.23.0, < 2.0)
+ cocoapods-core (1.14.3)
activesupport (>= 5.0, < 8)
addressable (~> 2.8)
algoliasearch (~> 1.0)
@@ -44,7 +44,7 @@ GEM
public_suffix (~> 4.0)
typhoeus (~> 1.0)
cocoapods-deintegrate (1.0.5)
- cocoapods-downloader (1.6.3)
+ cocoapods-downloader (2.1)
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.1)
@@ -57,27 +57,27 @@ GEM
escape (0.0.4)
ethon (0.16.0)
ffi (>= 1.15.0)
- ffi (1.15.5)
+ ffi (1.16.3)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
httpclient (2.8.3)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
- json (2.6.3)
- minitest (5.19.0)
+ json (2.7.1)
+ minitest (5.20.0)
molinillo (0.8.0)
nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
public_suffix (4.0.7)
- rexml (3.2.5)
+ rexml (3.2.6)
ruby-macho (2.5.1)
- typhoeus (1.4.0)
+ typhoeus (1.4.1)
ethon (>= 0.9.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
- xcodeproj (1.22.0)
+ xcodeproj (1.23.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
@@ -89,10 +89,11 @@ PLATFORMS
ruby
DEPENDENCIES
- cocoapods (~> 1.12)
+ activesupport (>= 6.1.7.3, < 7.1.0)
+ cocoapods (~> 1.13)
RUBY VERSION
- ruby 2.6.10p210
+ ruby 3.2.1p31
BUNDLED WITH
- 1.17.2
+ 2.4.6
diff --git a/Example/android/app/build.gradle b/Example/android/app/build.gradle
index a3d064cd6..ba8d7ee55 100644
--- a/Example/android/app/build.gradle
+++ b/Example/android/app/build.gradle
@@ -1,4 +1,5 @@
apply plugin: "com.android.application"
+apply plugin: "org.jetbrains.kotlin.android"
apply plugin: "com.facebook.react"
/**
@@ -70,8 +71,8 @@ def jscFlavor = 'org.webkit:android-jsc:+'
android {
ndkVersion rootProject.ext.ndkVersion
-
- compileSdkVersion rootProject.ext.compileSdkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
+ compileSdk rootProject.ext.compileSdkVersion
namespace "com.example"
defaultConfig {
@@ -106,13 +107,8 @@ android {
dependencies {
// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
+ implementation("com.facebook.react:flipper-integration")
- debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")
- debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
- exclude group:'com.squareup.okhttp3', module:'okhttp'
- }
-
- debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
} else {
diff --git a/Example/android/app/src/debug/AndroidManifest.xml b/Example/android/app/src/debug/AndroidManifest.xml
index 4b185bc15..eb98c01af 100644
--- a/Example/android/app/src/debug/AndroidManifest.xml
+++ b/Example/android/app/src/debug/AndroidManifest.xml
@@ -2,12 +2,8 @@
-
-
-
-
+ tools:ignore="GoogleAppIndexingWarning"/>
diff --git a/Example/android/app/src/debug/java/com/example/ReactNativeFlipper.java b/Example/android/app/src/debug/java/com/example/ReactNativeFlipper.java
deleted file mode 100644
index e75580ef0..000000000
--- a/Example/android/app/src/debug/java/com/example/ReactNativeFlipper.java
+++ /dev/null
@@ -1,75 +0,0 @@
-/**
- * Copyright (c) Meta Platforms, Inc. and affiliates.
- *
- *
This source code is licensed under the MIT license found in the LICENSE file in the root
- * directory of this source tree.
- */
-package com.example;
-
-import android.content.Context;
-import com.facebook.flipper.android.AndroidFlipperClient;
-import com.facebook.flipper.android.utils.FlipperUtils;
-import com.facebook.flipper.core.FlipperClient;
-import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin;
-import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin;
-import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin;
-import com.facebook.flipper.plugins.inspector.DescriptorMapping;
-import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin;
-import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor;
-import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
-import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
-import com.facebook.react.ReactInstanceEventListener;
-import com.facebook.react.ReactInstanceManager;
-import com.facebook.react.bridge.ReactContext;
-import com.facebook.react.modules.network.NetworkingModule;
-import okhttp3.OkHttpClient;
-
-/**
- * Class responsible of loading Flipper inside your React Native application. This is the debug
- * flavor of it. Here you can add your own plugins and customize the Flipper setup.
- */
-public class ReactNativeFlipper {
- public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
- if (FlipperUtils.shouldEnableFlipper(context)) {
- final FlipperClient client = AndroidFlipperClient.getInstance(context);
-
- client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults()));
- client.addPlugin(new DatabasesFlipperPlugin(context));
- client.addPlugin(new SharedPreferencesFlipperPlugin(context));
- client.addPlugin(CrashReporterPlugin.getInstance());
-
- NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin();
- NetworkingModule.setCustomClientBuilder(
- new NetworkingModule.CustomClientBuilder() {
- @Override
- public void apply(OkHttpClient.Builder builder) {
- builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin));
- }
- });
- client.addPlugin(networkFlipperPlugin);
- client.start();
-
- // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized
- // Hence we run if after all native modules have been initialized
- ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
- if (reactContext == null) {
- reactInstanceManager.addReactInstanceEventListener(
- new ReactInstanceEventListener() {
- @Override
- public void onReactContextInitialized(ReactContext reactContext) {
- reactInstanceManager.removeReactInstanceEventListener(this);
- reactContext.runOnNativeModulesQueueThread(
- new Runnable() {
- @Override
- public void run() {
- client.addPlugin(new FrescoFlipperPlugin());
- }
- });
- }
- });
- } else {
- client.addPlugin(new FrescoFlipperPlugin());
- }
- }
- }
-}
diff --git a/Example/android/app/src/main/java/com/example/MainActivity.java b/Example/android/app/src/main/java/com/example/MainActivity.java
deleted file mode 100644
index fd92b73f2..000000000
--- a/Example/android/app/src/main/java/com/example/MainActivity.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.example;
-
-import com.facebook.react.ReactActivity;
-import com.facebook.react.ReactActivityDelegate;
-import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
-import com.facebook.react.defaults.DefaultReactActivityDelegate;
-
-public class MainActivity extends ReactActivity {
-
- /**
- * Returns the name of the main component registered from JavaScript. This is used to schedule
- * rendering of the component.
- */
- @Override
- protected String getMainComponentName() {
- return "Example";
- }
-
- /**
- * Returns the instance of the {@link ReactActivityDelegate}. Here we use a util class {@link
- * DefaultReactActivityDelegate} which allows you to easily enable Fabric and Concurrent React
- * (aka React 18) with two boolean flags.
- */
- @Override
- protected ReactActivityDelegate createReactActivityDelegate() {
- return new DefaultReactActivityDelegate(
- this,
- getMainComponentName(),
- // If you opted-in for the New Architecture, we enable the Fabric Renderer.
- DefaultNewArchitectureEntryPoint.getFabricEnabled());
- }
-}
diff --git a/Example/android/app/src/main/java/com/example/MainActivity.kt b/Example/android/app/src/main/java/com/example/MainActivity.kt
new file mode 100644
index 000000000..7e179d50a
--- /dev/null
+++ b/Example/android/app/src/main/java/com/example/MainActivity.kt
@@ -0,0 +1,22 @@
+package com.example
+
+import com.facebook.react.ReactActivity
+import com.facebook.react.ReactActivityDelegate
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
+import com.facebook.react.defaults.DefaultReactActivityDelegate
+
+class MainActivity : ReactActivity() {
+
+ /**
+ * Returns the name of the main component registered from JavaScript. This is used to schedule
+ * rendering of the component.
+ */
+ override fun getMainComponentName(): String = "Example"
+
+ /**
+ * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
+ * which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
+ */
+ override fun createReactActivityDelegate(): ReactActivityDelegate =
+ DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
+}
diff --git a/Example/android/app/src/main/java/com/example/MainApplication.java b/Example/android/app/src/main/java/com/example/MainApplication.java
deleted file mode 100644
index dd666be2b..000000000
--- a/Example/android/app/src/main/java/com/example/MainApplication.java
+++ /dev/null
@@ -1,62 +0,0 @@
-package com.example;
-
-import android.app.Application;
-import com.facebook.react.PackageList;
-import com.facebook.react.ReactApplication;
-import com.facebook.react.ReactNativeHost;
-import com.facebook.react.ReactPackage;
-import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint;
-import com.facebook.react.defaults.DefaultReactNativeHost;
-import com.facebook.soloader.SoLoader;
-import java.util.List;
-
-public class MainApplication extends Application implements ReactApplication {
-
- private final ReactNativeHost mReactNativeHost =
- new DefaultReactNativeHost(this) {
- @Override
- public boolean getUseDeveloperSupport() {
- return BuildConfig.DEBUG;
- }
-
- @Override
- protected List getPackages() {
- @SuppressWarnings("UnnecessaryLocalVariable")
- List packages = new PackageList(this).getPackages();
- // Packages that cannot be autolinked yet can be added manually here, for example:
- // packages.add(new MyReactNativePackage());
- return packages;
- }
-
- @Override
- protected String getJSMainModuleName() {
- return "index";
- }
-
- @Override
- protected boolean isNewArchEnabled() {
- return BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
- }
-
- @Override
- protected Boolean isHermesEnabled() {
- return BuildConfig.IS_HERMES_ENABLED;
- }
- };
-
- @Override
- public ReactNativeHost getReactNativeHost() {
- return mReactNativeHost;
- }
-
- @Override
- public void onCreate() {
- super.onCreate();
- SoLoader.init(this, /* native exopackage */ false);
- if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
- // If you opted-in for the New Architecture, we load the native entry point for this app.
- DefaultNewArchitectureEntryPoint.load();
- }
- ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
- }
-}
diff --git a/Example/android/app/src/main/java/com/example/MainApplication.kt b/Example/android/app/src/main/java/com/example/MainApplication.kt
new file mode 100644
index 000000000..4cbc80be7
--- /dev/null
+++ b/Example/android/app/src/main/java/com/example/MainApplication.kt
@@ -0,0 +1,45 @@
+package com.example
+
+import android.app.Application
+import com.facebook.react.PackageList
+import com.facebook.react.ReactApplication
+import com.facebook.react.ReactHost
+import com.facebook.react.ReactNativeHost
+import com.facebook.react.ReactPackage
+import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
+import com.facebook.react.defaults.DefaultReactHost.getDefaultReactHost
+import com.facebook.react.defaults.DefaultReactNativeHost
+import com.facebook.react.flipper.ReactNativeFlipper
+import com.facebook.soloader.SoLoader
+
+class MainApplication : Application(), ReactApplication {
+
+ override val reactNativeHost: ReactNativeHost =
+ object : DefaultReactNativeHost(this) {
+ override fun getPackages(): List {
+ // Packages that cannot be autolinked yet can be added manually here, for example:
+ // packages.add(new MyReactNativePackage());
+ return PackageList(this).packages
+ }
+
+ override fun getJSMainModuleName(): String = "index"
+
+ override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
+
+ override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
+ override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
+ }
+
+ override val reactHost: ReactHost
+ get() = getDefaultReactHost(this.applicationContext, reactNativeHost)
+
+ override fun onCreate() {
+ super.onCreate()
+ SoLoader.init(this, false)
+ if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
+ // If you opted-in for the New Architecture, we load the native entry point for this app.
+ load()
+ }
+ ReactNativeFlipper.initializeFlipper(this, reactNativeHost.reactInstanceManager)
+ }
+}
diff --git a/Example/android/app/src/release/java/com/example/ReactNativeFlipper.java b/Example/android/app/src/release/java/com/example/ReactNativeFlipper.java
deleted file mode 100644
index c63f23c11..000000000
--- a/Example/android/app/src/release/java/com/example/ReactNativeFlipper.java
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * Copyright (c) Meta Platforms, Inc. and affiliates.
- *
- * This source code is licensed under the MIT license found in the LICENSE file in the root
- * directory of this source tree.
- */
-package com.example;
-
-import android.content.Context;
-import com.facebook.react.ReactInstanceManager;
-
-/**
- * Class responsible of loading Flipper inside your React Native application. This is the release
- * flavor of it so it's empty as we don't want to load Flipper.
- */
-public class ReactNativeFlipper {
- public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) {
- // Do nothing as we don't want to initialize Flipper on Release.
- }
-}
diff --git a/Example/android/build.gradle b/Example/android/build.gradle
index 34ea71819..cb9d6232a 100644
--- a/Example/android/build.gradle
+++ b/Example/android/build.gradle
@@ -1,14 +1,11 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
buildscript {
ext {
- buildToolsVersion = "33.0.0"
+ buildToolsVersion = "34.0.0"
minSdkVersion = 21
- compileSdkVersion = 33
- targetSdkVersion = 33
-
- // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
- ndkVersion = "23.1.7779620"
+ compileSdkVersion = 34
+ targetSdkVersion = 34
+ ndkVersion = "25.1.8937393"
+ kotlinVersion = "1.8.0"
}
repositories {
google()
@@ -17,5 +14,8 @@ buildscript {
dependencies {
classpath("com.android.tools.build:gradle")
classpath("com.facebook.react:react-native-gradle-plugin")
+ classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
}
}
+
+apply plugin: "com.facebook.react.rootproject"
diff --git a/Example/android/gradle.properties b/Example/android/gradle.properties
index a3b2fa124..a46a5b90f 100644
--- a/Example/android/gradle.properties
+++ b/Example/android/gradle.properties
@@ -24,9 +24,6 @@ android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
-# Version of flipper SDK to use with React Native
-FLIPPER_VERSION=0.182.0
-
# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using
# ./gradlew -PreactNativeArchitectures=x86_64
diff --git a/Example/android/gradle/wrapper/gradle-wrapper.jar b/Example/android/gradle/wrapper/gradle-wrapper.jar
index 943f0cbfa..7f93135c4 100644
Binary files a/Example/android/gradle/wrapper/gradle-wrapper.jar and b/Example/android/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/Example/android/gradle/wrapper/gradle-wrapper.properties b/Example/android/gradle/wrapper/gradle-wrapper.properties
index 6ec1567a0..d11cdd907 100644
--- a/Example/android/gradle/wrapper/gradle-wrapper.properties
+++ b/Example/android/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.1-all.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
networkTimeout=10000
+validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
diff --git a/Example/android/gradlew b/Example/android/gradlew
index 65dcd68d6..0adc8e1a5 100755
--- a/Example/android/gradlew
+++ b/Example/android/gradlew
@@ -83,10 +83,8 @@ done
# This is normally unused
# shellcheck disable=SC2034
APP_BASE_NAME=${0##*/}
-APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
-
-# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
-DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
+APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
@@ -133,10 +131,13 @@ location of your Java installation."
fi
else
JAVACMD=java
- which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+ if ! command -v java >/dev/null 2>&1
+ then
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
+ fi
fi
# Increase the maximum file descriptors if we can.
@@ -144,7 +145,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC3045
+ # shellcheck disable=SC3045
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
@@ -152,7 +153,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
'' | soft) :;; #(
*)
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
- # shellcheck disable=SC3045
+ # shellcheck disable=SC3045
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
@@ -197,6 +198,10 @@ if "$cygwin" || "$msys" ; then
done
fi
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
diff --git a/Example/babel.config.js b/Example/babel.config.js
index a812bcfa7..950d3b2e2 100644
--- a/Example/babel.config.js
+++ b/Example/babel.config.js
@@ -1,5 +1,5 @@
module.exports = {
- presets: ['module:metro-react-native-babel-preset'],
+ presets: ['module:@react-native/babel-preset'],
plugins: [
'@babel/plugin-proposal-export-namespace-from',
'react-native-reanimated/plugin',
diff --git a/Example/ios/Example.xcodeproj/project.pbxproj b/Example/ios/Example.xcodeproj/project.pbxproj
index b3f91f182..4dfe614e1 100644
--- a/Example/ios/Example.xcodeproj/project.pbxproj
+++ b/Example/ios/Example.xcodeproj/project.pbxproj
@@ -177,7 +177,6 @@
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example" */;
buildPhases = (
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
- FD10A7F022414F080027D42C /* Start Packager */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
@@ -378,25 +377,6 @@
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-ExampleTests/Pods-Example-ExampleTests-resources.sh\"\n";
showEnvVarsInLog = 0;
};
- FD10A7F022414F080027D42C /* Start Packager */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Start Packager";
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
- showEnvVarsInLog = 0;
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
@@ -438,7 +418,7 @@
"$(inherited)",
);
INFOPLIST_FILE = ExampleTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -462,7 +442,7 @@
BUNDLE_LOADER = "$(TEST_HOST)";
COPY_PHASE_STRIP = NO;
INFOPLIST_FILE = ExampleTests/Info.plist;
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
@@ -536,7 +516,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -572,7 +552,6 @@
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
- _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
);
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -581,7 +560,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
"$(inherited)",
@@ -599,6 +578,7 @@
"-DFOLLY_NO_CONFIG",
"-DFOLLY_MOBILE=1",
"-DFOLLY_USE_LIBCPP=1",
+ "-DFOLLY_CFG_NO_COROUTINES=1",
);
OTHER_LDFLAGS = (
"$(inherited)",
@@ -607,6 +587,7 @@
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ USE_HERMES = true;
};
name = Debug;
};
@@ -615,7 +596,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -646,17 +627,13 @@
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = i386;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "$(inherited)",
- _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION,
- );
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.4;
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
LD_RUNPATH_SEARCH_PATHS = (
/usr/lib/swift,
"$(inherited)",
@@ -673,6 +650,7 @@
"-DFOLLY_NO_CONFIG",
"-DFOLLY_MOBILE=1",
"-DFOLLY_USE_LIBCPP=1",
+ "-DFOLLY_CFG_NO_COROUTINES=1",
);
OTHER_LDFLAGS = (
"$(inherited)",
@@ -681,6 +659,7 @@
);
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ USE_HERMES = true;
VALIDATE_PRODUCT = YES;
};
name = Release;
diff --git a/Example/ios/Example/AppDelegate.mm b/Example/ios/Example/AppDelegate.mm
index 9388f1da2..9146c7078 100644
--- a/Example/ios/Example/AppDelegate.mm
+++ b/Example/ios/Example/AppDelegate.mm
@@ -15,6 +15,11 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(
}
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
+{
+ return [self getBundleURL];
+}
+
+- (NSURL *)getBundleURL
{
#if DEBUG
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index"];
diff --git a/Example/ios/Example/Info.plist b/Example/ios/Example/Info.plist
index a82612f01..3a8503b5d 100644
--- a/Example/ios/Example/Info.plist
+++ b/Example/ios/Example/Info.plist
@@ -26,14 +26,10 @@
NSAppTransportSecurity
- NSExceptionDomains
-
- localhost
-
- NSExceptionAllowsInsecureHTTPLoads
-
-
-
+ NSAllowsArbitraryLoads
+
+ NSAllowsLocalNetworking
+
NSLocationWhenInUseUsageDescription
diff --git a/Example/ios/Podfile b/Example/ios/Podfile
index 37ee3423c..426e8acd5 100644
--- a/Example/ios/Podfile
+++ b/Example/ios/Podfile
@@ -28,14 +28,8 @@ end
target 'Example' do
config = use_native_modules!
- # Flags change depending on the env values.
- flags = get_default_flags()
-
use_react_native!(
:path => config[:reactNativePath],
- # Hermes is now enabled by default. Disable by setting this flag to false.
- :hermes_enabled => flags[:hermes_enabled],
- :fabric_enabled => flags[:fabric_enabled],
# Enables Flipper.
#
# Note that if you have use_frameworks! enabled, Flipper will not work and
@@ -57,6 +51,5 @@ target 'Example' do
config[:reactNativePath],
:mac_catalyst_enabled => false
)
- __apply_Xcode_12_5_M1_post_install_workaround(installer)
end
end
diff --git a/Example/ios/Podfile.lock b/Example/ios/Podfile.lock
index 3cfbd895d..1194e94f7 100644
--- a/Example/ios/Podfile.lock
+++ b/Example/ios/Podfile.lock
@@ -1,16 +1,16 @@
PODS:
- - boost (1.76.0)
+ - boost (1.83.0)
- CocoaAsyncSocket (7.6.5)
- DoubleConversion (1.1.6)
- - FBLazyVector (0.72.6)
- - FBReactNativeSpec (0.72.6):
- - RCT-Folly (= 2021.07.22.00)
- - RCTRequired (= 0.72.6)
- - RCTTypeSafety (= 0.72.6)
- - React-Core (= 0.72.6)
- - React-jsi (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - Flipper (0.182.0):
+ - FBLazyVector (0.73.1)
+ - FBReactNativeSpec (0.73.1):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTRequired (= 0.73.1)
+ - RCTTypeSafety (= 0.73.1)
+ - React-Core (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - ReactCommon/turbomodule/core (= 0.73.1)
+ - Flipper (0.201.0):
- Flipper-Folly (~> 2.6)
- Flipper-Boost-iOSX (1.76.0.1.11)
- Flipper-DoubleConversion (3.2.0.1)
@@ -24,94 +24,97 @@ PODS:
- OpenSSL-Universal (= 1.1.1100)
- Flipper-Glog (0.5.0.5)
- Flipper-PeerTalk (0.0.4)
- - FlipperKit (0.182.0):
- - FlipperKit/Core (= 0.182.0)
- - FlipperKit/Core (0.182.0):
- - Flipper (~> 0.182.0)
+ - FlipperKit (0.201.0):
+ - FlipperKit/Core (= 0.201.0)
+ - FlipperKit/Core (0.201.0):
+ - Flipper (~> 0.201.0)
- FlipperKit/CppBridge
- FlipperKit/FBCxxFollyDynamicConvert
- FlipperKit/FBDefines
- FlipperKit/FKPortForwarding
- SocketRocket (~> 0.6.0)
- - FlipperKit/CppBridge (0.182.0):
- - Flipper (~> 0.182.0)
- - FlipperKit/FBCxxFollyDynamicConvert (0.182.0):
+ - FlipperKit/CppBridge (0.201.0):
+ - Flipper (~> 0.201.0)
+ - FlipperKit/FBCxxFollyDynamicConvert (0.201.0):
- Flipper-Folly (~> 2.6)
- - FlipperKit/FBDefines (0.182.0)
- - FlipperKit/FKPortForwarding (0.182.0):
+ - FlipperKit/FBDefines (0.201.0)
+ - FlipperKit/FKPortForwarding (0.201.0):
- CocoaAsyncSocket (~> 7.6)
- Flipper-PeerTalk (~> 0.0.4)
- - FlipperKit/FlipperKitHighlightOverlay (0.182.0)
- - FlipperKit/FlipperKitLayoutHelpers (0.182.0):
+ - FlipperKit/FlipperKitHighlightOverlay (0.201.0)
+ - FlipperKit/FlipperKitLayoutHelpers (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitHighlightOverlay
- FlipperKit/FlipperKitLayoutTextSearchable
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.182.0):
+ - FlipperKit/FlipperKitLayoutIOSDescriptors (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitHighlightOverlay
- FlipperKit/FlipperKitLayoutHelpers
- - YogaKit (~> 1.18)
- - FlipperKit/FlipperKitLayoutPlugin (0.182.0):
+ - FlipperKit/FlipperKitLayoutPlugin (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitHighlightOverlay
- FlipperKit/FlipperKitLayoutHelpers
- FlipperKit/FlipperKitLayoutIOSDescriptors
- FlipperKit/FlipperKitLayoutTextSearchable
- - YogaKit (~> 1.18)
- - FlipperKit/FlipperKitLayoutTextSearchable (0.182.0)
- - FlipperKit/FlipperKitNetworkPlugin (0.182.0):
+ - FlipperKit/FlipperKitLayoutTextSearchable (0.201.0)
+ - FlipperKit/FlipperKitNetworkPlugin (0.201.0):
- FlipperKit/Core
- - FlipperKit/FlipperKitReactPlugin (0.182.0):
+ - FlipperKit/FlipperKitReactPlugin (0.201.0):
- FlipperKit/Core
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.182.0):
+ - FlipperKit/FlipperKitUserDefaultsPlugin (0.201.0):
- FlipperKit/Core
- - FlipperKit/SKIOSNetworkPlugin (0.182.0):
+ - FlipperKit/SKIOSNetworkPlugin (0.201.0):
- FlipperKit/Core
- FlipperKit/FlipperKitNetworkPlugin
- fmt (6.2.1)
- glog (0.3.5)
- - hermes-engine (0.72.6):
- - hermes-engine/Pre-built (= 0.72.6)
- - hermes-engine/Pre-built (0.72.6)
+ - hermes-engine (0.73.1):
+ - hermes-engine/Pre-built (= 0.73.1)
+ - hermes-engine/Pre-built (0.73.1)
- libevent (2.1.12)
- OpenSSL-Universal (1.1.1100)
- - RCT-Folly (2021.07.22.00):
+ - RCT-Folly (2022.05.16.00):
- boost
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- - RCT-Folly/Default (= 2021.07.22.00)
- - RCT-Folly/Default (2021.07.22.00):
+ - RCT-Folly/Default (= 2022.05.16.00)
+ - RCT-Folly/Default (2022.05.16.00):
- boost
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- - RCT-Folly/Futures (2021.07.22.00):
+ - RCT-Folly/Fabric (2022.05.16.00):
+ - boost
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Futures (2022.05.16.00):
- boost
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- libevent
- - RCTRequired (0.72.6)
- - RCTTypeSafety (0.72.6):
- - FBLazyVector (= 0.72.6)
- - RCTRequired (= 0.72.6)
- - React-Core (= 0.72.6)
- - React (0.72.6):
- - React-Core (= 0.72.6)
- - React-Core/DevSupport (= 0.72.6)
- - React-Core/RCTWebSocket (= 0.72.6)
- - React-RCTActionSheet (= 0.72.6)
- - React-RCTAnimation (= 0.72.6)
- - React-RCTBlob (= 0.72.6)
- - React-RCTImage (= 0.72.6)
- - React-RCTLinking (= 0.72.6)
- - React-RCTNetwork (= 0.72.6)
- - React-RCTSettings (= 0.72.6)
- - React-RCTText (= 0.72.6)
- - React-RCTVibration (= 0.72.6)
- - React-callinvoker (0.72.6)
- - React-Codegen (0.72.6):
+ - RCTRequired (0.73.1)
+ - RCTTypeSafety (0.73.1):
+ - FBLazyVector (= 0.73.1)
+ - RCTRequired (= 0.73.1)
+ - React-Core (= 0.73.1)
+ - React (0.73.1):
+ - React-Core (= 0.73.1)
+ - React-Core/DevSupport (= 0.73.1)
+ - React-Core/RCTWebSocket (= 0.73.1)
+ - React-RCTActionSheet (= 0.73.1)
+ - React-RCTAnimation (= 0.73.1)
+ - React-RCTBlob (= 0.73.1)
+ - React-RCTImage (= 0.73.1)
+ - React-RCTLinking (= 0.73.1)
+ - React-RCTNetwork (= 0.73.1)
+ - React-RCTSettings (= 0.73.1)
+ - React-RCTText (= 0.73.1)
+ - React-RCTVibration (= 0.73.1)
+ - React-callinvoker (0.73.1)
+ - React-Codegen (0.73.1):
- DoubleConversion
- FBReactNativeSpec
- glog
@@ -126,256 +129,824 @@ PODS:
- React-rncore
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-Core (0.72.6):
+ - React-Core (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.72.6)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.1)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/CoreModulesHeaders (0.72.6):
+ - React-Core/CoreModulesHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/Default (0.72.6):
+ - React-Core/Default (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/DevSupport (0.72.6):
+ - React-Core/DevSupport (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.72.6)
- - React-Core/RCTWebSocket (= 0.72.6)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.1)
+ - React-Core/RCTWebSocket (= 0.73.1)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- - React-jsinspector (= 0.72.6)
+ - React-jsinspector (= 0.73.1)
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTActionSheetHeaders (0.72.6):
+ - React-Core/RCTActionSheetHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTAnimationHeaders (0.72.6):
+ - React-Core/RCTAnimationHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTBlobHeaders (0.72.6):
+ - React-Core/RCTBlobHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTImageHeaders (0.72.6):
+ - React-Core/RCTImageHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTLinkingHeaders (0.72.6):
+ - React-Core/RCTLinkingHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTNetworkHeaders (0.72.6):
+ - React-Core/RCTNetworkHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTSettingsHeaders (0.72.6):
+ - React-Core/RCTSettingsHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTTextHeaders (0.72.6):
+ - React-Core/RCTTextHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTVibrationHeaders (0.72.6):
+ - React-Core/RCTVibrationHeaders (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-Core/RCTWebSocket (0.72.6):
+ - React-Core/RCTWebSocket (0.73.1):
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.72.6)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.1)
- React-cxxreact
- React-hermes
- React-jsi
- React-jsiexecutor
- React-perflogger
- - React-runtimeexecutor
+ - React-runtimescheduler
- React-utils
- SocketRocket (= 0.6.1)
- Yoga
- - React-CoreModules (0.72.6):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.6)
- - React-Codegen (= 0.72.6)
- - React-Core/CoreModulesHeaders (= 0.72.6)
- - React-jsi (= 0.72.6)
+ - React-CoreModules (0.73.1):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety (= 0.73.1)
+ - React-Codegen
+ - React-Core/CoreModulesHeaders (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - React-NativeModulesApple
- React-RCTBlob
- - React-RCTImage (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
+ - React-RCTImage (= 0.73.1)
+ - ReactCommon
- SocketRocket (= 0.6.1)
- - React-cxxreact (0.72.6):
- - boost (= 1.76.0)
+ - React-cxxreact (0.73.1):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.1)
+ - React-debug (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - React-jsinspector (= 0.73.1)
+ - React-logger (= 0.73.1)
+ - React-perflogger (= 0.73.1)
+ - React-runtimeexecutor (= 0.73.1)
+ - React-debug (0.73.1)
+ - React-Fabric (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/animations (= 0.73.1)
+ - React-Fabric/attributedstring (= 0.73.1)
+ - React-Fabric/componentregistry (= 0.73.1)
+ - React-Fabric/componentregistrynative (= 0.73.1)
+ - React-Fabric/components (= 0.73.1)
+ - React-Fabric/core (= 0.73.1)
+ - React-Fabric/imagemanager (= 0.73.1)
+ - React-Fabric/leakchecker (= 0.73.1)
+ - React-Fabric/mounting (= 0.73.1)
+ - React-Fabric/scheduler (= 0.73.1)
+ - React-Fabric/telemetry (= 0.73.1)
+ - React-Fabric/templateprocessor (= 0.73.1)
+ - React-Fabric/textlayoutmanager (= 0.73.1)
+ - React-Fabric/uimanager (= 0.73.1)
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/animations (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/attributedstring (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistry (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistrynative (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/components/inputaccessory (= 0.73.1)
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.73.1)
+ - React-Fabric/components/modal (= 0.73.1)
+ - React-Fabric/components/rncore (= 0.73.1)
+ - React-Fabric/components/root (= 0.73.1)
+ - React-Fabric/components/safeareaview (= 0.73.1)
+ - React-Fabric/components/scrollview (= 0.73.1)
+ - React-Fabric/components/text (= 0.73.1)
+ - React-Fabric/components/textinput (= 0.73.1)
+ - React-Fabric/components/unimplementedview (= 0.73.1)
+ - React-Fabric/components/view (= 0.73.1)
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/inputaccessory (0.73.1):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.72.6)
- - React-debug (= 0.72.6)
- - React-jsi (= 0.72.6)
- - React-jsinspector (= 0.72.6)
- - React-logger (= 0.72.6)
- - React-perflogger (= 0.72.6)
- - React-runtimeexecutor (= 0.72.6)
- - React-debug (0.72.6)
- - React-hermes (0.72.6):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/legacyviewmanagerinterop (0.73.1):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - RCT-Folly/Futures (= 2021.07.22.00)
- - React-cxxreact (= 0.72.6)
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
- React-jsi
- - React-jsiexecutor (= 0.72.6)
- - React-jsinspector (= 0.72.6)
- - React-perflogger (= 0.72.6)
- - React-jsi (0.72.6):
- - boost (= 1.76.0)
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/modal (0.73.1):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-jsiexecutor (0.72.6):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/rncore (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/root (0.73.1):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-cxxreact (= 0.72.6)
- - React-jsi (= 0.72.6)
- - React-perflogger (= 0.72.6)
- - React-jsinspector (0.72.6)
- - React-logger (0.72.6):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/safeareaview (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/scrollview (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/text (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/textinput (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/unimplementedview (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/view (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric/core (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/imagemanager (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/leakchecker (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/mounting (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/scheduler (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/telemetry (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/templateprocessor (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/textlayoutmanager (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/uimanager
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-FabricImage (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired (= 0.73.1)
+ - RCTTypeSafety (= 0.73.1)
+ - React-Fabric
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-jsiexecutor (= 0.73.1)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - Yoga
+ - React-graphics (0.73.1):
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.1)
+ - React-utils
+ - React-hermes (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - RCT-Folly/Futures (= 2022.05.16.00)
+ - React-cxxreact (= 0.73.1)
+ - React-jsi
+ - React-jsiexecutor (= 0.73.1)
+ - React-jsinspector (= 0.73.1)
+ - React-perflogger (= 0.73.1)
+ - React-ImageManager (0.73.1):
+ - glog
+ - RCT-Folly/Fabric
+ - React-Core/Default
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - React-jserrorhandler (0.73.1):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-debug
+ - React-jsi
+ - React-Mapbuffer
+ - React-jsi (0.73.1):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-jsiexecutor (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-cxxreact (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - React-perflogger (= 0.73.1)
+ - React-jsinspector (0.73.1)
+ - React-logger (0.73.1):
+ - glog
+ - React-Mapbuffer (0.73.1):
+ - glog
+ - React-debug
+ - React-nativeconfig (0.73.1)
+ - React-NativeModulesApple (0.73.1):
- glog
- - React-NativeModulesApple (0.72.6):
- hermes-engine
- React-callinvoker
- React-Core
@@ -384,173 +955,203 @@ PODS:
- React-runtimeexecutor
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-perflogger (0.72.6)
- - React-RCTActionSheet (0.72.6):
- - React-Core/RCTActionSheetHeaders (= 0.72.6)
- - React-RCTAnimation (0.72.6):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.6)
- - React-Codegen (= 0.72.6)
- - React-Core/RCTAnimationHeaders (= 0.72.6)
- - React-jsi (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - React-RCTAppDelegate (0.72.6):
+ - React-perflogger (0.73.1)
+ - React-RCTActionSheet (0.73.1):
+ - React-Core/RCTActionSheetHeaders (= 0.73.1)
+ - React-RCTAnimation (0.73.1):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTAnimationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTAppDelegate (0.73.1):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Core
- React-CoreModules
- React-hermes
+ - React-nativeconfig
- React-NativeModulesApple
+ - React-RCTFabric
- React-RCTImage
- React-RCTNetwork
- React-runtimescheduler
- - ReactCommon/turbomodule/core
- - React-RCTBlob (0.72.6):
- - hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.72.6)
- - React-Core/RCTBlobHeaders (= 0.72.6)
- - React-Core/RCTWebSocket (= 0.72.6)
- - React-jsi (= 0.72.6)
- - React-RCTNetwork (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - React-RCTImage (0.72.6):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.6)
- - React-Codegen (= 0.72.6)
- - React-Core/RCTImageHeaders (= 0.72.6)
- - React-jsi (= 0.72.6)
- - React-RCTNetwork (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - React-RCTLinking (0.72.6):
- - React-Codegen (= 0.72.6)
- - React-Core/RCTLinkingHeaders (= 0.72.6)
- - React-jsi (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - React-RCTNetwork (0.72.6):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.6)
- - React-Codegen (= 0.72.6)
- - React-Core/RCTNetworkHeaders (= 0.72.6)
- - React-jsi (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - React-RCTSettings (0.72.6):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.72.6)
- - React-Codegen (= 0.72.6)
- - React-Core/RCTSettingsHeaders (= 0.72.6)
- - React-jsi (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - React-RCTText (0.72.6):
- - React-Core/RCTTextHeaders (= 0.72.6)
- - React-RCTVibration (0.72.6):
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.72.6)
- - React-Core/RCTVibrationHeaders (= 0.72.6)
- - React-jsi (= 0.72.6)
- - ReactCommon/turbomodule/core (= 0.72.6)
- - React-rncore (0.72.6)
- - React-runtimeexecutor (0.72.6):
- - React-jsi (= 0.72.6)
- - React-runtimescheduler (0.72.6):
- - glog
- - hermes-engine
- - RCT-Folly (= 2021.07.22.00)
+ - ReactCommon
+ - React-RCTBlob (0.73.1):
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Codegen
+ - React-Core/RCTBlobHeaders
+ - React-Core/RCTWebSocket
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTFabric (0.73.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-graphics
+ - React-ImageManager
+ - React-jsi
+ - React-nativeconfig
+ - React-RCTImage
+ - React-RCTText
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - Yoga
+ - React-RCTImage (0.73.1):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTImageHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTLinking (0.73.1):
+ - React-Codegen
+ - React-Core/RCTLinkingHeaders (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - React-NativeModulesApple
+ - ReactCommon
+ - ReactCommon/turbomodule/core (= 0.73.1)
+ - React-RCTNetwork (0.73.1):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTNetworkHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTSettings (0.73.1):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTSettingsHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTText (0.73.1):
+ - React-Core/RCTTextHeaders (= 0.73.1)
+ - Yoga
+ - React-RCTVibration (0.73.1):
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Codegen
+ - React-Core/RCTVibrationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-rendererdebug (0.73.1):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-debug
+ - React-rncore (0.73.1)
+ - React-runtimeexecutor (0.73.1):
+ - React-jsi (= 0.73.1)
+ - React-runtimescheduler (0.73.1):
+ - glog
+ - hermes-engine
+ - RCT-Folly (= 2022.05.16.00)
- React-callinvoker
+ - React-cxxreact
- React-debug
- React-jsi
+ - React-rendererdebug
- React-runtimeexecutor
- - React-utils (0.72.6):
+ - React-utils
+ - React-utils (0.73.1):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-debug
- - ReactCommon/turbomodule/bridging (0.72.6):
+ - ReactCommon (0.73.1):
+ - React-logger (= 0.73.1)
+ - ReactCommon/turbomodule (= 0.73.1)
+ - ReactCommon/turbomodule (0.73.1):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.72.6)
- - React-cxxreact (= 0.72.6)
- - React-jsi (= 0.72.6)
- - React-logger (= 0.72.6)
- - React-perflogger (= 0.72.6)
- - ReactCommon/turbomodule/core (0.72.6):
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.1)
+ - React-cxxreact (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - React-logger (= 0.73.1)
+ - React-perflogger (= 0.73.1)
+ - ReactCommon/turbomodule/bridging (= 0.73.1)
+ - ReactCommon/turbomodule/core (= 0.73.1)
+ - ReactCommon/turbomodule/bridging (0.73.1):
- DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.72.6)
- - React-cxxreact (= 0.72.6)
- - React-jsi (= 0.72.6)
- - React-logger (= 0.72.6)
- - React-perflogger (= 0.72.6)
- - RNReanimated (3.5.0-nightly-20230822-8ef27c219):
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.1)
+ - React-cxxreact (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - React-logger (= 0.73.1)
+ - React-perflogger (= 0.73.1)
+ - ReactCommon/turbomodule/core (0.73.1):
- DoubleConversion
- - FBLazyVector
+ - fmt (~> 6.2.1)
- glog
- hermes-engine
- - RCT-Folly
- - RCTRequired
- - RCTTypeSafety
- - React-callinvoker
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.1)
+ - React-cxxreact (= 0.73.1)
+ - React-jsi (= 0.73.1)
+ - React-logger (= 0.73.1)
+ - React-perflogger (= 0.73.1)
+ - RNReanimated (3.6.1):
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
- React-Core
- - React-Core/DevSupport
- - React-Core/RCTWebSocket
- - React-CoreModules
- - React-cxxreact
- - React-hermes
- - React-jsi
- - React-jsiexecutor
- - React-jsinspector
- - React-RCTActionSheet
- - React-RCTAnimation
- - React-RCTAppDelegate
- - React-RCTBlob
- - React-RCTImage
- - React-RCTLinking
- - React-RCTNetwork
- - React-RCTSettings
- - React-RCTText
- ReactCommon/turbomodule/core
- - Yoga
- - RNSVG (13.14.0):
+ - RNSVG (14.1.0):
- React-Core
- SocketRocket (0.6.1)
- Yoga (1.14.0)
- - YogaKit (1.18.1):
- - Yoga (~> 1.14)
DEPENDENCIES:
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
- 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/React/FBReactNativeSpec`)
- - Flipper (= 0.182.0)
+ - Flipper (= 0.201.0)
- Flipper-Boost-iOSX (= 1.76.0.1.11)
- Flipper-DoubleConversion (= 3.2.0.1)
- Flipper-Fmt (= 7.1.7)
- Flipper-Folly (= 2.6.10)
- Flipper-Glog (= 0.5.0.5)
- Flipper-PeerTalk (= 0.0.4)
- - FlipperKit (= 0.182.0)
- - FlipperKit/Core (= 0.182.0)
- - FlipperKit/CppBridge (= 0.182.0)
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.182.0)
- - FlipperKit/FBDefines (= 0.182.0)
- - FlipperKit/FKPortForwarding (= 0.182.0)
- - FlipperKit/FlipperKitHighlightOverlay (= 0.182.0)
- - FlipperKit/FlipperKitLayoutPlugin (= 0.182.0)
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.182.0)
- - FlipperKit/FlipperKitNetworkPlugin (= 0.182.0)
- - FlipperKit/FlipperKitReactPlugin (= 0.182.0)
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0)
- - FlipperKit/SKIOSNetworkPlugin (= 0.182.0)
+ - FlipperKit (= 0.201.0)
+ - FlipperKit/Core (= 0.201.0)
+ - FlipperKit/CppBridge (= 0.201.0)
+ - FlipperKit/FBCxxFollyDynamicConvert (= 0.201.0)
+ - FlipperKit/FBDefines (= 0.201.0)
+ - FlipperKit/FKPortForwarding (= 0.201.0)
+ - FlipperKit/FlipperKitHighlightOverlay (= 0.201.0)
+ - FlipperKit/FlipperKitLayoutPlugin (= 0.201.0)
+ - FlipperKit/FlipperKitLayoutTextSearchable (= 0.201.0)
+ - FlipperKit/FlipperKitNetworkPlugin (= 0.201.0)
+ - FlipperKit/FlipperKitReactPlugin (= 0.201.0)
+ - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.201.0)
+ - FlipperKit/SKIOSNetworkPlugin (= 0.201.0)
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- libevent (~> 2.1.12)
- OpenSSL-Universal (= 1.1.1100)
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
+ - RCT-Folly/Fabric (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
- React (from `../node_modules/react-native/`)
@@ -562,23 +1163,32 @@ DEPENDENCIES:
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
+ - React-Fabric (from `../node_modules/react-native/ReactCommon`)
+ - React-FabricImage (from `../node_modules/react-native/ReactCommon`)
+ - React-graphics (from `../node_modules/react-native/ReactCommon/react/renderer/graphics`)
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
+ - React-ImageManager (from `../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios`)
+ - React-jserrorhandler (from `../node_modules/react-native/ReactCommon/jserrorhandler`)
- 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-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector-modern`)
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
+ - React-Mapbuffer (from `../node_modules/react-native/ReactCommon`)
+ - React-nativeconfig (from `../node_modules/react-native/ReactCommon`)
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
+ - React-RCTFabric (from `../node_modules/react-native/React`)
- 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`)
+ - React-rendererdebug (from `../node_modules/react-native/ReactCommon/react/renderer/debug`)
- React-rncore (from `../node_modules/react-native/ReactCommon`)
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
@@ -603,7 +1213,6 @@ SPEC REPOS:
- libevent
- OpenSSL-Universal
- SocketRocket
- - YogaKit
EXTERNAL SOURCES:
boost:
@@ -618,7 +1227,7 @@ EXTERNAL SOURCES:
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
hermes-engine:
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
- :tag: hermes-2023-08-07-RNv0.72.4-813b2def12bc9df02654b3e3653ae4a68d0572e0
+ :tag: hermes-2023-11-17-RNv0.73.0-21043a3fc062be445e56a2c10ecd8be028dd9cc5
RCT-Folly:
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
RCTRequired:
@@ -639,16 +1248,30 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/cxxreact"
React-debug:
:path: "../node_modules/react-native/ReactCommon/react/debug"
+ React-Fabric:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-FabricImage:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-graphics:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/graphics"
React-hermes:
:path: "../node_modules/react-native/ReactCommon/hermes"
+ React-ImageManager:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/imagemanager/platform/ios"
+ React-jserrorhandler:
+ :path: "../node_modules/react-native/ReactCommon/jserrorhandler"
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"
+ :path: "../node_modules/react-native/ReactCommon/jsinspector-modern"
React-logger:
:path: "../node_modules/react-native/ReactCommon/logger"
+ React-Mapbuffer:
+ :path: "../node_modules/react-native/ReactCommon"
+ React-nativeconfig:
+ :path: "../node_modules/react-native/ReactCommon"
React-NativeModulesApple:
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
@@ -661,6 +1284,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/AppDelegate"
React-RCTBlob:
:path: "../node_modules/react-native/Libraries/Blob"
+ React-RCTFabric:
+ :path: "../node_modules/react-native/React"
React-RCTImage:
:path: "../node_modules/react-native/Libraries/Image"
React-RCTLinking:
@@ -673,6 +1298,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/Libraries/Text"
React-RCTVibration:
:path: "../node_modules/react-native/Libraries/Vibration"
+ React-rendererdebug:
+ :path: "../node_modules/react-native/ReactCommon/react/renderer/debug"
React-rncore:
:path: "../node_modules/react-native/ReactCommon"
React-runtimeexecutor:
@@ -691,62 +1318,70 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"
SPEC CHECKSUMS:
- boost: 57d2868c099736d80fcd648bf211b4431e51a558
+ boost: 26fad476bfa736552bbfa698a06cc530475c1505
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
- DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
- FBLazyVector: 748c0ef74f2bf4b36cfcccf37916806940a64c32
- FBReactNativeSpec: 966f29e4e697de53a3b366355e8f57375c856ad9
- Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818
+ DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
+ FBLazyVector: 2296bacb2fa157a43991048b0a9d71c1c8b65083
+ FBReactNativeSpec: df0ebe69acd14ce0be0269cf75b6e338a727259b
+ Flipper: c7a0093234c4bdd456e363f2f19b2e4b27652d44
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
- FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6
+ FlipperKit: 37525a5d056ef9b93d1578e04bc3ea1de940094f
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
- glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
- hermes-engine: 8057e75cfc1437b178ac86c8654b24e7fead7f60
+ glog: c5d68082e772fa1c511173d6b30a9de2c05a69a2
+ hermes-engine: 34df9d5034e90bd9bf1505e1ca198760373935af
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
- RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
- RCTRequired: 28469809442eb4eb5528462705f7d852948c8a74
- RCTTypeSafety: e9c6c409fca2cc584e5b086862d562540cb38d29
- React: 769f469909b18edfe934f0539fffb319c4c61043
- React-callinvoker: e48ce12c83706401251921896576710d81e54763
- React-Codegen: a136b8094d39fd071994eaa935366e6be2239cb1
- React-Core: e548a186fb01c3a78a9aeeffa212d625ca9511bf
- React-CoreModules: d226b22d06ea1bc4e49d3c073b2c6cbb42265405
- React-cxxreact: 44a3560510ead6633b6e02f9fbbdd1772fb40f92
- React-debug: 238501490155574ae9f3f8dd1c74330eba30133e
- React-hermes: 46e66dc854124d7645c20bfec0a6be9542826ecd
- React-jsi: fbdaf4166bae60524b591b18c851b530c8cdb90c
- React-jsiexecutor: 3bf18ff7cb03cd8dfdce08fbbc0d15058c1d71ae
- React-jsinspector: 194e32c6aab382d88713ad3dd0025c5f5c4ee072
- React-logger: cebf22b6cf43434e471dc561e5911b40ac01d289
- React-NativeModulesApple: 02e35e9a51e10c6422f04f5e4076a7c02243fff2
- React-perflogger: e3596db7e753f51766bceadc061936ef1472edc3
- React-RCTActionSheet: 17ab132c748b4471012abbcdcf5befe860660485
- React-RCTAnimation: c8bbaab62be5817d2a31c36d5f2571e3f7dcf099
- React-RCTAppDelegate: af1c7dace233deba4b933cd1d6491fe4e3584ad1
- React-RCTBlob: 1bcf3a0341eb8d6950009b1ddb8aefaf46996b8c
- React-RCTImage: 670a3486b532292649b1aef3ffddd0b495a5cee4
- React-RCTLinking: bd7ab853144aed463903237e615fd91d11b4f659
- React-RCTNetwork: be86a621f3e4724758f23ad1fdce32474ab3d829
- React-RCTSettings: 4f3a29a6d23ffa639db9701bc29af43f30781058
- React-RCTText: adde32164a243103aaba0b1dc7b0a2599733873e
- React-RCTVibration: 6bd85328388ac2e82ae0ca11afe48ad5555b483a
- React-rncore: fda7b1ae5918fa7baa259105298a5487875a57c8
- React-runtimeexecutor: 57d85d942862b08f6d15441a0badff2542fd233c
- React-runtimescheduler: f23e337008403341177fc52ee4ca94e442c17ede
- React-utils: fa59c9a3375fb6f4aeb66714fd3f7f76b43a9f16
- ReactCommon: dd03c17275c200496f346af93a7b94c53f3093a4
- RNReanimated: c8c9d8f36908aa7a2997c0b87d0205a336e90186
- RNSVG: d00c8f91c3cbf6d476451313a18f04d220d4f396
+ RCT-Folly: 7169b2b1c44399c76a47b5deaaba715eeeb476c0
+ RCTRequired: 6dda55e483f75d2b43781d8ad5bd7df276a50981
+ RCTTypeSafety: df0f2632f4e89938b9b9f6152b5e6c66fc6e969e
+ React: 5373769b4a544945831d9c5d455212186d68f763
+ React-callinvoker: 2c54fb73b27fdf9bd7772f36dcda23d76e0e7d14
+ React-Codegen: 65b426d1c3185df0e1d901ff56a23d94e1974791
+ React-Core: f0e1e99728ebdb785286b0c4c55f0f923a9d826f
+ React-CoreModules: 1ee65dbd93429c1c6ec3de069d75f5fde05db5d5
+ React-cxxreact: dc0f1968914a6c7da62b1287c1eb84dd3ab0a7bb
+ React-debug: 52cced4b9e280d03825d687925898cf65bd8712d
+ React-Fabric: 1805f148aedab4bf31c48c8c3bae6045aeb75275
+ React-FabricImage: ee5ee9abe4ab05043fdce515e46f396b025a5028
+ React-graphics: a1652cbea6f779a1cf2692987d9c94efcd6e4497
+ React-hermes: 12499684a1005213e7ed71a94467ef72cf24320c
+ React-ImageManager: 5e50ba59059ca7547c8968f936e4ae7a50ff7384
+ React-jserrorhandler: 27154e650959506a4455384f3aea134eba62335b
+ React-jsi: b03ac7f7af1371e3e81e8ac894af4e46454dee79
+ React-jsiexecutor: ae30693413a40b7c72f25da2e794997754a780bf
+ React-jsinspector: 369048694e39942063c5d08e9580b43e2edd379a
+ React-logger: e0c1e918d9588a9f39c9bc62d9d6bfe9ca238d9d
+ React-Mapbuffer: 9731a0a63ebaf8976014623c4d637744d7353a7c
+ React-nativeconfig: 37aecd26d64b79327c3f10e43b2e9a6c425e0a60
+ React-NativeModulesApple: 9ca6d2eaa1dd5606588262195b46d0774bdec83a
+ React-perflogger: 5ffc4d6ccb74eaac7b8b2867e58a447232483d6d
+ React-RCTActionSheet: eca2174431ff2cc14b7fb847f92b89e081d27541
+ React-RCTAnimation: a039b2416aa0a55e6fa7c8cd0a2e870bfffc4caa
+ React-RCTAppDelegate: be26c542774d36211b1562a9278c72f821887103
+ React-RCTBlob: 0d4892d25e57fbbce13e221fff7e4c9567a2ace3
+ React-RCTFabric: d11187cac1f4e0141738805f7011145c7786a369
+ React-RCTImage: 5b70891cb2adb75bbdc5ad8e6cc56c48e95d90e5
+ React-RCTLinking: 5fe4756ab016e9f200e93e771bd6e43ea05f8f50
+ React-RCTNetwork: 877b4a85f71c63cf719574f187e3333c1e15a425
+ React-RCTSettings: ae477a33a04389f5d42486004b09b04eeba64fd5
+ React-RCTText: 08dd5d7173ed279d3468b333217afb22bb7948c3
+ React-RCTVibration: 2f906cd58dfd44ff5e4ca4fc0edd8740dceda6be
+ React-rendererdebug: e3db5db14234d9ee46d2e58fff3b8652ee7da6bc
+ React-rncore: d1aa3c2f01b22a53bc10ff2775e6ddcd43fc71a2
+ React-runtimeexecutor: d87e84455640dc5685e87563c2eaef90e5df8752
+ React-runtimescheduler: 93a4c84e46a85c3fc9678abd4f6923b785226ea7
+ React-utils: debda2c206770ee2785bdebb7f16d8db9f18838a
+ ReactCommon: ddb128564dcbfa0287d3d1a2d10f8c7457c971f6
+ RNReanimated: 57f436e7aa3d277fbfed05e003230b43428157c0
+ RNSVG: 4ddf4baa2fdd87abd32e5fdd2c5e10522c97b204
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
- Yoga: b76f1acfda8212aa16b7e26bcce3983230c82603
- YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
+ Yoga: 4f53dc50008d626fa679c7a1cb4bed898f8c0bde
-PODFILE CHECKSUM: 90be020bf55058ddd450ae593af00b72ed3379ce
+PODFILE CHECKSUM: 5506db2064b9bbcf95b89a76274d9998b06e711d
-COCOAPODS: 1.11.3
+COCOAPODS: 1.14.3
diff --git a/Example/macos/Example.xcodeproj/project.pbxproj b/Example/macos/Example.xcodeproj/project.pbxproj
index 39b1efc4d..210e28a2a 100644
--- a/Example/macos/Example.xcodeproj/project.pbxproj
+++ b/Example/macos/Example.xcodeproj/project.pbxproj
@@ -11,12 +11,12 @@
514201522437B4B40078DB4F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 514201512437B4B40078DB4F /* Assets.xcassets */; };
514201552437B4B40078DB4F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 514201532437B4B40078DB4F /* Main.storyboard */; };
514201582437B4B40078DB4F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 514201572437B4B40078DB4F /* main.m */; };
- D26D21973A74AD2932A10E03 /* libPods-Example-macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B3A8B869519AD65B4E8A654 /* libPods-Example-macOS.a */; };
+ 6818E5A24CC0CF58EC3256A3 /* libPods-Example-macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 330D44B35EDF351630DB2ECE /* libPods-Example-macOS.a */; };
/* End PBXBuildFile section */
/* Begin PBXFileReference section */
- 0A2FC2603533C7576E54F6F7 /* Pods-Example-macOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-macOS.debug.xcconfig"; path = "Target Support Files/Pods-Example-macOS/Pods-Example-macOS.debug.xcconfig"; sourceTree = ""; };
13B07F961A680F5B00A75B9A /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
+ 330D44B35EDF351630DB2ECE /* libPods-Example-macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
514201492437B4B30078DB4F /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; };
5142014B2437B4B30078DB4F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; };
5142014C2437B4B30078DB4F /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = ""; };
@@ -25,9 +25,9 @@
514201562437B4B40078DB4F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
514201572437B4B40078DB4F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; };
514201592437B4B40078DB4F /* Example.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Example.entitlements; sourceTree = ""; };
- 5B3A8B869519AD65B4E8A654 /* libPods-Example-macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- E500D1CD19D608256625B9AB /* Pods-Example-macOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-macOS.release.xcconfig"; path = "Target Support Files/Pods-Example-macOS/Pods-Example-macOS.release.xcconfig"; sourceTree = ""; };
+ D4410625A876B248A718A7A7 /* Pods-Example-macOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-macOS.debug.xcconfig"; path = "Target Support Files/Pods-Example-macOS/Pods-Example-macOS.debug.xcconfig"; sourceTree = ""; };
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
+ F0294765B23A4163DF68F558 /* Pods-Example-macOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example-macOS.release.xcconfig"; path = "Target Support Files/Pods-Example-macOS/Pods-Example-macOS.release.xcconfig"; sourceTree = ""; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
@@ -42,18 +42,28 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- D26D21973A74AD2932A10E03 /* libPods-Example-macOS.a in Frameworks */,
+ 6818E5A24CC0CF58EC3256A3 /* libPods-Example-macOS.a in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
+ 244040DE0868E16761097ABC /* Pods */ = {
+ isa = PBXGroup;
+ children = (
+ D4410625A876B248A718A7A7 /* Pods-Example-macOS.debug.xcconfig */,
+ F0294765B23A4163DF68F558 /* Pods-Example-macOS.release.xcconfig */,
+ );
+ name = Pods;
+ path = Pods;
+ sourceTree = "";
+ };
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
isa = PBXGroup;
children = (
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
- 5B3A8B869519AD65B4E8A654 /* libPods-Example-macOS.a */,
+ 330D44B35EDF351630DB2ECE /* libPods-Example-macOS.a */,
);
name = Frameworks;
sourceTree = "";
@@ -72,16 +82,6 @@
path = "Example-macOS";
sourceTree = "";
};
- 6E877EF5A3C5AA66CC38FAF7 /* Pods */ = {
- isa = PBXGroup;
- children = (
- 0A2FC2603533C7576E54F6F7 /* Pods-Example-macOS.debug.xcconfig */,
- E500D1CD19D608256625B9AB /* Pods-Example-macOS.release.xcconfig */,
- );
- name = Pods;
- path = Pods;
- sourceTree = "";
- };
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
isa = PBXGroup;
children = (
@@ -96,7 +96,7 @@
832341AE1AAA6A7D00B99B32 /* Libraries */,
83CBBA001A601CBA00E9B192 /* Products */,
2D16E6871FA4F8E400B85C8A /* Frameworks */,
- 6E877EF5A3C5AA66CC38FAF7 /* Pods */,
+ 244040DE0868E16761097ABC /* Pods */,
);
indentWidth = 2;
sourceTree = "";
@@ -119,7 +119,6 @@
isa = PBXNativeTarget;
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "Example-iOS" */;
buildPhases = (
- FD10A7F022414F080027D42C /* Start Packager */,
13B07F871A680F5B00A75B9A /* Sources */,
13B07F8C1A680F5B00A75B9A /* Frameworks */,
13B07F8E1A680F5B00A75B9A /* Resources */,
@@ -139,12 +138,11 @@
buildConfigurationList = 5142015A2437B4B40078DB4F /* Build configuration list for PBXNativeTarget "Example-macOS" */;
buildPhases = (
1A938104A937498D81B3BD3B /* [CP] Check Pods Manifest.lock */,
- 381D8A6F24576A6C00465D17 /* Start Packager */,
514201452437B4B30078DB4F /* Sources */,
514201462437B4B30078DB4F /* Frameworks */,
514201472437B4B30078DB4F /* Resources */,
381D8A6E24576A4E00465D17 /* Bundle React Native code and images */,
- 847973068F575633C249CEB3 /* [CP] Copy Pods Resources */,
+ 59A544F8345F6A51E4073FBA /* [CP] Copy Pods Resources */,
);
buildRules = (
);
@@ -265,61 +263,24 @@
shellPath = /bin/sh;
shellScript = "export NODE_BINARY=node\n../node_modules/react-native-macos/scripts/react-native-xcode.sh\n";
};
- 381D8A6F24576A6C00465D17 /* Start Packager */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Start Packager";
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native-macos/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native-macos/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
- };
- 847973068F575633C249CEB3 /* [CP] Copy Pods Resources */ = {
+ 59A544F8345F6A51E4073FBA /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Example-macOS/Pods-Example-macOS-resources.sh",
- "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
);
name = "[CP] Copy Pods Resources";
outputPaths = (
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example-macOS/Pods-Example-macOS-resources.sh\"\n";
showEnvVarsInLog = 0;
};
- FD10A7F022414F080027D42C /* Start Packager */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- );
- name = "Start Packager";
- outputFileListPaths = (
- );
- outputPaths = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native-macos/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native-macos/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
- showEnvVarsInLog = 0;
- };
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
@@ -397,7 +358,7 @@
};
5142015B2437B4B40078DB4F /* Debug */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = 0A2FC2603533C7576E54F6F7 /* Pods-Example-macOS.debug.xcconfig */;
+ baseConfigurationReference = D4410625A876B248A718A7A7 /* Pods-Example-macOS.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CURRENT_PROJECT_VERSION = 1;
@@ -418,7 +379,7 @@
};
5142015C2437B4B40078DB4F /* Release */ = {
isa = XCBuildConfiguration;
- baseConfigurationReference = E500D1CD19D608256625B9AB /* Pods-Example-macOS.release.xcconfig */;
+ baseConfigurationReference = F0294765B23A4163DF68F558 /* Pods-Example-macOS.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CURRENT_PROJECT_VERSION = 1;
@@ -441,7 +402,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -468,7 +429,6 @@
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
@@ -493,8 +453,16 @@
);
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
+ OTHER_CFLAGS = "$(inherited)";
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-Wl",
+ "-ld_classic",
+ );
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ USE_HERMES = false;
};
name = Debug;
};
@@ -503,7 +471,7 @@
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
- CLANG_CXX_LANGUAGE_STANDARD = "c++17";
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
@@ -530,7 +498,6 @@
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
- "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
@@ -547,8 +514,16 @@
"\"$(inherited)\"",
);
MTL_ENABLE_DEBUG_INFO = NO;
+ OTHER_CFLAGS = "$(inherited)";
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
+ OTHER_LDFLAGS = (
+ "$(inherited)",
+ "-Wl",
+ "-ld_classic",
+ );
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
SDKROOT = iphoneos;
+ USE_HERMES = false;
VALIDATE_PRODUCT = YES;
};
name = Release;
diff --git a/Example/macos/Podfile b/Example/macos/Podfile
index cbf87e233..61190ca93 100644
--- a/Example/macos/Podfile
+++ b/Example/macos/Podfile
@@ -22,6 +22,5 @@ target 'Example-macOS' do
post_install do |installer|
react_native_post_install(installer)
- __apply_Xcode_12_5_M1_post_install_workaround(installer)
end
end
diff --git a/Example/macos/Podfile.lock b/Example/macos/Podfile.lock
index 73702d07c..162fa8a7a 100644
--- a/Example/macos/Podfile.lock
+++ b/Example/macos/Podfile.lock
@@ -1,48 +1,55 @@
PODS:
- - boost (1.76.0)
+ - boost (1.83.0)
- DoubleConversion (1.1.6)
- - FBLazyVector (0.71.33)
- - FBReactNativeSpec (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - RCTRequired (= 0.71.33)
- - RCTTypeSafety (= 0.71.33)
- - React-Core (= 0.71.33)
- - React-jsi (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
+ - FBLazyVector (0.73.2)
+ - FBReactNativeSpec (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTRequired (= 0.73.2)
+ - RCTTypeSafety (= 0.73.2)
+ - React-Core (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - ReactCommon/turbomodule/core (= 0.73.2)
- fmt (6.2.1)
- glog (0.3.5)
- - RCT-Folly (2021.07.22.00):
+ - RCT-Folly (2022.05.16.00):
- boost
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- - RCT-Folly/Default (= 2021.07.22.00)
- - RCT-Folly/Default (2021.07.22.00):
+ - RCT-Folly/Default (= 2022.05.16.00)
+ - RCT-Folly/Default (2022.05.16.00):
- boost
- DoubleConversion
- fmt (~> 6.2.1)
- glog
- - RCTRequired (0.71.33)
- - RCTTypeSafety (0.71.33):
- - FBLazyVector (= 0.71.33)
- - RCTRequired (= 0.71.33)
- - React-Core (= 0.71.33)
- - React (0.71.33):
- - React-Core (= 0.71.33)
- - React-Core/DevSupport (= 0.71.33)
- - React-Core/RCTWebSocket (= 0.71.33)
- - React-RCTActionSheet (= 0.71.33)
- - React-RCTAnimation (= 0.71.33)
- - React-RCTBlob (= 0.71.33)
- - React-RCTImage (= 0.71.33)
- - React-RCTLinking (= 0.71.33)
- - React-RCTNetwork (= 0.71.33)
- - React-RCTSettings (= 0.71.33)
- - React-RCTText (= 0.71.33)
- - React-RCTVibration (= 0.71.33)
- - React-callinvoker (0.71.33)
- - React-Codegen (0.71.33):
+ - RCT-Folly/Fabric (2022.05.16.00):
+ - boost
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCTRequired (0.73.2)
+ - RCTTypeSafety (0.73.2):
+ - FBLazyVector (= 0.73.2)
+ - RCTRequired (= 0.73.2)
+ - React-Core (= 0.73.2)
+ - React (0.73.2):
+ - React-Core (= 0.73.2)
+ - React-Core/DevSupport (= 0.73.2)
+ - React-Core/RCTWebSocket (= 0.73.2)
+ - React-RCTActionSheet (= 0.73.2)
+ - React-RCTAnimation (= 0.73.2)
+ - React-RCTBlob (= 0.73.2)
+ - React-RCTImage (= 0.73.2)
+ - React-RCTLinking (= 0.73.2)
+ - React-RCTNetwork (= 0.73.2)
+ - React-RCTSettings (= 0.73.2)
+ - React-RCTText (= 0.73.2)
+ - React-RCTVibration (= 0.73.2)
+ - React-callinvoker (0.73.2)
+ - React-Codegen (0.73.2):
+ - DoubleConversion
- FBReactNativeSpec
+ - glog
- RCT-Folly
- RCTRequired
- RCTTypeSafety
@@ -50,313 +57,970 @@ PODS:
- React-jsc
- React-jsi
- React-jsiexecutor
+ - React-NativeModulesApple
+ - React-rncore
- ReactCommon/turbomodule/bridging
- ReactCommon/turbomodule/core
- - React-Core (0.71.33):
+ - React-Core (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.71.33)
- - React-cxxreact (= 0.71.33)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.2)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/CoreModulesHeaders (0.71.33):
+ - React-Core/CoreModulesHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/Default (0.71.33):
+ - React-Core/Default (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-cxxreact (= 0.71.33)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/DevSupport (0.71.33):
+ - React-Core/DevSupport (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.71.33)
- - React-Core/RCTWebSocket (= 0.71.33)
- - React-cxxreact (= 0.71.33)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.2)
+ - React-Core/RCTWebSocket (= 0.73.2)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-jsinspector (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-jsinspector (= 0.73.2)
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTActionSheetHeaders (0.71.33):
+ - React-Core/RCTActionSheetHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTAnimationHeaders (0.71.33):
+ - React-Core/RCTAnimationHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTBlobHeaders (0.71.33):
+ - React-Core/RCTBlobHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTImageHeaders (0.71.33):
+ - React-Core/RCTImageHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTLinkingHeaders (0.71.33):
+ - React-Core/RCTLinkingHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTNetworkHeaders (0.71.33):
+ - React-Core/RCTNetworkHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTSettingsHeaders (0.71.33):
+ - React-Core/RCTSettingsHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTTextHeaders (0.71.33):
+ - React-Core/RCTTextHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTVibrationHeaders (0.71.33):
+ - React-Core/RCTVibrationHeaders (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
+ - RCT-Folly (= 2022.05.16.00)
- React-Core/Default
- - React-cxxreact (= 0.71.33)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-Core/RCTWebSocket (0.71.33):
+ - React-Core/RCTWebSocket (0.73.2):
- glog
- - RCT-Folly (= 2021.07.22.00)
- - React-Core/Default (= 0.71.33)
- - React-cxxreact (= 0.71.33)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.2)
+ - React-cxxreact
- React-jsc
- - React-jsi (= 0.71.33)
- - React-jsiexecutor (= 0.71.33)
- - React-perflogger (= 0.71.33)
+ - React-jsi
+ - React-jsiexecutor
+ - React-perflogger
+ - React-runtimescheduler
+ - React-utils
- SocketRocket (= 0.7.0)
- Yoga
- - React-CoreModules (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.71.33)
- - React-Codegen (= 0.71.33)
- - React-Core/CoreModulesHeaders (= 0.71.33)
- - React-jsi (= 0.71.33)
+ - React-CoreModules (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety (= 0.73.2)
+ - React-Codegen
+ - React-Core/CoreModulesHeaders (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-NativeModulesApple
- React-RCTBlob
- - React-RCTImage (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
+ - React-RCTImage (= 0.73.2)
+ - ReactCommon
- SocketRocket (= 0.7.0)
- - React-cxxreact (0.71.33):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.71.33)
- - React-jsi (= 0.71.33)
- - React-jsinspector (= 0.71.33)
- - React-logger (= 0.71.33)
- - React-perflogger (= 0.71.33)
- - React-runtimeexecutor (= 0.71.33)
- - React-jsc (0.71.33):
- - React-jsc/Fabric (= 0.71.33)
- - React-jsi (= 0.71.33)
- - React-jsc/Fabric (0.71.33):
- - React-jsi (= 0.71.33)
- - React-jsi (0.71.33):
- - boost (= 1.76.0)
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-jsiexecutor (0.71.33):
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-cxxreact (= 0.71.33)
- - React-jsi (= 0.71.33)
- - React-perflogger (= 0.71.33)
- - React-jsinspector (0.71.33)
- - React-logger (0.71.33):
- - glog
- - React-perflogger (0.71.33)
- - React-RCTActionSheet (0.71.33):
- - React-Core/RCTActionSheetHeaders (= 0.71.33)
- - React-RCTAnimation (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.71.33)
- - React-Codegen (= 0.71.33)
- - React-Core/RCTAnimationHeaders (= 0.71.33)
- - React-jsi (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
- - React-RCTAppDelegate (0.71.33):
- - RCT-Folly
+ - React-cxxreact (0.73.2):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.2)
+ - React-debug (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-jsinspector (= 0.73.2)
+ - React-logger (= 0.73.2)
+ - React-perflogger (= 0.73.2)
+ - React-runtimeexecutor (= 0.73.2)
+ - React-debug (0.73.2)
+ - React-Fabric (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
- RCTRequired
- RCTTypeSafety
- React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/animations (= 0.73.2)
+ - React-Fabric/attributedstring (= 0.73.2)
+ - React-Fabric/componentregistry (= 0.73.2)
+ - React-Fabric/componentregistrynative (= 0.73.2)
+ - React-Fabric/components (= 0.73.2)
+ - React-Fabric/core (= 0.73.2)
+ - React-Fabric/imagemanager (= 0.73.2)
+ - React-Fabric/leakchecker (= 0.73.2)
+ - React-Fabric/mounting (= 0.73.2)
+ - React-Fabric/scheduler (= 0.73.2)
+ - React-Fabric/telemetry (= 0.73.2)
+ - React-Fabric/templateprocessor (= 0.73.2)
+ - React-Fabric/textlayoutmanager (= 0.73.2)
+ - React-Fabric/uimanager (= 0.73.2)
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
- ReactCommon/turbomodule/core
- - React-RCTBlob (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.71.33)
- - React-Core/RCTBlobHeaders (= 0.71.33)
- - React-Core/RCTWebSocket (= 0.71.33)
- - React-jsi (= 0.71.33)
- - React-RCTNetwork (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
- - React-RCTImage (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.71.33)
- - React-Codegen (= 0.71.33)
- - React-Core/RCTImageHeaders (= 0.71.33)
- - React-jsi (= 0.71.33)
- - React-RCTNetwork (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
- - React-RCTLinking (0.71.33):
- - React-Codegen (= 0.71.33)
- - React-Core/RCTLinkingHeaders (= 0.71.33)
- - React-jsi (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
- - React-RCTNetwork (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.71.33)
- - React-Codegen (= 0.71.33)
- - React-Core/RCTNetworkHeaders (= 0.71.33)
- - React-jsi (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
- - React-RCTSettings (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - RCTTypeSafety (= 0.71.33)
- - React-Codegen (= 0.71.33)
- - React-Core/RCTSettingsHeaders (= 0.71.33)
- - React-jsi (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
- - React-RCTText (0.71.33):
- - React-Core/RCTTextHeaders (= 0.71.33)
- - React-RCTVibration (0.71.33):
- - RCT-Folly (= 2021.07.22.00)
- - React-Codegen (= 0.71.33)
- - React-Core/RCTVibrationHeaders (= 0.71.33)
- - React-jsi (= 0.71.33)
- - ReactCommon/turbomodule/core (= 0.71.33)
- - React-runtimeexecutor (0.71.33):
- - React-jsi (= 0.71.33)
- - ReactCommon/turbomodule/bridging (0.71.33):
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.71.33)
- - React-Core (= 0.71.33)
- - React-cxxreact (= 0.71.33)
- - React-jsi (= 0.71.33)
- - React-logger (= 0.71.33)
- - React-perflogger (= 0.71.33)
- - ReactCommon/turbomodule/core (0.71.33):
- - DoubleConversion
- - glog
- - RCT-Folly (= 2021.07.22.00)
- - React-callinvoker (= 0.71.33)
- - React-Core (= 0.71.33)
- - React-cxxreact (= 0.71.33)
- - React-jsi (= 0.71.33)
- - React-logger (= 0.71.33)
- - React-perflogger (= 0.71.33)
- - RNReanimated (3.5.0-nightly-20230822-8ef27c219):
- - DoubleConversion
- - FBLazyVector
+ - React-Fabric/animations (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
- glog
- - RCT-Folly
+ - RCT-Folly/Fabric (= 2022.05.16.00)
- RCTRequired
- RCTTypeSafety
- - React-callinvoker
- React-Core
- - React-Core/DevSupport
- - React-Core/RCTWebSocket
- - React-CoreModules
- React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
- React-jsi
- React-jsiexecutor
- - React-jsinspector
- - React-RCTActionSheet
- - React-RCTAnimation
- - React-RCTAppDelegate
- - React-RCTBlob
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/attributedstring (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistry (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/componentregistrynative (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/components/inputaccessory (= 0.73.2)
+ - React-Fabric/components/legacyviewmanagerinterop (= 0.73.2)
+ - React-Fabric/components/modal (= 0.73.2)
+ - React-Fabric/components/rncore (= 0.73.2)
+ - React-Fabric/components/root (= 0.73.2)
+ - React-Fabric/components/safeareaview (= 0.73.2)
+ - React-Fabric/components/scrollview (= 0.73.2)
+ - React-Fabric/components/text (= 0.73.2)
+ - React-Fabric/components/textinput (= 0.73.2)
+ - React-Fabric/components/unimplementedview (= 0.73.2)
+ - React-Fabric/components/view (= 0.73.2)
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/inputaccessory (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/legacyviewmanagerinterop (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/modal (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/rncore (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/root (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/safeareaview (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/scrollview (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/text (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/textinput (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/unimplementedview (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/components/view (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - Yoga
+ - React-Fabric/core (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/imagemanager (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/leakchecker (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/mounting (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/scheduler (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/telemetry (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/templateprocessor (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/textlayoutmanager (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-Fabric/uimanager
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-Fabric/uimanager (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-cxxreact
+ - React-debug
+ - React-graphics
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor
+ - React-logger
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
+ - ReactCommon/turbomodule/core
+ - React-FabricImage (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - RCTRequired (= 0.73.2)
+ - RCTTypeSafety (= 0.73.2)
+ - React-Fabric
+ - React-graphics
+ - React-ImageManager
+ - React-jsc
+ - React-jsi
+ - React-jsiexecutor (= 0.73.2)
+ - React-logger
+ - React-rendererdebug
+ - React-utils
+ - ReactCommon
+ - Yoga
+ - React-graphics (0.73.2):
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-Core/Default (= 0.73.2)
+ - React-utils
+ - React-ImageManager (0.73.2):
+ - glog
+ - RCT-Folly/Fabric
+ - React-Core/Default
+ - React-debug
+ - React-Fabric
+ - React-graphics
+ - React-rendererdebug
+ - React-utils
+ - React-jsc (0.73.2):
+ - React-jsc/Fabric (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-jsc/Fabric (0.73.2):
+ - React-jsi (= 0.73.2)
+ - React-jserrorhandler (0.73.2):
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-debug
+ - React-jsi
+ - React-Mapbuffer
+ - React-jsi (0.73.2):
+ - boost (= 1.83.0)
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-jsiexecutor (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-cxxreact (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-perflogger (= 0.73.2)
+ - React-jsinspector (0.73.2)
+ - React-logger (0.73.2):
+ - glog
+ - React-Mapbuffer (0.73.2):
+ - glog
+ - React-debug
+ - React-nativeconfig (0.73.2)
+ - React-NativeModulesApple (0.73.2):
+ - glog
+ - React-callinvoker
+ - React-Core
+ - React-cxxreact
+ - React-jsc
+ - React-jsi
+ - React-runtimeexecutor
+ - ReactCommon/turbomodule/bridging
+ - ReactCommon/turbomodule/core
+ - React-perflogger (0.73.2)
+ - React-RCTActionSheet (0.73.2):
+ - React-Core/RCTActionSheetHeaders (= 0.73.2)
+ - React-RCTAnimation (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTAnimationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTAppDelegate (0.73.2):
+ - RCT-Folly
+ - RCTRequired
+ - RCTTypeSafety
+ - React-Core
+ - React-CoreModules
+ - React-jsc
+ - React-nativeconfig
+ - React-NativeModulesApple
+ - React-RCTFabric
- React-RCTImage
- - React-RCTLinking
- React-RCTNetwork
- - React-RCTSettings
+ - React-runtimescheduler
+ - ReactCommon
+ - React-RCTBlob (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Codegen
+ - React-Core/RCTBlobHeaders
+ - React-Core/RCTWebSocket
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTFabric (0.73.2):
+ - glog
+ - RCT-Folly/Fabric (= 2022.05.16.00)
+ - React-Core
+ - React-debug
+ - React-Fabric
+ - React-FabricImage
+ - React-graphics
+ - React-ImageManager
+ - React-jsc
+ - React-jsi
+ - React-nativeconfig
+ - React-RCTImage
- React-RCTText
- - ReactCommon/turbomodule/core
+ - React-rendererdebug
+ - React-runtimescheduler
+ - React-utils
- Yoga
- - RNSVG (13.14.0):
+ - React-RCTImage (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTImageHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - React-RCTNetwork
+ - ReactCommon
+ - React-RCTLinking (0.73.2):
+ - React-Codegen
+ - React-Core/RCTLinkingHeaders (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-NativeModulesApple
+ - ReactCommon
+ - ReactCommon/turbomodule/core (= 0.73.2)
+ - React-RCTNetwork (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTNetworkHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTSettings (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - RCTTypeSafety
+ - React-Codegen
+ - React-Core/RCTSettingsHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-RCTText (0.73.2):
+ - React-Core/RCTTextHeaders (= 0.73.2)
+ - Yoga
+ - React-RCTVibration (0.73.2):
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Codegen
+ - React-Core/RCTVibrationHeaders
+ - React-jsi
+ - React-NativeModulesApple
+ - ReactCommon
+ - React-rendererdebug (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - RCT-Folly (= 2022.05.16.00)
+ - React-debug
+ - React-rncore (0.73.2)
+ - React-runtimeexecutor (0.73.2):
+ - React-jsi (= 0.73.2)
+ - React-runtimescheduler (0.73.2):
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker
+ - React-cxxreact
+ - React-debug
+ - React-jsc
+ - React-jsi
+ - React-rendererdebug
+ - React-runtimeexecutor
+ - React-utils
+ - React-utils (0.73.2):
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-debug
+ - ReactCommon (0.73.2):
+ - React-logger (= 0.73.2)
+ - ReactCommon/turbomodule (= 0.73.2)
+ - ReactCommon/turbomodule (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.2)
+ - React-cxxreact (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-logger (= 0.73.2)
+ - React-perflogger (= 0.73.2)
+ - ReactCommon/turbomodule/bridging (= 0.73.2)
+ - ReactCommon/turbomodule/core (= 0.73.2)
+ - ReactCommon/turbomodule/bridging (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.2)
+ - React-cxxreact (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-logger (= 0.73.2)
+ - React-perflogger (= 0.73.2)
+ - ReactCommon/turbomodule/core (0.73.2):
+ - DoubleConversion
+ - fmt (~> 6.2.1)
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-callinvoker (= 0.73.2)
+ - React-cxxreact (= 0.73.2)
+ - React-jsi (= 0.73.2)
+ - React-logger (= 0.73.2)
+ - React-perflogger (= 0.73.2)
+ - RNReanimated (3.6.1):
+ - glog
+ - RCT-Folly (= 2022.05.16.00)
+ - React-Core
+ - ReactCommon/turbomodule/core
+ - RNSVG (14.1.0):
- React-Core
- SocketRocket (0.7.0)
- Yoga (1.14.0)
@@ -368,6 +1032,7 @@ DEPENDENCIES:
- FBReactNativeSpec (from `../node_modules/react-native-macos/React/FBReactNativeSpec`)
- glog (from `../node_modules/react-native-macos/third-party-podspecs/glog.podspec`)
- RCT-Folly (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
+ - RCT-Folly/Fabric (from `../node_modules/react-native-macos/third-party-podspecs/RCT-Folly.podspec`)
- RCTRequired (from `../node_modules/react-native-macos/Libraries/RCTRequired`)
- RCTTypeSafety (from `../node_modules/react-native-macos/Libraries/TypeSafety`)
- React (from `../node_modules/react-native-macos/`)
@@ -377,23 +1042,37 @@ DEPENDENCIES:
- React-Core/RCTWebSocket (from `../node_modules/react-native-macos/`)
- React-CoreModules (from `../node_modules/react-native-macos/React/CoreModules`)
- React-cxxreact (from `../node_modules/react-native-macos/ReactCommon/cxxreact`)
+ - React-debug (from `../node_modules/react-native-macos/ReactCommon/react/debug`)
+ - React-Fabric (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-FabricImage (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-graphics (from `../node_modules/react-native-macos/ReactCommon/react/renderer/graphics`)
+ - React-ImageManager (from `../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios`)
- React-jsc (from `../node_modules/react-native-macos/ReactCommon/jsc`)
+ - React-jserrorhandler (from `../node_modules/react-native-macos/ReactCommon/jserrorhandler`)
- React-jsi (from `../node_modules/react-native-macos/ReactCommon/jsi`)
- React-jsiexecutor (from `../node_modules/react-native-macos/ReactCommon/jsiexecutor`)
- - React-jsinspector (from `../node_modules/react-native-macos/ReactCommon/jsinspector`)
+ - React-jsinspector (from `../node_modules/react-native-macos/ReactCommon/jsinspector-modern`)
- React-logger (from `../node_modules/react-native-macos/ReactCommon/logger`)
+ - React-Mapbuffer (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-nativeconfig (from `../node_modules/react-native-macos/ReactCommon`)
+ - React-NativeModulesApple (from `../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios`)
- React-perflogger (from `../node_modules/react-native-macos/ReactCommon/reactperflogger`)
- React-RCTActionSheet (from `../node_modules/react-native-macos/Libraries/ActionSheetIOS`)
- React-RCTAnimation (from `../node_modules/react-native-macos/Libraries/NativeAnimation`)
- React-RCTAppDelegate (from `../node_modules/react-native-macos/Libraries/AppDelegate`)
- React-RCTBlob (from `../node_modules/react-native-macos/Libraries/Blob`)
+ - React-RCTFabric (from `../node_modules/react-native-macos/React`)
- React-RCTImage (from `../node_modules/react-native-macos/Libraries/Image`)
- React-RCTLinking (from `../node_modules/react-native-macos/Libraries/LinkingIOS`)
- React-RCTNetwork (from `../node_modules/react-native-macos/Libraries/Network`)
- React-RCTSettings (from `../node_modules/react-native-macos/Libraries/Settings`)
- React-RCTText (from `../node_modules/react-native-macos/Libraries/Text`)
- React-RCTVibration (from `../node_modules/react-native-macos/Libraries/Vibration`)
+ - React-rendererdebug (from `../node_modules/react-native-macos/ReactCommon/react/renderer/debug`)
+ - React-rncore (from `../node_modules/react-native-macos/ReactCommon`)
- React-runtimeexecutor (from `../node_modules/react-native-macos/ReactCommon/runtimeexecutor`)
+ - React-runtimescheduler (from `../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler`)
+ - React-utils (from `../node_modules/react-native-macos/ReactCommon/react/utils`)
- ReactCommon/turbomodule/core (from `../node_modules/react-native-macos/ReactCommon`)
- RNReanimated (from `../node_modules/react-native-reanimated`)
- RNSVG (from `../node_modules/react-native-svg`)
@@ -433,16 +1112,34 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-macos/React/CoreModules"
React-cxxreact:
:path: "../node_modules/react-native-macos/ReactCommon/cxxreact"
+ React-debug:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/debug"
+ React-Fabric:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-FabricImage:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-graphics:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/graphics"
+ React-ImageManager:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/imagemanager/platform/ios"
React-jsc:
:path: "../node_modules/react-native-macos/ReactCommon/jsc"
+ React-jserrorhandler:
+ :path: "../node_modules/react-native-macos/ReactCommon/jserrorhandler"
React-jsi:
:path: "../node_modules/react-native-macos/ReactCommon/jsi"
React-jsiexecutor:
:path: "../node_modules/react-native-macos/ReactCommon/jsiexecutor"
React-jsinspector:
- :path: "../node_modules/react-native-macos/ReactCommon/jsinspector"
+ :path: "../node_modules/react-native-macos/ReactCommon/jsinspector-modern"
React-logger:
:path: "../node_modules/react-native-macos/ReactCommon/logger"
+ React-Mapbuffer:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-nativeconfig:
+ :path: "../node_modules/react-native-macos/ReactCommon"
+ React-NativeModulesApple:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/nativemodule/core/platform/ios"
React-perflogger:
:path: "../node_modules/react-native-macos/ReactCommon/reactperflogger"
React-RCTActionSheet:
@@ -453,6 +1150,8 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-macos/Libraries/AppDelegate"
React-RCTBlob:
:path: "../node_modules/react-native-macos/Libraries/Blob"
+ React-RCTFabric:
+ :path: "../node_modules/react-native-macos/React"
React-RCTImage:
:path: "../node_modules/react-native-macos/Libraries/Image"
React-RCTLinking:
@@ -465,8 +1164,16 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-macos/Libraries/Text"
React-RCTVibration:
:path: "../node_modules/react-native-macos/Libraries/Vibration"
+ React-rendererdebug:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/debug"
+ React-rncore:
+ :path: "../node_modules/react-native-macos/ReactCommon"
React-runtimeexecutor:
:path: "../node_modules/react-native-macos/ReactCommon/runtimeexecutor"
+ React-runtimescheduler:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/renderer/runtimescheduler"
+ React-utils:
+ :path: "../node_modules/react-native-macos/ReactCommon/react/utils"
ReactCommon:
:path: "../node_modules/react-native-macos/ReactCommon"
RNReanimated:
@@ -477,44 +1184,58 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-macos/ReactCommon/yoga"
SPEC CHECKSUMS:
- boost: 8fa3cd00fa17ef6c3221e5fd283fa93e81d23017
- DoubleConversion: acaf5db79676d2e9119015819153f0f99191de12
- FBLazyVector: 732e9894455ba874b5a579460b785a698471abc3
- FBReactNativeSpec: c28894aa8c1224fdf9fa57c973684631dd10bd12
+ boost: 1401ba01f443d1a21a7994aa5f7233c101321909
+ DoubleConversion: 56bb181dd9093360c7cd027b592155b7f33eeb61
+ FBLazyVector: 6120861222df54e12758f3761dd3ea4bba1e5c0f
+ FBReactNativeSpec: 664454e14436d2be7321ad1fc8144924425a7b89
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
- glog: 6df0a3d6e2750a50609471fd1a01fd2948d405b5
- RCT-Folly: bf7b4921a91932051ebf1c5c2d297154b1fa3c8c
- RCTRequired: b924a3818bef3872776fc35568607e9fd1a7ccef
- RCTTypeSafety: 34f12e6931e6ecff0d49578c88516574dd75c5fb
- React: 72acb808d5ea012c54c0d8f3d9e0177a5164ce44
- React-callinvoker: 7f44c6485e733f907d8adccb8ea7bfd8c661ad73
- React-Codegen: 0b2114160ce592070f115f5fbff2747d76d0ae8e
- React-Core: 675a479fdc03725925e1a7f9e5a3bf0548cb24c2
- React-CoreModules: 87b348ba58c041b57f45f9f5535fd0436479cb28
- React-cxxreact: 6f1f6ff3172ce0c542b4c32e399773f1643873e8
- React-jsc: a4b9eebe6ab71197b505b20f17c03b2552cd66b3
- React-jsi: d2cd70166fa1d42d1854a6fea0759968d4efe262
- React-jsiexecutor: 9d1f2ab1d5bce258038eb202728210cab73581af
- React-jsinspector: b482ed08c8233d528c5917e1a916827e2357ab24
- React-logger: 9cca25c5cbc2bdc03dd79010992d17cbac337139
- React-perflogger: b2d0d3a34cb21df25dfdef7331c8eace64ebbac4
- React-RCTActionSheet: e2852db033ff9909d9e31f78a16a8b1a0d72b0b3
- React-RCTAnimation: af9d4eba93cbb7bf6b2b70ff30f4dde1ae47a4a6
- React-RCTAppDelegate: 1ed88f20871b6a095159a7f23ee6ba1376bc96e7
- React-RCTBlob: 00d5f9a111ab8d31c5030975feb9b4cd82dfcf16
- React-RCTImage: ee42851404992d7a14086ef0daa2a30238d5e175
- React-RCTLinking: 424dafdd86a0de70210f2bdae72ebe8dcf697493
- React-RCTNetwork: 9d5462fd172015c6b3fbc9d2dd93a8bc9a2ee5c7
- React-RCTSettings: f7dc22a18afb78123c2191bedb3200da9f2bb8ca
- React-RCTText: f820084f73880a29393620119d365761c681aef3
- React-RCTVibration: dae031977d6a1ce3b89f0fbea95a5dd70024685d
- React-runtimeexecutor: d475f7a753d3aff4c72c146e064cc174e593910e
- ReactCommon: 79e0b0a3d0baa6d7512c06c8d88ad3c6d8b64339
- RNReanimated: dfc6512ed1a033b54d89a38c8121946709ade0fd
- RNSVG: d00c8f91c3cbf6d476451313a18f04d220d4f396
+ glog: 905b36b53c03b6e3afad8c8868237e84df8e17c4
+ RCT-Folly: 270f9eebb5a7d757382d0438ea993e4d7aa85932
+ RCTRequired: 47fe8eedbbc5a1869b4b6327daa196c740fbd644
+ RCTTypeSafety: 1b7ac43d753fa2957f693e129d7000f2f9df76a6
+ React: f31616608f535bc2ab3fbb4218652be9efb6525f
+ React-callinvoker: 6c4e7816d197acd4e7b9116f8867d051fc157505
+ React-Codegen: 4fe3e615947fa328c77c8f22e99b82dc20bf579b
+ React-Core: 468e6a29c0071e5328e20648d2d9f966bcdb1c4f
+ React-CoreModules: da7b30d1aa1a3adf2db84de30285813e4c274b0a
+ React-cxxreact: 4ed7f466cc6c5c0255ad912c2f9b1412887d929b
+ React-debug: a168c355d6cc67a030758c49cd959dc756e07659
+ React-Fabric: ccc19e9af98afc981a7a89487f1564fd94e9cffa
+ React-FabricImage: 21610d12a9a96740c4698c932784b47db485b2f9
+ React-graphics: 98b39c32c6e979bbd168042ef4dc74e5e606e315
+ React-ImageManager: 10348a52a28df045d7891e1dcb18a908f3a4483f
+ React-jsc: 5ffa8108e8bd4c4365a247815fbb57f56c851e14
+ React-jserrorhandler: 5ff3013534cca02b6df8eadcf8f5ab75a17012f9
+ React-jsi: 23181346bad1f74f4fa16fcb12e10dfb07ce7606
+ React-jsiexecutor: 11d5dd3f0a154f6b529dd8dff6365d7daa887c03
+ React-jsinspector: db49a17ff06c11d42dba469fe9068052b67e437e
+ React-logger: 9d30b2beae0a4a0f698a14f6674ffeb81cd1ea5e
+ React-Mapbuffer: 5ee42c5a4d1ee1945cb84b0cac843ac7fe137f83
+ React-nativeconfig: 64fa40e70fc32a3fd674c9f790a09e0d922b3e27
+ React-NativeModulesApple: 7d26a25a0e613f598affd9310b913309435173ed
+ React-perflogger: 42da8c03de5033b47cb4913d8feed18a413ca1dc
+ React-RCTActionSheet: c01d9d247b36d226372212700706202a317b5fbe
+ React-RCTAnimation: b7f6f69e0d1c90d4b576cd40748b781ad2734ba2
+ React-RCTAppDelegate: a03737a6228782fab346b2078185cae4d19f7222
+ React-RCTBlob: cbe915fcf8e37cda8a60aac542f35354c7b0ee28
+ React-RCTFabric: d276e1fb308213d7a5350992718306a3c0b89ab4
+ React-RCTImage: a561d460d7d8fe5fa35ae8430e66fc6b15ca0c02
+ React-RCTLinking: e621fa6b06ce5f221a1c3dba85db783ff48433c1
+ React-RCTNetwork: 49d1cb3eac9af078bf08f2a1f6f5c131787e3f6e
+ React-RCTSettings: c105b52800d0d1ecf463e3683914a422bb6e968d
+ React-RCTText: 11aa7539c1ec6b3b4ae9b1d36642dc040b7894b3
+ React-RCTVibration: 960727a748678759886e496f585bc21eba3fb44e
+ React-rendererdebug: ef3f88bc7020ef48a706157779257e0e2dd900ac
+ React-rncore: aee69eebef32cf00a7ae62036037d8344feaefb9
+ React-runtimeexecutor: e8913520fa4bddd8afec441724fc9ab5f6f92989
+ React-runtimescheduler: ba4b5adaf8396250b73c880574a866617236c259
+ React-utils: a59446d0f4d3dc0f0c231211236dbfc9584207fe
+ ReactCommon: 7c8bee1aa36c2858b5db198445976713db53efa3
+ RNReanimated: 57f436e7aa3d277fbfed05e003230b43428157c0
+ RNSVG: 4ddf4baa2fdd87abd32e5fdd2c5e10522c97b204
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
- Yoga: 2b1bd30acc9239a612feef50886ca9bd8b313abc
+ Yoga: 88c1183f66254fdae21331e195458e5b57514832
-PODFILE CHECKSUM: 7ca6c640e923247f6b904914ff9f85e615d70b1a
+PODFILE CHECKSUM: 8314a989ac1c9965ae099e2dde80ba249c2fd077
-COCOAPODS: 1.11.3
+COCOAPODS: 1.14.3
diff --git a/Example/metro.config.js b/Example/metro.config.js
index 9b8b551b9..5432a7551 100644
--- a/Example/metro.config.js
+++ b/Example/metro.config.js
@@ -31,7 +31,7 @@ const config = {
// We need to make sure that only one version is loaded for peerDependencies
// So we exclude them at the root, and alias them to the versions in example's node_modules
resolver: {
- blacklistRE: exclusionList(
+ blockList: exclusionList(
modules.map(
m => new RegExp(`^${escape(path.join(root, 'node_modules', m))}\\/.*$`),
),
@@ -59,6 +59,8 @@ const config = {
experimentalImportSupport: false,
},
}),
+ // This fixes the 'missing-asset-registry-path` error (see https://github.com/microsoft/react-native-windows/issues/11437)
+ assetRegistryPath: 'react-native/Libraries/Image/AssetRegistry',
},
};
diff --git a/Example/package.json b/Example/package.json
index 63ad31f01..60aaca21b 100644
--- a/Example/package.json
+++ b/Example/package.json
@@ -5,49 +5,49 @@
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
+ "lint": "eslint .",
"macos": "react-native run-macos",
"windows": "react-native run-windows",
"start": "react-native start",
"start-webpack": "webpack serve",
"test": "jest",
- "lint": "eslint .",
"tsc": "tsc --noEmit"
},
"dependencies": {
"react": "18.2.0",
"react-dom": "^18.2.0",
- "react-native": "0.72.6",
- "react-native-macos": "^0.71.0-0",
- "react-native-reanimated": "3.5.0-nightly-20230822-8ef27c219",
+ "react-native": "0.73.1",
+ "react-native-macos": "^0.73.2",
+ "react-native-reanimated": "^3.6.1",
"react-native-svg": "link:../",
- "react-native-web": "^0.18.12",
- "react-native-windows": "0.72.1"
+ "react-native-web": "^0.19.10",
+ "react-native-windows": "0.73.2"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
- "@react-native/eslint-config": "^0.72.2",
- "@react-native/metro-config": "^0.72.11",
- "@tsconfig/react-native": "^3.0.0",
- "@types/metro-config": "^0.76.3",
- "@types/react": "^18.0.24",
+ "@react-native/babel-preset": "^0.73.18",
+ "@react-native/eslint-config": "^0.73.1",
+ "@react-native/metro-config": "^0.73.2",
+ "@react-native/typescript-config": "^0.73.1",
+ "@types/react": "^18.2.6",
"@types/react-test-renderer": "^18.0.0",
- "babel-jest": "^29.2.1",
+ "babel-jest": "^29.6.3",
"babel-loader": "^9.1.2",
"eslint": "^8.19.0",
"file-loader": "^6.2.0",
- "jest": "^29.2.1",
- "metro-react-native-babel-preset": "0.76.8",
- "prettier": "^2.4.1",
+ "jest": "^29.6.3",
+ "prettier": "2.8.8",
"react-test-renderer": "18.2.0",
- "typescript": "4.8.4",
+ "typescript": "5.0.4",
+ "metro-config": "^0.80.2",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"engines": {
- "node": ">=16"
+ "node": ">=18"
}
}
diff --git a/Example/tsconfig.json b/Example/tsconfig.json
index 77e985de3..acb9aef79 100644
--- a/Example/tsconfig.json
+++ b/Example/tsconfig.json
@@ -1,5 +1,5 @@
{
- "extends": "@tsconfig/react-native/tsconfig.json",
+ "extends": "@react-native/typescript-config/tsconfig.json",
"include": ["src/**/*"],
"compilerOptions": {
"skipLibCheck": true
diff --git a/Example/windows/Example.sln b/Example/windows/Example.sln
index 31746f108..a22010fa7 100644
--- a/Example/windows/Example.sln
+++ b/Example/windows/Example.sln
@@ -1,9 +1,9 @@

Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.29215.179
+# Visual Studio Version 17
+VisualStudioVersion = 17.3.32929.385
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Example", "Example\Example.vcxproj", "{E975FCA4-0CDA-43B8-B7FC-B6705F562288}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Example", "Example\Example.vcxproj", "{C5ED9431-C380-4121-9B54-555EDFDBE44A}"
ProjectSection(ProjectDependencies) = postProject
{F7D32BD0-2749-483E-9A0D-1635EF7E3136} = {F7D32BD0-2749-483E-9A0D-1635EF7E3136}
EndProjectSection
@@ -56,24 +56,24 @@ Global
Release|ARM64 = Release|ARM64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|ARM64.Build.0 = Debug|ARM64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|x64.ActiveCfg = Debug|x64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|x64.Build.0 = Debug|x64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|x64.Deploy.0 = Debug|x64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|x86.ActiveCfg = Debug|Win32
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|x86.Build.0 = Debug|Win32
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Debug|x86.Deploy.0 = Debug|Win32
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|ARM64.ActiveCfg = Release|ARM64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|ARM64.Build.0 = Release|ARM64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|ARM64.Deploy.0 = Release|ARM64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|x64.ActiveCfg = Release|x64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|x64.Build.0 = Release|x64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|x64.Deploy.0 = Release|x64
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|x86.ActiveCfg = Release|Win32
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|x86.Build.0 = Release|Win32
- {E975FCA4-0CDA-43B8-B7FC-B6705F562288}.Release|x86.Deploy.0 = Release|Win32
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|x64.ActiveCfg = Debug|x64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|x64.Build.0 = Debug|x64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|x64.Deploy.0 = Debug|x64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|x86.ActiveCfg = Debug|Win32
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|x86.Build.0 = Debug|Win32
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Debug|x86.Deploy.0 = Debug|Win32
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|ARM64.ActiveCfg = Release|ARM64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|ARM64.Build.0 = Release|ARM64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|ARM64.Deploy.0 = Release|ARM64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|x64.ActiveCfg = Release|x64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|x64.Build.0 = Release|x64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|x64.Deploy.0 = Release|x64
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|x86.ActiveCfg = Release|Win32
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|x86.Build.0 = Release|Win32
+ {C5ED9431-C380-4121-9B54-555EDFDBE44A}.Release|x86.Deploy.0 = Release|Win32
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.ActiveCfg = Debug|ARM64
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.Build.0 = Debug|ARM64
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x64.ActiveCfg = Debug|x64
@@ -136,18 +136,6 @@ Global
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x86.ActiveCfg = Release|Win32
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x86.Build.0 = Release|Win32
{14B93DC8-FD93-4A6D-81CB-8BC96644501C}.Release|x86.Deploy.0 = Release|Win32
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Debug|x64.ActiveCfg = Debug|x64
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Debug|x64.Build.0 = Debug|x64
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Debug|x86.ActiveCfg = Debug|Win32
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Debug|x86.Build.0 = Debug|Win32
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Debug|ARM64.Build.0 = Debug|ARM64
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Release|x64.ActiveCfg = Release|x64
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Release|x64.Build.0 = Release|x64
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Release|x86.ActiveCfg = Release|Win32
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Release|x86.Build.0 = Release|Win32
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Release|ARM64.ActiveCfg = Release|ARM64
- {7ACF84EC-EFBA-4043-8E14-40B159508902}.Release|ARM64.Build.0 = Release|ARM64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/Example/windows/Example/Example.vcxproj b/Example/windows/Example/Example.vcxproj
index 4452a5c3a..7874ced65 100644
--- a/Example/windows/Example/Example.vcxproj
+++ b/Example/windows/Example/Example.vcxproj
@@ -1,22 +1,22 @@
-
+
true
true
true
- {e975fca4-0cda-43b8-b7fc-b6705f562288}
+ {c5ed9431-c380-4121-9b54-555edfdbe44a}
Example
Example
en-US
- 16.0
+ 17.0
true
Windows Store
10.0
- $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'node_modules\react-native-windows\package.json'))\node_modules\react-native-windows\
+ $([MSBuild]::GetDirectoryNameOfFileAbove($(SolutionDir), 'node_modules\react-native-windows\package.json'))\node_modules\react-native-windows\
@@ -158,8 +158,6 @@
-
-
diff --git a/Example/windows/Example/ReactPackageProvider.cpp b/Example/windows/Example/ReactPackageProvider.cpp
index 928adf4df..207354cac 100644
--- a/Example/windows/Example/ReactPackageProvider.cpp
+++ b/Example/windows/Example/ReactPackageProvider.cpp
@@ -9,7 +9,7 @@ namespace winrt::Example::implementation
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
{
- AddAttributedModules(packageBuilder);
+ AddAttributedModules(packageBuilder, true);
}
} // namespace winrt::Example::implementation
diff --git a/Example/windows/ExperimentalFeatures.props b/Example/windows/ExperimentalFeatures.props
index 11310c413..b0384433f 100644
--- a/Example/windows/ExperimentalFeatures.props
+++ b/Example/windows/ExperimentalFeatures.props
@@ -14,7 +14,7 @@
See https://microsoft.github.io/react-native-windows/docs/hermes
-->
- false
+ true