react-native 0.84.0-nightly-20251114-dd6805dec → 0.84.0-nightly-20251116-d52b9d2f8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/Libraries/Core/ReactNativeVersion.js +1 -1
  2. package/React/Base/RCTBundleManager.h +2 -2
  3. package/React/Base/RCTBundleManager.m +14 -1
  4. package/React/Base/RCTVersion.m +1 -1
  5. package/React/CoreModules/RCTDevSettings.h +36 -1
  6. package/React/CoreModules/RCTDevSettings.mm +45 -9
  7. package/React/DevSupport/RCTPackagerConnection.h +4 -2
  8. package/React/DevSupport/RCTPackagerConnection.mm +30 -33
  9. package/React/FBReactNativeSpec/FBReactNativeSpecJSI.h +8 -0
  10. package/ReactAndroid/api/ReactAndroid.api +1 -0
  11. package/ReactAndroid/gradle.properties +1 -1
  12. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlags.kt +7 -1
  13. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxAccessor.kt +11 -1
  14. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsCxxInterop.kt +3 -1
  15. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt +3 -1
  16. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsLocalAccessor.kt +12 -1
  17. package/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsProvider.kt +3 -1
  18. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.kt +1 -1
  19. package/ReactAndroid/src/main/java/com/facebook/react/uimanager/BackgroundStyleApplicator.kt +84 -2
  20. package/ReactAndroid/src/main/java/com/facebook/react/views/image/ReactImageView.kt +12 -9
  21. package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.cpp +15 -1
  22. package/ReactAndroid/src/main/jni/react/featureflags/JReactNativeFeatureFlagsCxxInterop.h +4 -1
  23. package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
  24. package/ReactCommon/jsi/jsi/jsi.h +6 -0
  25. package/ReactCommon/jsinspector-modern/tracing/TracingCategory.h +10 -5
  26. package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.cpp +5 -1
  27. package/ReactCommon/react/featureflags/ReactNativeFeatureFlags.h +6 -1
  28. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.cpp +93 -75
  29. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsAccessor.h +4 -2
  30. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h +5 -1
  31. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDynamicProvider.h +10 -1
  32. package/ReactCommon/react/featureflags/ReactNativeFeatureFlagsProvider.h +2 -1
  33. package/ReactCommon/react/nativemodule/core/ReactCommon/TurboModule.h +0 -1
  34. package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.cpp +6 -1
  35. package/ReactCommon/react/nativemodule/featureflags/NativeReactNativeFeatureFlags.h +3 -1
  36. package/ReactCommon/react/renderer/components/image/ImageProps.cpp +2 -2
  37. package/ReactCommon/react/renderer/components/image/ImageProps.h +2 -2
  38. package/ReactCommon/react/renderer/components/image/ImageShadowNode.cpp +9 -2
  39. package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/ImageRequestParams.h +9 -4
  40. package/ReactCommon/react/renderer/imagemanager/platform/android/react/renderer/imagemanager/conversions.h +8 -4
  41. package/package.json +9 -9
  42. package/sdks/hermes-engine/version.properties +1 -1
  43. package/src/private/featureflags/ReactNativeFeatureFlags.js +6 -1
  44. package/src/private/featureflags/specs/NativeReactNativeFeatureFlags.js +2 -1
  45. package/ReactCommon/react/nativemodule/core/ReactCommon/TurboCxxModule.cpp +0 -212
  46. package/ReactCommon/react/nativemodule/core/ReactCommon/TurboCxxModule.h +0 -40
@@ -4,7 +4,7 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @generated SignedSource<<d03dd3ed92be3e140ac5172791ddadb2>>
7
+ * @generated SignedSource<<d97cf9dd1fb1696f46aa408871a7b05c>>
8
8
  */
9
9
 
