Enable new lifecycle hooks by default everywhere (#41709)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/41709

We shipped these new create()/reload()/destroy() methods to the Facebook app:
- Part 1: D50802718
- Part 2: D50803283

This diff just enables them everywhere, by default.

Created from CodeHub with https://fburl.com/edit-in-codehub

Changelog: [Internal]

Reviewed By: cortinico

Differential Revision: D51590843

fbshipit-source-id: 02abeea78b7b7b844552989ad58d0a2f048424ad
This commit is contained in:
Ramanpreet Nara
2023-11-29 17:34:28 -08:00
committed by Facebook GitHub Bot
parent c8db60c7aa
commit ee31ec9a3f
@@ -72,7 +72,7 @@ public class ReactFeatureFlags {
public static volatile boolean enableBridgelessArchitectureSoftExceptions = false;
/** Does the bridgeless architecture use the new create/reload/destroy routines */
public static volatile boolean enableBridgelessArchitectureNewCreateReloadDestroy = false;
public static volatile boolean enableBridgelessArchitectureNewCreateReloadDestroy = true;
/** This feature flag enables logs for Fabric */
public static boolean enableFabricLogs = false;