fix: use nav3 snapshots

This works around a fatal crash that is triggered during configuration changes
This commit is contained in:
Harsh Shandilya 2025-06-03 01:29:35 +05:30
parent 6badde13b0
commit 669ec2ad09
3 changed files with 23 additions and 5 deletions

View file

@ -60,6 +60,17 @@ composeCompiler {
)
}
// TODO: Remove when Nav3 gets a new release
configurations.configureEach {
resolutionStrategy {
eachDependency {
if (requested.group == "androidx.lifecycle") {
useVersion(libs.versions.lifecycle.get())
}
}
}
}
licensee {
allow("Apache-2.0")
allow("MIT")