10
10
  /**
@@ -281,6 +281,24 @@ bool ReactNativeFeatureFlagsAccessor::enableAccumulatedUpdatesInRawPropsAndroid(
281
281
  return flagValue.value();
282
282
  }
283
283
 
284
+ bool ReactNativeFeatureFlagsAccessor::enableAndroidAntialiasedBorderRadiusClipping() {
285
+ auto flagValue = enableAndroidAntialiasedBorderRadiusClipping_.load();
286
+
287
+ if (!flagValue.has_value()) {
288
+ // This block is not exclusive but it is not necessary.
289
+ // If multiple threads try to initialize the feature flag, we would only
290
+ // be accessing the provider multiple times but the end state of this
291
+ // instance and the returned flag value would be the same.
292
+
293
+ markFlagAsAccessed(14, "enableAndroidAntialiasedBorderRadiusClipping");
294
+
295
+ flagValue = currentProvider_->enableAndroidAntialiasedBorderRadiusClipping();
296
+ enableAndroidAntialiasedBorderRadiusClipping_ = flagValue;
297
+ }
298
+
299
+ return flagValue.value();
300
+ }
301
+
284
302
  bool ReactNativeFeatureFlagsAccessor::enableAndroidLinearText() {
285
303
  auto flagValue = enableAndroidLinearText_.load();
286
304
 
@@ -290,7 +308,7 @@ bool ReactNativeFeatureFlagsAccessor::enableAndroidLinearText() {
290
308
  // be accessing the provider multiple times but the end state of this
291
309
  // instance and the returned flag value would be the same.
292
310
 
293
- markFlagAsAccessed(14, "enableAndroidLinearText");
311
+ markFlagAsAccessed(15, "enableAndroidLinearText");
294
312
 
295
313
  flagValue = currentProvider_->enableAndroidLinearText();
296
314
  enableAndroidLinearText_ = flagValue;
@@ -308,7 +326,7 @@ bool ReactNativeFeatureFlagsAccessor::enableAndroidTextMeasurementOptimizations(
308
326
  // be accessing the provider multiple times but the end state of this
309
327
  // instance and the returned flag value would be the same.
310
328
 
311
- markFlagAsAccessed(15, "enableAndroidTextMeasurementOptimizations");
329
+ markFlagAsAccessed(16, "enableAndroidTextMeasurementOptimizations");
312
330
 
313
331
  flagValue = currentProvider_->enableAndroidTextMeasurementOptimizations();
314
332
  enableAndroidTextMeasurementOptimizations_ = flagValue;
@@ -326,7 +344,7 @@ bool ReactNativeFeatureFlagsAccessor::enableBridgelessArchitecture() {
326
344
  // be accessing the provider multiple times but the end state of this
327
345
  // instance and the returned flag value would be the same.
328
346
 
329
- markFlagAsAccessed(16, "enableBridgelessArchitecture");
347
+ markFlagAsAccessed(17, "enableBridgelessArchitecture");
330
348
 
331
349
  flagValue = currentProvider_->enableBridgelessArchitecture();
332
350
  enableBridgelessArchitecture_ = flagValue;
@@ -344,7 +362,7 @@ bool ReactNativeFeatureFlagsAccessor::enableCppPropsIteratorSetter() {
344
362
  // be accessing the provider multiple times but the end state of this
345
363
  // instance and the returned flag value would be the same.
346
364
 
347
- markFlagAsAccessed(17, "enableCppPropsIteratorSetter");
365
+ markFlagAsAccessed(18, "enableCppPropsIteratorSetter");
348
366
 
349
367
  flagValue = currentProvider_->enableCppPropsIteratorSetter();
350
368
  enableCppPropsIteratorSetter_ = flagValue;
@@ -362,7 +380,7 @@ bool ReactNativeFeatureFlagsAccessor::enableCustomFocusSearchOnClippedElementsAn
362
380
  // be accessing the provider multiple times but the end state of this
363
381
  // instance and the returned flag value would be the same.
364
382
 
365
- markFlagAsAccessed(18, "enableCustomFocusSearchOnClippedElementsAndroid");
383
+ markFlagAsAccessed(19, "enableCustomFocusSearchOnClippedElementsAndroid");
366
384
 
367
385
  flagValue = currentProvider_->enableCustomFocusSearchOnClippedElementsAndroid();
368
386
  enableCustomFocusSearchOnClippedElementsAndroid_ = flagValue;
@@ -380,7 +398,7 @@ bool ReactNativeFeatureFlagsAccessor::enableDestroyShadowTreeRevisionAsync() {
380
398
  // be accessing the provider multiple times but the end state of this
381
399
  // instance and the returned flag value would be the same.
382
400
 
383
- markFlagAsAccessed(19, "enableDestroyShadowTreeRevisionAsync");
401
+ markFlagAsAccessed(20, "enableDestroyShadowTreeRevisionAsync");
384
402
 
385
403
  flagValue = currentProvider_->enableDestroyShadowTreeRevisionAsync();
386
404
  enableDestroyShadowTreeRevisionAsync_ = flagValue;
@@ -398,7 +416,7 @@ bool ReactNativeFeatureFlagsAccessor::enableDoubleMeasurementFixAndroid() {
398
416
  // be accessing the provider multiple times but the end state of this
399
417
  // instance and the returned flag value would be the same.
400
418
 
401
- markFlagAsAccessed(20, "enableDoubleMeasurementFixAndroid");
419
+ markFlagAsAccessed(21, "enableDoubleMeasurementFixAndroid");
402
420
 
403
421
  flagValue = currentProvider_->enableDoubleMeasurementFixAndroid();
404
422
  enableDoubleMeasurementFixAndroid_ = flagValue;
@@ -416,7 +434,7 @@ bool ReactNativeFeatureFlagsAccessor::enableEagerMainQueueModulesOnIOS() {
416
434
  // be accessing the provider multiple times but the end state of this
417
435
  // instance and the returned flag value would be the same.
418
436
 
419
- markFlagAsAccessed(21, "enableEagerMainQueueModulesOnIOS");
437
+ markFlagAsAccessed(22, "enableEagerMainQueueModulesOnIOS");
420
438
 
421
439
  flagValue = currentProvider_->enableEagerMainQueueModulesOnIOS();
422
440
  enableEagerMainQueueModulesOnIOS_ = flagValue;
@@ -434,7 +452,7 @@ bool ReactNativeFeatureFlagsAccessor::enableEagerRootViewAttachment() {
434
452
  // be accessing the provider multiple times but the end state of this
435
453
  // instance and the returned flag value would be the same.
436
454
 
437
- markFlagAsAccessed(22, "enableEagerRootViewAttachment");
455
+ markFlagAsAccessed(23, "enableEagerRootViewAttachment");
438
456
 
439
457
  flagValue = currentProvider_->enableEagerRootViewAttachment();
440
458
  enableEagerRootViewAttachment_ = flagValue;
@@ -452,7 +470,7 @@ bool ReactNativeFeatureFlagsAccessor::enableExclusivePropsUpdateAndroid() {
452
470
  // be accessing the provider multiple times but the end state of this
453
471
  // instance and the returned flag value would be the same.
454
472
 
455
- markFlagAsAccessed(23, "enableExclusivePropsUpdateAndroid");
473
+ markFlagAsAccessed(24, "enableExclusivePropsUpdateAndroid");
456
474
 
457
475
  flagValue = currentProvider_->enableExclusivePropsUpdateAndroid();
458
476
  enableExclusivePropsUpdateAndroid_ = flagValue;
@@ -470,7 +488,7 @@ bool ReactNativeFeatureFlagsAccessor::enableFabricLogs() {
470
488
  // be accessing the provider multiple times but the end state of this
471
489
  // instance and the returned flag value would be the same.
472
490
 
473
- markFlagAsAccessed(24, "enableFabricLogs");
491
+ markFlagAsAccessed(25, "enableFabricLogs");
474
492
 
475
493
  flagValue = currentProvider_->enableFabricLogs();
476
494
  enableFabricLogs_ = flagValue;
@@ -488,7 +506,7 @@ bool ReactNativeFeatureFlagsAccessor::enableFabricRenderer() {
488
506
  // be accessing the provider multiple times but the end state of this
489
507
  // instance and the returned flag value would be the same.
490
508
 
491
- markFlagAsAccessed(25, "enableFabricRenderer");
509
+ markFlagAsAccessed(26, "enableFabricRenderer");
492
510
 
493
511
  flagValue = currentProvider_->enableFabricRenderer();
494
512
  enableFabricRenderer_ = flagValue;
@@ -506,7 +524,7 @@ bool ReactNativeFeatureFlagsAccessor::enableFontScaleChangesUpdatingLayout() {
506
524
  // be accessing the provider multiple times but the end state of this
507
525
  // instance and the returned flag value would be the same.
508
526
 
509
- markFlagAsAccessed(26, "enableFontScaleChangesUpdatingLayout");
527
+ markFlagAsAccessed(27, "enableFontScaleChangesUpdatingLayout");
510
528
 
511
529
  flagValue = currentProvider_->enableFontScaleChangesUpdatingLayout();
512
530
  enableFontScaleChangesUpdatingLayout_ = flagValue;
@@ -524,7 +542,7 @@ bool ReactNativeFeatureFlagsAccessor::enableIOSTextBaselineOffsetPerLine() {
524
542
  // be accessing the provider multiple times but the end state of this
525
543
  // instance and the returned flag value would be the same.
526
544
 
527
- markFlagAsAccessed(27, "enableIOSTextBaselineOffsetPerLine");
545
+ markFlagAsAccessed(28, "enableIOSTextBaselineOffsetPerLine");
528
546
 
529
547
  flagValue = currentProvider_->enableIOSTextBaselineOffsetPerLine();
530
548
  enableIOSTextBaselineOffsetPerLine_ = flagValue;
@@ -542,7 +560,7 @@ bool ReactNativeFeatureFlagsAccessor::enableIOSViewClipToPaddingBox() {
542
560
  // be accessing the provider multiple times but the end state of this
543
561
  // instance and the returned flag value would be the same.
544
562
 
545
- markFlagAsAccessed(28, "enableIOSViewClipToPaddingBox");
563
+ markFlagAsAccessed(29, "enableIOSViewClipToPaddingBox");
546
564
 
547
565
  flagValue = currentProvider_->enableIOSViewClipToPaddingBox();
548
566
  enableIOSViewClipToPaddingBox_ = flagValue;
@@ -560,7 +578,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImagePrefetchingAndroid() {
560
578
  // be accessing the provider multiple times but the end state of this
561
579
  // instance and the returned flag value would be the same.
562
580
 
563
- markFlagAsAccessed(29, "enableImagePrefetchingAndroid");
581
+ markFlagAsAccessed(30, "enableImagePrefetchingAndroid");
564
582
 
565
583
  flagValue = currentProvider_->enableImagePrefetchingAndroid();
566
584
  enableImagePrefetchingAndroid_ = flagValue;
@@ -578,7 +596,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImagePrefetchingJNIBatchingAndroid()
578
596
  // be accessing the provider multiple times but the end state of this
579
597
  // instance and the returned flag value would be the same.
580
598
 
581
- markFlagAsAccessed(30, "enableImagePrefetchingJNIBatchingAndroid");
599
+ markFlagAsAccessed(31, "enableImagePrefetchingJNIBatchingAndroid");
582
600
 
583
601
  flagValue = currentProvider_->enableImagePrefetchingJNIBatchingAndroid();
584
602
  enableImagePrefetchingJNIBatchingAndroid_ = flagValue;
@@ -596,7 +614,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImagePrefetchingOnUiThreadAndroid()
596
614
  // be accessing the provider multiple times but the end state of this
597
615
  // instance and the returned flag value would be the same.
598
616
 
599
- markFlagAsAccessed(31, "enableImagePrefetchingOnUiThreadAndroid");
617
+ markFlagAsAccessed(32, "enableImagePrefetchingOnUiThreadAndroid");
600
618
 
601
619
  flagValue = currentProvider_->enableImagePrefetchingOnUiThreadAndroid();
602
620
  enableImagePrefetchingOnUiThreadAndroid_ = flagValue;
@@ -614,7 +632,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImmediateUpdateModeForContentOffsetC
614
632
  // be accessing the provider multiple times but the end state of this
615
633
  // instance and the returned flag value would be the same.
616
634
 
617
- markFlagAsAccessed(32, "enableImmediateUpdateModeForContentOffsetChanges");
635
+ markFlagAsAccessed(33, "enableImmediateUpdateModeForContentOffsetChanges");
618
636
 
619
637
  flagValue = currentProvider_->enableImmediateUpdateModeForContentOffsetChanges();
620
638
  enableImmediateUpdateModeForContentOffsetChanges_ = flagValue;
@@ -632,7 +650,7 @@ bool ReactNativeFeatureFlagsAccessor::enableImperativeFocus() {
632
650
  // be accessing the provider multiple times but the end state of this
633
651
  // instance and the returned flag value would be the same.
634
652
 
635
- markFlagAsAccessed(33, "enableImperativeFocus");
653
+ markFlagAsAccessed(34, "enableImperativeFocus");
636
654
 
637
655
  flagValue = currentProvider_->enableImperativeFocus();
638
656
  enableImperativeFocus_ = flagValue;
@@ -650,7 +668,7 @@ bool ReactNativeFeatureFlagsAccessor::enableInteropViewManagerClassLookUpOptimiz
650
668
  // be accessing the provider multiple times but the end state of this
651
669
  // instance and the returned flag value would be the same.
652
670
 
653
- markFlagAsAccessed(34, "enableInteropViewManagerClassLookUpOptimizationIOS");
671
+ markFlagAsAccessed(35, "enableInteropViewManagerClassLookUpOptimizationIOS");
654
672
 
655
673
  flagValue = currentProvider_->enableInteropViewManagerClassLookUpOptimizationIOS();
656
674
  enableInteropViewManagerClassLookUpOptimizationIOS_ = flagValue;
@@ -668,7 +686,7 @@ bool ReactNativeFeatureFlagsAccessor::enableIntersectionObserverByDefault() {
668
686
  // be accessing the provider multiple times but the end state of this
669
687
  // instance and the returned flag value would be the same.
670
688
 
671
- markFlagAsAccessed(35, "enableIntersectionObserverByDefault");
689
+ markFlagAsAccessed(36, "enableIntersectionObserverByDefault");
672
690
 
673
691
  flagValue = currentProvider_->enableIntersectionObserverByDefault();
674
692
  enableIntersectionObserverByDefault_ = flagValue;
@@ -686,7 +704,7 @@ bool ReactNativeFeatureFlagsAccessor::enableKeyEvents() {
686
704
  // be accessing the provider multiple times but the end state of this
687
705
  // instance and the returned flag value would be the same.
688
706
 
689
- markFlagAsAccessed(36, "enableKeyEvents");
707
+ markFlagAsAccessed(37, "enableKeyEvents");
690
708
 
691
709
  flagValue = currentProvider_->enableKeyEvents();
692
710
  enableKeyEvents_ = flagValue;
@@ -704,7 +722,7 @@ bool ReactNativeFeatureFlagsAccessor::enableLayoutAnimationsOnAndroid() {
704
722
  // be accessing the provider multiple times but the end state of this
705
723
  // instance and the returned flag value would be the same.
706
724
 
707
- markFlagAsAccessed(37, "enableLayoutAnimationsOnAndroid");
725
+ markFlagAsAccessed(38, "enableLayoutAnimationsOnAndroid");
708
726
 
709
727
  flagValue = currentProvider_->enableLayoutAnimationsOnAndroid();
710
728
  enableLayoutAnimationsOnAndroid_ = flagValue;
@@ -722,7 +740,7 @@ bool ReactNativeFeatureFlagsAccessor::enableLayoutAnimationsOnIOS() {
722
740
  // be accessing the provider multiple times but the end state of this
723
741
  // instance and the returned flag value would be the same.
724
742
 
725
- markFlagAsAccessed(38, "enableLayoutAnimationsOnIOS");
743
+ markFlagAsAccessed(39, "enableLayoutAnimationsOnIOS");
726
744
 
727
745
  flagValue = currentProvider_->enableLayoutAnimationsOnIOS();
728
746
  enableLayoutAnimationsOnIOS_ = flagValue;
@@ -740,7 +758,7 @@ bool ReactNativeFeatureFlagsAccessor::enableMainQueueCoordinatorOnIOS() {
740
758
  // be accessing the provider multiple times but the end state of this
741
759
  // instance and the returned flag value would be the same.
742
760
 
743
- markFlagAsAccessed(39, "enableMainQueueCoordinatorOnIOS");
761
+ markFlagAsAccessed(40, "enableMainQueueCoordinatorOnIOS");
744
762
 
745
763
  flagValue = currentProvider_->enableMainQueueCoordinatorOnIOS();
746
764
  enableMainQueueCoordinatorOnIOS_ = flagValue;
@@ -758,7 +776,7 @@ bool ReactNativeFeatureFlagsAccessor::enableModuleArgumentNSNullConversionIOS()
758
776
  // be accessing the provider multiple times but the end state of this
759
777
  // instance and the returned flag value would be the same.
760
778
 
761
- markFlagAsAccessed(40, "enableModuleArgumentNSNullConversionIOS");
779
+ markFlagAsAccessed(41, "enableModuleArgumentNSNullConversionIOS");
762
780
 
763
781
  flagValue = currentProvider_->enableModuleArgumentNSNullConversionIOS();
764
782
  enableModuleArgumentNSNullConversionIOS_ = flagValue;
@@ -776,7 +794,7 @@ bool ReactNativeFeatureFlagsAccessor::enableNativeCSSParsing() {
776
794
  // be accessing the provider multiple times but the end state of this
777
795
  // instance and the returned flag value would be the same.
778
796
 
779
- markFlagAsAccessed(41, "enableNativeCSSParsing");
797
+ markFlagAsAccessed(42, "enableNativeCSSParsing");
780
798
 
781
799
  flagValue = currentProvider_->enableNativeCSSParsing();
782
800
  enableNativeCSSParsing_ = flagValue;
@@ -794,7 +812,7 @@ bool ReactNativeFeatureFlagsAccessor::enableNetworkEventReporting() {
794
812
  // be accessing the provider multiple times but the end state of this
795
813
  // instance and the returned flag value would be the same.
796
814
 
797
- markFlagAsAccessed(42, "enableNetworkEventReporting");
815
+ markFlagAsAccessed(43, "enableNetworkEventReporting");
798
816
 
799
817
  flagValue = currentProvider_->enableNetworkEventReporting();
800
818
  enableNetworkEventReporting_ = flagValue;
@@ -812,7 +830,7 @@ bool ReactNativeFeatureFlagsAccessor::enablePreparedTextLayout() {
812
830
  // be accessing the provider multiple times but the end state of this
813
831
  // instance and the returned flag value would be the same.
814
832
 
815
- markFlagAsAccessed(43, "enablePreparedTextLayout");
833
+ markFlagAsAccessed(44, "enablePreparedTextLayout");
816
834
 
817
835
  flagValue = currentProvider_->enablePreparedTextLayout();
818
836
  enablePreparedTextLayout_ = flagValue;
@@ -830,7 +848,7 @@ bool ReactNativeFeatureFlagsAccessor::enablePropsUpdateReconciliationAndroid() {
830
848
  // be accessing the provider multiple times but the end state of this
831
849
  // instance and the returned flag value would be the same.
832
850
 
833
- markFlagAsAccessed(44, "enablePropsUpdateReconciliationAndroid");
851
+ markFlagAsAccessed(45, "enablePropsUpdateReconciliationAndroid");
834
852
 
835
853
  flagValue = currentProvider_->enablePropsUpdateReconciliationAndroid();
836
854
  enablePropsUpdateReconciliationAndroid_ = flagValue;
@@ -848,7 +866,7 @@ bool ReactNativeFeatureFlagsAccessor::enableSwiftUIBasedFilters() {
848
866
  // be accessing the provider multiple times but the end state of this
849
867
  // instance and the returned flag value would be the same.
850
868
 
851
- markFlagAsAccessed(45, "enableSwiftUIBasedFilters");
869
+ markFlagAsAccessed(46, "enableSwiftUIBasedFilters");
852
870
 
853
871
  flagValue = currentProvider_->enableSwiftUIBasedFilters();
854
872
  enableSwiftUIBasedFilters_ = flagValue;
@@ -866,7 +884,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewCulling() {
866
884
  // be accessing the provider multiple times but the end state of this
867
885
  // instance and the returned flag value would be the same.
868
886
 
869
- markFlagAsAccessed(46, "enableViewCulling");
887
+ markFlagAsAccessed(47, "enableViewCulling");
870
888
 
871
889
  flagValue = currentProvider_->enableViewCulling();
872
890
  enableViewCulling_ = flagValue;
@@ -884,7 +902,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecycling() {
884
902
  // be accessing the provider multiple times but the end state of this
885
903
  // instance and the returned flag value would be the same.
886
904
 
887
- markFlagAsAccessed(47, "enableViewRecycling");
905
+ markFlagAsAccessed(48, "enableViewRecycling");
888
906
 
889
907
  flagValue = currentProvider_->enableViewRecycling();
890
908
  enableViewRecycling_ = flagValue;
@@ -902,7 +920,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForImage() {
902
920
  // be accessing the provider multiple times but the end state of this
903
921
  // instance and the returned flag value would be the same.
904
922
 
905
- markFlagAsAccessed(48, "enableViewRecyclingForImage");
923
+ markFlagAsAccessed(49, "enableViewRecyclingForImage");
906
924
 
907
925
  flagValue = currentProvider_->enableViewRecyclingForImage();
908
926
  enableViewRecyclingForImage_ = flagValue;
@@ -920,7 +938,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForScrollView() {
920
938
  // be accessing the provider multiple times but the end state of this
921
939
  // instance and the returned flag value would be the same.
922
940
 
923
- markFlagAsAccessed(49, "enableViewRecyclingForScrollView");
941
+ markFlagAsAccessed(50, "enableViewRecyclingForScrollView");
924
942
 
925
943
  flagValue = currentProvider_->enableViewRecyclingForScrollView();
926
944
  enableViewRecyclingForScrollView_ = flagValue;
@@ -938,7 +956,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForText() {
938
956
  // be accessing the provider multiple times but the end state of this
939
957
  // instance and the returned flag value would be the same.
940
958
 
941
- markFlagAsAccessed(50, "enableViewRecyclingForText");
959
+ markFlagAsAccessed(51, "enableViewRecyclingForText");
942
960
 
943
961
  flagValue = currentProvider_->enableViewRecyclingForText();
944
962
  enableViewRecyclingForText_ = flagValue;
@@ -956,7 +974,7 @@ bool ReactNativeFeatureFlagsAccessor::enableViewRecyclingForView() {
956
974
  // be accessing the provider multiple times but the end state of this
957
975
  // instance and the returned flag value would be the same.
958
976
 
959
- markFlagAsAccessed(51, "enableViewRecyclingForView");
977
+ markFlagAsAccessed(52, "enableViewRecyclingForView");
960
978
 
961
979
  flagValue = currentProvider_->enableViewRecyclingForView();
962
980
  enableViewRecyclingForView_ = flagValue;
@@ -974,7 +992,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewClippingWithoutScrollView
974
992
  // be accessing the provider multiple times but the end state of this
975
993
  // instance and the returned flag value would be the same.
976
994
 
977
- markFlagAsAccessed(52, "enableVirtualViewClippingWithoutScrollViewClipping");
995
+ markFlagAsAccessed(53, "enableVirtualViewClippingWithoutScrollViewClipping");
978
996
 
979
997
  flagValue = currentProvider_->enableVirtualViewClippingWithoutScrollViewClipping();
980
998
  enableVirtualViewClippingWithoutScrollViewClipping_ = flagValue;
@@ -992,7 +1010,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewContainerStateExperimenta
992
1010
  // be accessing the provider multiple times but the end state of this
993
1011
  // instance and the returned flag value would be the same.
994
1012
 
995
- markFlagAsAccessed(53, "enableVirtualViewContainerStateExperimental");
1013
+ markFlagAsAccessed(54, "enableVirtualViewContainerStateExperimental");
996
1014
 
997
1015
  flagValue = currentProvider_->enableVirtualViewContainerStateExperimental();
998
1016
  enableVirtualViewContainerStateExperimental_ = flagValue;
@@ -1010,7 +1028,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewDebugFeatures() {
1010
1028
  // be accessing the provider multiple times but the end state of this
1011
1029
  // instance and the returned flag value would be the same.
1012
1030
 
1013
- markFlagAsAccessed(54, "enableVirtualViewDebugFeatures");
1031
+ markFlagAsAccessed(55, "enableVirtualViewDebugFeatures");
1014
1032
 
1015
1033
  flagValue = currentProvider_->enableVirtualViewDebugFeatures();
1016
1034
  enableVirtualViewDebugFeatures_ = flagValue;
@@ -1028,7 +1046,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewRenderState() {
1028
1046
  // be accessing the provider multiple times but the end state of this
1029
1047
  // instance and the returned flag value would be the same.
1030
1048
 
1031
- markFlagAsAccessed(55, "enableVirtualViewRenderState");
1049
+ markFlagAsAccessed(56, "enableVirtualViewRenderState");
1032
1050
 
1033
1051
  flagValue = currentProvider_->enableVirtualViewRenderState();
1034
1052
  enableVirtualViewRenderState_ = flagValue;
@@ -1046,7 +1064,7 @@ bool ReactNativeFeatureFlagsAccessor::enableVirtualViewWindowFocusDetection() {
1046
1064
  // be accessing the provider multiple times but the end state of this
1047
1065
  // instance and the returned flag value would be the same.
1048
1066
 
1049
- markFlagAsAccessed(56, "enableVirtualViewWindowFocusDetection");
1067
+ markFlagAsAccessed(57, "enableVirtualViewWindowFocusDetection");
1050
1068
 
1051
1069
  flagValue = currentProvider_->enableVirtualViewWindowFocusDetection();
1052
1070
  enableVirtualViewWindowFocusDetection_ = flagValue;
@@ -1064,7 +1082,7 @@ bool ReactNativeFeatureFlagsAccessor::enableWebPerformanceAPIsByDefault() {
1064
1082
  // be accessing the provider multiple times but the end state of this
1065
1083
  // instance and the returned flag value would be the same.
1066
1084
 
1067
- markFlagAsAccessed(57, "enableWebPerformanceAPIsByDefault");
1085
+ markFlagAsAccessed(58, "enableWebPerformanceAPIsByDefault");
1068
1086
 
1069
1087
  flagValue = currentProvider_->enableWebPerformanceAPIsByDefault();
1070
1088
  enableWebPerformanceAPIsByDefault_ = flagValue;
@@ -1082,7 +1100,7 @@ bool ReactNativeFeatureFlagsAccessor::fixMappingOfEventPrioritiesBetweenFabricAn
1082
1100
  // be accessing the provider multiple times but the end state of this
1083
1101
  // instance and the returned flag value would be the same.
1084
1102
 
1085
- markFlagAsAccessed(58, "fixMappingOfEventPrioritiesBetweenFabricAndReact");
1103
+ markFlagAsAccessed(59, "fixMappingOfEventPrioritiesBetweenFabricAndReact");
1086
1104
 
1087
1105
  flagValue = currentProvider_->fixMappingOfEventPrioritiesBetweenFabricAndReact();
1088
1106
  fixMappingOfEventPrioritiesBetweenFabricAndReact_ = flagValue;
@@ -1100,7 +1118,7 @@ bool ReactNativeFeatureFlagsAccessor::fuseboxAssertSingleHostState() {
1100
1118
  // be accessing the provider multiple times but the end state of this
1101
1119
  // instance and the returned flag value would be the same.
1102
1120
 
1103
- markFlagAsAccessed(59, "fuseboxAssertSingleHostState");
1121
+ markFlagAsAccessed(60, "fuseboxAssertSingleHostState");
1104
1122
 
1105
1123
  flagValue = currentProvider_->fuseboxAssertSingleHostState();
1106
1124
  fuseboxAssertSingleHostState_ = flagValue;
@@ -1118,7 +1136,7 @@ bool ReactNativeFeatureFlagsAccessor::fuseboxEnabledRelease() {
1118
1136
  // be accessing the provider multiple times but the end state of this
1119
1137
  // instance and the returned flag value would be the same.
1120
1138
 
1121
- markFlagAsAccessed(60, "fuseboxEnabledRelease");
1139
+ markFlagAsAccessed(61, "fuseboxEnabledRelease");
1122
1140
 
1123
1141
  flagValue = currentProvider_->fuseboxEnabledRelease();
1124
1142
  fuseboxEnabledRelease_ = flagValue;
@@ -1136,7 +1154,7 @@ bool ReactNativeFeatureFlagsAccessor::fuseboxNetworkInspectionEnabled() {
1136
1154
  // be accessing the provider multiple times but the end state of this
1137
1155
  // instance and the returned flag value would be the same.
1138
1156
 
1139
- markFlagAsAccessed(61, "fuseboxNetworkInspectionEnabled");
1157
+ markFlagAsAccessed(62, "fuseboxNetworkInspectionEnabled");
1140
1158
 
1141
1159
  flagValue = currentProvider_->fuseboxNetworkInspectionEnabled();
1142
1160
  fuseboxNetworkInspectionEnabled_ = flagValue;
@@ -1154,7 +1172,7 @@ bool ReactNativeFeatureFlagsAccessor::hideOffscreenVirtualViewsOnIOS() {
1154
1172
  // be accessing the provider multiple times but the end state of this
1155
1173
  // instance and the returned flag value would be the same.
1156
1174
 
1157
- markFlagAsAccessed(62, "hideOffscreenVirtualViewsOnIOS");
1175
+ markFlagAsAccessed(63, "hideOffscreenVirtualViewsOnIOS");
1158
1176
 
1159
1177
  flagValue = currentProvider_->hideOffscreenVirtualViewsOnIOS();
1160
1178
  hideOffscreenVirtualViewsOnIOS_ = flagValue;
@@ -1172,7 +1190,7 @@ bool ReactNativeFeatureFlagsAccessor::overrideBySynchronousMountPropsAtMountingA
1172
1190
  // be accessing the provider multiple times but the end state of this
1173
1191
  // instance and the returned flag value would be the same.
1174
1192
 
1175
- markFlagAsAccessed(63, "overrideBySynchronousMountPropsAtMountingAndroid");
1193
+ markFlagAsAccessed(64, "overrideBySynchronousMountPropsAtMountingAndroid");
1176
1194
 
1177
1195
  flagValue = currentProvider_->overrideBySynchronousMountPropsAtMountingAndroid();
1178
1196
  overrideBySynchronousMountPropsAtMountingAndroid_ = flagValue;
@@ -1190,7 +1208,7 @@ bool ReactNativeFeatureFlagsAccessor::perfIssuesEnabled() {
1190
1208
  // be accessing the provider multiple times but the end state of this
1191
1209
  // instance and the returned flag value would be the same.
1192
1210
 
1193
- markFlagAsAccessed(64, "perfIssuesEnabled");
1211
+ markFlagAsAccessed(65, "perfIssuesEnabled");
1194
1212
 
1195
1213
  flagValue = currentProvider_->perfIssuesEnabled();
1196
1214
  perfIssuesEnabled_ = flagValue;
@@ -1208,7 +1226,7 @@ bool ReactNativeFeatureFlagsAccessor::perfMonitorV2Enabled() {
1208
1226
  // be accessing the provider multiple times but the end state of this
1209
1227
  // instance and the returned flag value would be the same.
1210
1228
 
1211
- markFlagAsAccessed(65, "perfMonitorV2Enabled");
1229
+ markFlagAsAccessed(66, "perfMonitorV2Enabled");
1212
1230
 
1213
1231
  flagValue = currentProvider_->perfMonitorV2Enabled();
1214
1232
  perfMonitorV2Enabled_ = flagValue;
@@ -1226,7 +1244,7 @@ double ReactNativeFeatureFlagsAccessor::preparedTextCacheSize() {
1226
1244
  // be accessing the provider multiple times but the end state of this
1227
1245
  // instance and the returned flag value would be the same.
1228
1246
 
1229
- markFlagAsAccessed(66, "preparedTextCacheSize");
1247
+ markFlagAsAccessed(67, "preparedTextCacheSize");
1230
1248
 
1231
1249
  flagValue = currentProvider_->preparedTextCacheSize();
1232
1250
  preparedTextCacheSize_ = flagValue;
@@ -1244,7 +1262,7 @@ bool ReactNativeFeatureFlagsAccessor::preventShadowTreeCommitExhaustion() {
1244
1262
  // be accessing the provider multiple times but the end state of this
1245
1263
  // instance and the returned flag value would be the same.
1246
1264
 
1247
- markFlagAsAccessed(67, "preventShadowTreeCommitExhaustion");
1265
+ markFlagAsAccessed(68, "preventShadowTreeCommitExhaustion");
1248
1266
 
1249
1267
  flagValue = currentProvider_->preventShadowTreeCommitExhaustion();
1250
1268
  preventShadowTreeCommitExhaustion_ = flagValue;
@@ -1262,7 +1280,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldPressibilityUseW3CPointerEventsForHo
1262
1280
  // be accessing the provider multiple times but the end state of this
1263
1281
  // instance and the returned flag value would be the same.
1264
1282
 
1265
- markFlagAsAccessed(68, "shouldPressibilityUseW3CPointerEventsForHover");
1283
+ markFlagAsAccessed(69, "shouldPressibilityUseW3CPointerEventsForHover");
1266
1284
 
1267
1285
  flagValue = currentProvider_->shouldPressibilityUseW3CPointerEventsForHover();
1268
1286
  shouldPressibilityUseW3CPointerEventsForHover_ = flagValue;
@@ -1280,7 +1298,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldSetEnabledBasedOnAccessibilityState(
1280
1298
  // be accessing the provider multiple times but the end state of this
1281
1299
  // instance and the returned flag value would be the same.
1282
1300
 
1283
- markFlagAsAccessed(69, "shouldSetEnabledBasedOnAccessibilityState");
1301
+ markFlagAsAccessed(70, "shouldSetEnabledBasedOnAccessibilityState");
1284
1302
 
1285
1303
  flagValue = currentProvider_->shouldSetEnabledBasedOnAccessibilityState();
1286
1304
  shouldSetEnabledBasedOnAccessibilityState_ = flagValue;
@@ -1298,7 +1316,7 @@ bool ReactNativeFeatureFlagsAccessor::shouldTriggerResponderTransferOnScrollAndr
1298
1316
  // be accessing the provider multiple times but the end state of this
1299
1317
  // instance and the returned flag value would be the same.
1300
1318
 
1301
- markFlagAsAccessed(70, "shouldTriggerResponderTransferOnScrollAndroid");
1319
+ markFlagAsAccessed(71, "shouldTriggerResponderTransferOnScrollAndroid");
1302
1320
 
1303
1321
  flagValue = currentProvider_->shouldTriggerResponderTransferOnScrollAndroid();
1304
1322
  shouldTriggerResponderTransferOnScrollAndroid_ = flagValue;
@@ -1316,7 +1334,7 @@ bool ReactNativeFeatureFlagsAccessor::skipActivityIdentityAssertionOnHostPause()
1316
1334
  // be accessing the provider multiple times but the end state of this
1317
1335
  // instance and the returned flag value would be the same.
1318
1336
 
1319
- markFlagAsAccessed(71, "skipActivityIdentityAssertionOnHostPause");
1337
+ markFlagAsAccessed(72, "skipActivityIdentityAssertionOnHostPause");
1320
1338
 
1321
1339
  flagValue = currentProvider_->skipActivityIdentityAssertionOnHostPause();
1322
1340
  skipActivityIdentityAssertionOnHostPause_ = flagValue;
@@ -1334,7 +1352,7 @@ bool ReactNativeFeatureFlagsAccessor::traceTurboModulePromiseRejectionsOnAndroid
1334
1352
  // be accessing the provider multiple times but the end state of this
1335
1353
  // instance and the returned flag value would be the same.
1336
1354
 
1337
- markFlagAsAccessed(72, "traceTurboModulePromiseRejectionsOnAndroid");
1355
+ markFlagAsAccessed(73, "traceTurboModulePromiseRejectionsOnAndroid");
1338
1356
 
1339
1357
  flagValue = currentProvider_->traceTurboModulePromiseRejectionsOnAndroid();
1340
1358
  traceTurboModulePromiseRejectionsOnAndroid_ = flagValue;
@@ -1352,7 +1370,7 @@ bool ReactNativeFeatureFlagsAccessor::updateRuntimeShadowNodeReferencesOnCommit(
1352
1370
  // be accessing the provider multiple times but the end state of this
1353
1371
  // instance and the returned flag value would be the same.
1354
1372
 
1355
- markFlagAsAccessed(73, "updateRuntimeShadowNodeReferencesOnCommit");
1373
+ markFlagAsAccessed(74, "updateRuntimeShadowNodeReferencesOnCommit");
1356
1374
 
1357
1375
  flagValue = currentProvider_->updateRuntimeShadowNodeReferencesOnCommit();
1358
1376
  updateRuntimeShadowNodeReferencesOnCommit_ = flagValue;
@@ -1370,7 +1388,7 @@ bool ReactNativeFeatureFlagsAccessor::useAlwaysAvailableJSErrorHandling() {
1370
1388
  // be accessing the provider multiple times but the end state of this
1371
1389
  // instance and the returned flag value would be the same.
1372
1390
 
1373
- markFlagAsAccessed(74, "useAlwaysAvailableJSErrorHandling");
1391
+ markFlagAsAccessed(75, "useAlwaysAvailableJSErrorHandling");
1374
1392
 
1375
1393
  flagValue = currentProvider_->useAlwaysAvailableJSErrorHandling();
1376
1394
  useAlwaysAvailableJSErrorHandling_ = flagValue;
@@ -1388,7 +1406,7 @@ bool ReactNativeFeatureFlagsAccessor::useFabricInterop() {
1388
1406
  // be accessing the provider multiple times but the end state of this
1389
1407
  // instance and the returned flag value would be the same.
1390
1408
 
1391
- markFlagAsAccessed(75, "useFabricInterop");
1409
+ markFlagAsAccessed(76, "useFabricInterop");
1392
1410
 
1393
1411
  flagValue = currentProvider_->useFabricInterop();
1394
1412
  useFabricInterop_ = flagValue;
@@ -1406,7 +1424,7 @@ bool ReactNativeFeatureFlagsAccessor::useNativeEqualsInNativeReadableArrayAndroi
1406
1424
  // be accessing the provider multiple times but the end state of this
1407
1425
  // instance and the returned flag value would be the same.
1408
1426
 
1409
- markFlagAsAccessed(76, "useNativeEqualsInNativeReadableArrayAndroid");
1427
+ markFlagAsAccessed(77, "useNativeEqualsInNativeReadableArrayAndroid");
1410
1428
 
1411
1429
  flagValue = currentProvider_->useNativeEqualsInNativeReadableArrayAndroid();
1412
1430
  useNativeEqualsInNativeReadableArrayAndroid_ = flagValue;
@@ -1424,7 +1442,7 @@ bool ReactNativeFeatureFlagsAccessor::useNativeTransformHelperAndroid() {
1424
1442
  // be accessing the provider multiple times but the end state of this
1425
1443
  // instance and the returned flag value would be the same.
1426
1444
 
1427
- markFlagAsAccessed(77, "useNativeTransformHelperAndroid");
1445
+ markFlagAsAccessed(78, "useNativeTransformHelperAndroid");
1428
1446
 
1429
1447
  flagValue = currentProvider_->useNativeTransformHelperAndroid();
1430
1448
  useNativeTransformHelperAndroid_ = flagValue;
@@ -1442,7 +1460,7 @@ bool ReactNativeFeatureFlagsAccessor::useNativeViewConfigsInBridgelessMode() {
1442
1460
  // be accessing the provider multiple times but the end state of this
1443
1461
  // instance and the returned flag value would be the same.
1444
1462
 
1445
- markFlagAsAccessed(78, "useNativeViewConfigsInBridgelessMode");
1463
+ markFlagAsAccessed(79, "useNativeViewConfigsInBridgelessMode");
1446
1464
 
1447
1465
  flagValue = currentProvider_->useNativeViewConfigsInBridgelessMode();
1448
1466
  useNativeViewConfigsInBridgelessMode_ = flagValue;
@@ -1460,7 +1478,7 @@ bool ReactNativeFeatureFlagsAccessor::useRawPropsJsiValue() {
1460
1478
  // be accessing the provider multiple times but the end state of this
1461
1479
  // instance and the returned flag value would be the same.
1462
1480
 
1463
- markFlagAsAccessed(79, "useRawPropsJsiValue");
1481
+ markFlagAsAccessed(80, "useRawPropsJsiValue");
1464
1482
 
1465
1483
  flagValue = currentProvider_->useRawPropsJsiValue();
1466
1484
  useRawPropsJsiValue_ = flagValue;
@@ -1478,7 +1496,7 @@ bool ReactNativeFeatureFlagsAccessor::useShadowNodeStateOnClone() {
1478
1496
  // be accessing the provider multiple times but the end state of this
1479
1497
  // instance and the returned flag value would be the same.
1480
1498
 
1481
- markFlagAsAccessed(80, "useShadowNodeStateOnClone");
1499
+ markFlagAsAccessed(81, "useShadowNodeStateOnClone");
1482
1500
 
1483
1501
  flagValue = currentProvider_->useShadowNodeStateOnClone();
1484
1502
  useShadowNodeStateOnClone_ = flagValue;
@@ -1496,7 +1514,7 @@ bool ReactNativeFeatureFlagsAccessor::useSharedAnimatedBackend() {
1496
1514
  // be accessing the provider multiple times but the end state of this
1497
1515
  // instance and the returned flag value would be the same.
1498
1516
 
1499
- markFlagAsAccessed(81, "useSharedAnimatedBackend");
1517
+ markFlagAsAccessed(82, "useSharedAnimatedBackend");
1500
1518
 
1501
1519
  flagValue = currentProvider_->useSharedAnimatedBackend();
1502
1520
  useSharedAnimatedBackend_ = flagValue;
@@ -1514,7 +1532,7 @@ bool ReactNativeFeatureFlagsAccessor::useTraitHiddenOnAndroid() {
1514
1532
  // be accessing the provider multiple times but the end state of this
1515
1533
  // instance and the returned flag value would be the same.
1516
1534
 
1517
- markFlagAsAccessed(82, "useTraitHiddenOnAndroid");
1535
+ markFlagAsAccessed(83, "useTraitHiddenOnAndroid");
1518
1536
 
1519
1537
  flagValue = currentProvider_->useTraitHiddenOnAndroid();
1520
1538
  useTraitHiddenOnAndroid_ = flagValue;
@@ -1532,7 +1550,7 @@ bool ReactNativeFeatureFlagsAccessor::useTurboModuleInterop() {
1532
1550
  // be accessing the provider multiple times but the end state of this
1533
1551
  // instance and the returned flag value would be the same.
1534
1552
 
1535
- markFlagAsAccessed(83, "useTurboModuleInterop");
1553
+ markFlagAsAccessed(84, "useTurboModuleInterop");
1536
1554
 
1537
1555
  flagValue = currentProvider_->useTurboModuleInterop();
1538
1556
  useTurboModuleInterop_ = flagValue;
@@ -1550,7 +1568,7 @@ bool ReactNativeFeatureFlagsAccessor::useTurboModules() {
1550
1568
  // be accessing the provider multiple times but the end state of this
1551
1569
  // instance and the returned flag value would be the same.
1552
1570
 
1553
- markFlagAsAccessed(84, "useTurboModules");
1571
+ markFlagAsAccessed(85, "useTurboModules");
1554
1572
 
1555
1573
  flagValue = currentProvider_->useTurboModules();
1556
1574
  useTurboModules_ = flagValue;
@@ -1568,7 +1586,7 @@ double ReactNativeFeatureFlagsAccessor::viewCullingOutsetRatio() {
1568
1586
  // be accessing the provider multiple times but the end state of this
1569
1587
  // instance and the returned flag value would be the same.
1570
1588
 
1571
- markFlagAsAccessed(85, "viewCullingOutsetRatio");
1589
+ markFlagAsAccessed(86, "viewCullingOutsetRatio");
1572
1590
 
1573
1591
  flagValue = currentProvider_->viewCullingOutsetRatio();
1574
1592
  viewCullingOutsetRatio_ = flagValue;
@@ -1586,7 +1604,7 @@ double ReactNativeFeatureFlagsAccessor::virtualViewHysteresisRatio() {
1586
1604
  // be accessing the provider multiple times but the end state of this
1587
1605
  // instance and the returned flag value would be the same.
1588
1606
 
1589
- markFlagAsAccessed(86, "virtualViewHysteresisRatio");
1607
+ markFlagAsAccessed(87, "virtualViewHysteresisRatio");
1590
1608
 
1591
1609
  flagValue = currentProvider_->virtualViewHysteresisRatio();
1592
1610
  virtualViewHysteresisRatio_ = flagValue;
@@ -1604,7 +1622,7 @@ double ReactNativeFeatureFlagsAccessor::virtualViewPrerenderRatio() {
1604
1622
  // be accessing the provider multiple times but the end state of this
1605
1623
  // instance and the returned flag value would be the same.
1606
1624
 
1607
- markFlagAsAccessed(87, "virtualViewPrerenderRatio");
1625
+ markFlagAsAccessed(88, "virtualViewPrerenderRatio");
1608
1626
 
1609
1627
  flagValue = currentProvider_->virtualViewPrerenderRatio();
1610
1628
  virtualViewPrerenderRatio_ = flagValue;