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-10-17 12:55:40 -07:00
committed by Facebook GitHub Bot
parent 26b41456d2
commit b816fa7a65
@@ -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;