Android Events - setting default to true to use C++ event pipeline (#41036)

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

Changelog:
[Added] - Shipping the new event dispatching pipeline that immediately moves events over to the C++ queue. This should unblock useDeferredValue + useTransition interruptibility on Android.

Reviewed By: javache

Differential Revision: D50365981

fbshipit-source-id: ecf60e5bc29fb4568463568a6ede4330e0294fd3
This commit is contained in:
Jesse Watts-Russell
2023-11-16 22:46:22 -08:00
committed by Luna Wei
parent 40fe1cbd8c
commit 3f907b10d4
@@ -155,7 +155,7 @@ public class ReactFeatureFlags {
public static boolean enableDefaultAsyncBatchedPriority = false;
/** Utilize shared Event C++ pipeline with fabric's renderer */
public static boolean enableFabricSharedEventPipeline = false;
public static boolean enableFabricSharedEventPipeline = true;
/** When enabled, Fabric will avoid cloning notes to perform state progression. */
public static boolean enableClonelessStateProgression = false;