Skip to content
Merged
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<<8531ce29d0e5362517d35559ebda623b>>
* @generated SignedSource<<2452c003ffcba8e20b7cd40c68e05e3d>>
*/

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

override fun enableSwiftUIBasedFilters(): Boolean = true

override fun fixTextClippingAndroid15useBoundsForWidth(): Boolean = true

override fun preventShadowTreeCommitExhaustion(): Boolean = true

override fun useSharedAnimatedBackend(): Boolean = true
}
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<<6a047fa1d33ea17ebd7ba8d0680ee1cc>>
* @generated SignedSource<<6ded821dda8049a32168bf82333dd4c3>>
*/

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

bool cxxNativeAnimatedEnabled() override {
return true;
}

bool enableAccessibilityOrder() override {
return true;
}
Expand All @@ -42,6 +46,10 @@ class ReactNativeFeatureFlagsOverridesOSSExperimental : public ReactNativeFeatur
bool preventShadowTreeCommitExhaustion() override {
return true;
}

bool useSharedAnimatedBackend() override {
return true;
}
};

} // namespace facebook::react
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const definitions: FeatureFlagDefinitions = {
expectedReleaseValue: true,
purpose: 'experimentation',
},
ossReleaseStage: 'none',
ossReleaseStage: 'experimental',
},
defaultTextToOverflowHidden: {
defaultValue: true,
Expand Down Expand Up @@ -878,7 +878,7 @@ const definitions: FeatureFlagDefinitions = {
expectedReleaseValue: true,
purpose: 'experimentation',
},
ossReleaseStage: 'none',
ossReleaseStage: 'experimental',
},
useTraitHiddenOnAndroid: {
defaultValue: false,
Expand Down
Loading