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<<0bafb0a2fb79c4220d21f1736894af14>>
* @generated SignedSource<<1f89971ab4d5b2ee27ace3a3c8da78cf>>
*/

/**
Expand All @@ -23,6 +23,8 @@ 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 enableAccessibilityOrder(): Boolean = true

override fun preventShadowTreeCommitExhaustion(): Boolean = true

override fun useNativeEqualsInNativeReadableArrayAndroid(): 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<<a045579d42e45fa80831856734a063aa>>
* @generated SignedSource<<c9b7b95d3cc3fed879476f191a60d3f2>>
*/

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

bool enableAccessibilityOrder() override {
return true;
}

bool preventShadowTreeCommitExhaustion() override {
return true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ const definitions: FeatureFlagDefinitions = {
expectedReleaseValue: true,
purpose: 'experimentation',
},
ossReleaseStage: 'none',
ossReleaseStage: 'experimental',
},
enableAccumulatedUpdatesInRawPropsAndroid: {
defaultValue: false,
Expand Down
Loading