mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-14 03:37:05 +05:30
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:
parent
68c76628a3
commit
c589ef483e
2 changed files with 8 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,11 @@
|
|||
},
|
||||
{
|
||||
"managers": ["gradle"],
|
||||
"packagePatterns": ["^com.android.tools.build"],
|
||||
"packagePatterns": [
|
||||
"^com.android.tools.build",
|
||||
"^org.jetbrains.kotlin",
|
||||
"^com.google.accompanist"
|
||||
],
|
||||
"enabled": false
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue