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<<2912fe4c90e3b493770bf14e70264656>>
* @generated SignedSource<<2c5d2f88cf7150403cbed87aeadc0239>>
*/

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

override fun enableBridgelessArchitecture(): Boolean = true

override fun enableFabricRenderer(): Boolean = true

override fun enableIntersectionObserverByDefault(): Boolean = true

override fun enableSwiftUIBasedFilters(): Boolean = true

override fun useNativeViewConfigsInBridgelessMode(): Boolean = true

override fun useTurboModuleInterop(): 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<<6a5fd95dffcab319acb765aa25a33d8d>>
* @generated SignedSource<<dcf277b9f00976b0e40394d1e0bd053f>>
*/

/**
Expand All @@ -25,12 +25,8 @@ public open class ReactNativeFeatureFlagsOverrides_RNOSS_Experimental_Android :

override fun cxxNativeAnimatedEnabled(): Boolean = true

override fun enableAccessibilityOrder(): Boolean = true

override fun enableSchedulerDelegateInvalidation(): Boolean = true

override fun enableSwiftUIBasedFilters(): Boolean = true

override fun preventShadowTreeCommitExhaustion(): Boolean = true

override fun useSharedAnimatedBackend(): 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<<1b2061068e0d6c9ca362ceddd97862da>>
* @generated SignedSource<<dab6dad91b32e837d1a303382566fc3d>>
*/

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

bool enableAccessibilityOrder() override {
return true;
}

bool enableBridgelessArchitecture() override {
return true;
}
Expand All @@ -39,6 +43,10 @@ class ReactNativeFeatureFlagsOverridesOSSCanary : public ReactNativeFeatureFlags
return true;
}

bool enableSwiftUIBasedFilters() override {
return true;
}

bool useNativeViewConfigsInBridgelessMode() 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<<887a3ac5f8a93cc5ae5c8d01ec1d5e46>>
* @generated SignedSource<<44778a01f2e3f503ea31d340f89587b8>>
*/

/**
Expand All @@ -31,18 +31,10 @@ class ReactNativeFeatureFlagsOverridesOSSExperimental : public ReactNativeFeatur
return true;
}

bool enableAccessibilityOrder() override {
return true;
}

bool enableSchedulerDelegateInvalidation() override {
return true;
}

bool enableSwiftUIBasedFilters() override {
return true;
}

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