gradle: update activity-compose and adjust updates plugin

This commit is contained in:
Harsh Shandilya 2022-07-07 15:22:13 +05:30
parent 3924e9426b
commit 61fabc7b35
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 2 additions and 3 deletions

View file

@ -19,9 +19,8 @@ class DependencyUpdatesPlugin : Plugin<Project> {
project.tasks.withType<DependencyUpdatesTask>().configureEach {
rejectVersionIf {
when (candidate.group) {
"com.android.application",
"com.android.library",
"com.google.accompanist",
"com.squareup.okhttp3",
"org.jetbrains.kotlin" -> true
else -> isNonStable(candidate.version) && !isNonStable(currentVersion)
}