fix: disable upgrades for Accompanist and Kotlin

- Accompanist 0.24.7-alpha brings a newer version of Compose that has a bug in LazyColumn
- Kotlin 1.6.21 breaks M3 IDE support
This commit is contained in:
Harsh Shandilya 2022-05-10 13:23:01 +05:30
parent 68c76628a3
commit c589ef483e
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 8 additions and 2 deletions

View file

@ -23,7 +23,9 @@ tasks.withType<DependencyUpdatesTask>().configureEach {
rejectVersionIf {
when (candidate.group) {
"com.android.application",
"com.android.library" -> true
"com.android.library",
"com.google.accompanist",
"org.jetbrains.kotlin" -> true
else -> isNonStable(candidate.version) && !isNonStable(currentVersion)
}
}

View file

@ -11,7 +11,11 @@
},
{
"managers": ["gradle"],
"packagePatterns": ["^com.android.tools.build"],
"packagePatterns": [
"^com.android.tools.build",
"^org.jetbrains.kotlin",
"^com.google.accompanist"
],
"enabled": false
}
]