fix(build): enable new PausableComposition Compose Compiler feature

This commit is contained in:
Harsh Shandilya 2024-12-02 01:02:09 +05:30
parent ba7607429a
commit f35c12fcbd
3 changed files with 21 additions and 2 deletions

View file

@ -54,7 +54,12 @@ baselineProfile {
@Suppress("deprecation") from(projects.benchmark.dependencyProject)
}
composeCompiler { featureFlags.addAll(ComposeFeatureFlag.OptimizeNonSkippingGroups) }
composeCompiler {
featureFlags.addAll(
ComposeFeatureFlag.OptimizeNonSkippingGroups,
ComposeFeatureFlag.PausableComposition,
)
}
licensee {
allow("Apache-2.0")