|
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<<14c3186a1395a23befb73fc9da972de7>> |
| 7 | + * @generated SignedSource<<c866e69278d249dd79cb2fc193d1a7e2>> |
8 | 8 | */
|
9 | 9 |
|
10 | 10 | /**
|
@@ -45,6 +45,12 @@ class ReactNativeFeatureFlagsProviderHolder
|
45 | 45 | return method(javaProvider_);
|
46 | 46 | }
|
47 | 47 |
|
| 48 | + bool animatedShouldSignalBatch() override { |
| 49 | + static const auto method = |
| 50 | + getReactNativeFeatureFlagsProviderJavaClass()->getMethod<jboolean()>("animatedShouldSignalBatch"); |
| 51 | + return method(javaProvider_); |
| 52 | + } |
| 53 | + |
48 | 54 | bool disableMountItemReorderingAndroid() override {
|
49 | 55 | static const auto method =
|
50 | 56 | getReactNativeFeatureFlagsProviderJavaClass()->getMethod<jboolean()>("disableMountItemReorderingAndroid");
|
@@ -294,6 +300,11 @@ bool JReactNativeFeatureFlagsCxxInterop::commonTestFlag(
|
294 | 300 | return ReactNativeFeatureFlags::commonTestFlag();
|
295 | 301 | }
|
296 | 302 |
|
| 303 | +bool JReactNativeFeatureFlagsCxxInterop::animatedShouldSignalBatch( |
| 304 | + facebook::jni::alias_ref<JReactNativeFeatureFlagsCxxInterop> /*unused*/) { |
| 305 | + return ReactNativeFeatureFlags::animatedShouldSignalBatch(); |
| 306 | +} |
| 307 | + |
297 | 308 | bool JReactNativeFeatureFlagsCxxInterop::disableMountItemReorderingAndroid(
|
298 | 309 | facebook::jni::alias_ref<JReactNativeFeatureFlagsCxxInterop> /*unused*/) {
|
299 | 310 | return ReactNativeFeatureFlags::disableMountItemReorderingAndroid();
|
@@ -528,6 +539,9 @@ void JReactNativeFeatureFlagsCxxInterop::registerNatives() {
|
528 | 539 | makeNativeMethod(
|
529 | 540 | "commonTestFlag",
|
530 | 541 | JReactNativeFeatureFlagsCxxInterop::commonTestFlag),
|
| 542 | + makeNativeMethod( |
| 543 | + "animatedShouldSignalBatch", |
| 544 | + JReactNativeFeatureFlagsCxxInterop::animatedShouldSignalBatch), |
531 | 545 | makeNativeMethod(
|
532 | 546 | "disableMountItemReorderingAndroid",
|
533 | 547 | JReactNativeFeatureFlagsCxxInterop::disableMountItemReorderingAndroid),
|
|
0 commit comments