Tweak Gradle version catalog
This commit is contained in:
parent
174520b616
commit
a366c68f37
2 changed files with 4 additions and 2 deletions
|
@ -7,7 +7,7 @@ buildscript {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath("com.android.tools.build", "gradle", "7.2.0")
|
classpath("com.android.tools.build", "gradle", "7.2.0")
|
||||||
classpath(kotlin("gradle-plugin", "1.6.21"))
|
classpath(kotlin("gradle-plugin", libs.versions.kotlin.get()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm")
|
kotlin("jvm")
|
||||||
kotlin("plugin.serialization") version "1.6.21"
|
@Suppress("DSL_SCOPE_VIOLATION")
|
||||||
|
alias(libs.plugins.kotlin.serialization)
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets.all {
|
sourceSets.all {
|
||||||
|
|
Loading…
Reference in a new issue