Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<4c0b09eb9df8e4580dc4778a91591236>>
* @generated SignedSource<<4227353cb809dac40fe70d83154ba2bc>>
*/

/**
Expand All @@ -27,7 +27,7 @@ public open class ReactNativeFeatureFlagsDefaults : ReactNativeFeatureFlagsProvi

override fun cdpInteractionMetricsEnabled(): Boolean = false

override fun cxxNativeAnimatedEnabled(): Boolean = true
override fun cxxNativeAnimatedEnabled(): Boolean = false

override fun defaultTextToOverflowHidden(): Boolean = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<0642a793f11832205a362e6d1ae6e081>>
* @generated SignedSource<<d0524c8293f029992b78e4f9479b8a1d>>
*/

/**
Expand All @@ -23,6 +23,8 @@ public open class ReactNativeFeatureFlagsOverrides_RNOSS_Canary_Android : ReactN
// We could use JNI to get the defaults from C++,
// but that is more expensive than just duplicating the defaults here.

override fun cxxNativeAnimatedEnabled(): Boolean = true

override fun enableAccessibilityOrder(): Boolean = true

override fun enableBridgelessArchitecture(): Boolean = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<21e8d5e2a4a37e0a51f25609b80f4924>>
* @generated SignedSource<<7103d9c2fa3e2f152ce60b5dff12c0e4>>
*/

/**
Expand All @@ -23,8 +23,6 @@ public open class ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_Android :
// We could use JNI to get the defaults from C++,
// but that is more expensive than just duplicating the defaults here.

override fun cxxNativeAnimatedEnabled(): Boolean = true

override fun enableFlexboxAutoMinSizeInStrictMode(): Boolean = true

override fun enableRuntimeSchedulerQueueClearingOnError(): Boolean = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<6451b9c50b78b3b00fc74b137f5ca541>>
* @generated SignedSource<<d466be4c46ae5939d812dbbc5e7799b5>>
*/

/**
Expand Down Expand Up @@ -36,7 +36,7 @@ class ReactNativeFeatureFlagsDefaults : public ReactNativeFeatureFlagsProvider {
}

bool cxxNativeAnimatedEnabled() override {
return true;
return false;
}

bool defaultTextToOverflowHidden() override {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<72ef3ea85f4833a96fe222950d16278b>>
* @generated SignedSource<<5d286510a4f8642adcc9d38556dd60dd>>
*/

/**
Expand All @@ -27,6 +27,10 @@ class ReactNativeFeatureFlagsOverridesOSSCanary : public ReactNativeFeatureFlags
public:
ReactNativeFeatureFlagsOverridesOSSCanary() = default;

bool cxxNativeAnimatedEnabled() override {
return true;
}

bool enableAccessibilityOrder() override {
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<e4a9f907d9bcfa0e84f8dbcf5b1dc2be>>
* @generated SignedSource<<7341b28bb77aeeec670051149faeae04>>
*/

/**
Expand All @@ -27,10 +27,6 @@ class ReactNativeFeatureFlagsOverridesOSSExperimental : public ReactNativeFeatur
public:
ReactNativeFeatureFlagsOverridesOSSExperimental() = default;

bool cxxNativeAnimatedEnabled() override {
return true;
}

bool enableFlexboxAutoMinSizeInStrictMode() override {
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ const definitions: FeatureFlagDefinitions = {
ossReleaseStage: 'none',
},
cxxNativeAnimatedEnabled: {
defaultValue: true,
defaultValue: false,
metadata: {
dateAdded: '2025-03-14',
description:
'Use a C++ implementation of Native Animated instead of the platform implementation.',
expectedReleaseValue: true,
purpose: 'experimentation',
},
ossReleaseStage: 'experimental',
ossReleaseStage: 'canary',
},
defaultTextToOverflowHidden: {
defaultValue: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @generated SignedSource<<1a333a44919efce6bb2070bae79bdf9b>>
* @generated SignedSource<<5e80ae1ef75d1fbf51fd94cd5495157f>>
* @flow strict
* @noformat
*/
Expand Down Expand Up @@ -220,7 +220,7 @@ export const cdpInteractionMetricsEnabled: Getter<boolean> = createNativeFlagGet
/**
* Use a C++ implementation of Native Animated instead of the platform implementation.
*/
export const cxxNativeAnimatedEnabled: Getter<boolean> = createNativeFlagGetter('cxxNativeAnimatedEnabled', true);
export const cxxNativeAnimatedEnabled: Getter<boolean> = createNativeFlagGetter('cxxNativeAnimatedEnabled', false);
/**
* When enabled, sets the default overflow style for Text components to hidden instead of visible.
*/
Expand Down
Loading