StrongSkipping
Enable strong skipping.
Strong Skipping is a mode that improves the runtime performance of your application by skipping unnecessary invocations of composable functions for which the parameters have not changed. In particular, when enabled, composable functions with unstable parameters become skippable and lambdas with unstable captures will be memoized.
For more information, see this link:
This feature is enabled by default. To disable, provide this feature flag in a disabled state:
composeCompiler {
featureFlags = setOf(ComposeFeatureFlag.StrongSkipping.disabled())
}
Content copied to clipboard