Skip to content

Commit 411af39

Browse files
generatedunixname89002005232357facebook-github-bot
authored andcommitted
Revert D71908601 (#50409)
Summary: Pull Request resolved: #50409 Reviewed By: rozele Differential Revision: D72190428 fbshipit-source-id: 00d2be5eda7fd6b89883a27c5ccb463b76428258
1 parent 0670e38 commit 411af39

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

packages/react-native/ReactAndroid/src/main/java/com/facebook/react/internal/featureflags/ReactNativeFeatureFlagsDefaults.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<753948273e5701090a7cfb7d1582eb00>>
7+
* @generated SignedSource<<9fb58925a4577f7eba248a2db3d143da>>
88
*/
99

1010
/**
@@ -93,7 +93,7 @@ public open class ReactNativeFeatureFlagsDefaults : ReactNativeFeatureFlagsProvi
9393

9494
override fun useEditTextStockAndroidFocusBehavior(): Boolean = true
9595

96-
override fun useFabricInterop(): Boolean = true
96+
override fun useFabricInterop(): Boolean = false
9797

9898
override fun useNativeViewConfigsInBridgelessMode(): Boolean = false
9999

packages/react-native/ReactCommon/react/featureflags/ReactNativeFeatureFlagsDefaults.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<63060a0846ca0aca3d7ca74e322a12e2>>
7+
* @generated SignedSource<<c94a18131e437343d10b762e136c92e0>>
88
*/
99

1010
/**
@@ -168,7 +168,7 @@ class ReactNativeFeatureFlagsDefaults : public ReactNativeFeatureFlagsProvider {
168168
}
169169

170170
bool useFabricInterop() override {
171-
return true;
171+
return false;
172172
}
173173

174174
bool useNativeViewConfigsInBridgelessMode() override {

packages/react-native/scripts/featureflags/ReactNativeFeatureFlags.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ const definitions: FeatureFlagDefinitions = {
417417
ossReleaseStage: 'none',
418418
},
419419
useFabricInterop: {
420-
defaultValue: true,
420+
defaultValue: false,
421421
metadata: {
422422
description:
423423
'Should this application enable the Fabric Interop Layer for Android? If yes, the application will behave so that it can accept non-Fabric components and render them on Fabric. This toggle is controlling extra logic such as custom event dispatching that are needed for the Fabric Interop Layer to work correctly.',

packages/react-native/src/private/featureflags/ReactNativeFeatureFlags.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This source code is licensed under the MIT license found in the
55
* LICENSE file in the root directory of this source tree.
66
*
7-
* @generated SignedSource<<7fc4b0dd8278af97eee54ed0a7f129d3>>
7+
* @generated SignedSource<<1e478fb409ecd800a1e7dd274a636ae1>>
88
* @flow strict
99
*/
1010

@@ -302,7 +302,7 @@ export const useEditTextStockAndroidFocusBehavior: Getter<boolean> = createNativ
302302
/**
303303
* Should this application enable the Fabric Interop Layer for Android? If yes, the application will behave so that it can accept non-Fabric components and render them on Fabric. This toggle is controlling extra logic such as custom event dispatching that are needed for the Fabric Interop Layer to work correctly.
304304
*/
305-
export const useFabricInterop: Getter<boolean> = createNativeFlagGetter('useFabricInterop', true);
305+
export const useFabricInterop: Getter<boolean> = createNativeFlagGetter('useFabricInterop', false);
306306
/**
307307
* When enabled, the native view configs are used in bridgeless mode.
308308
*/

0 commit comments

Comments
 (0)