Skip to content

Commit

Permalink
chore: move Kotlin version out of toml file (#318)
Browse files Browse the repository at this point in the history
The Kotlin version can be stored in just the build.gradle.kts.
  • Loading branch information
Chesire committed Jun 6, 2022
1 parent 971705c commit 9e1e0be
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ buildscript {
dependencies {
classpath("com.android.tools.build:gradle:7.2.1")
classpath("com.google.dagger:hilt-android-gradle-plugin:${libs.versions.hilt.get()}")
classpath(kotlin("gradle-plugin", libs.versions.kotlin.get()))
classpath(kotlin("gradle-plugin", "1.6.10"))
}
}

Expand Down
1 change: 0 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
compose = "1.1.1"
coroutines = "1.6.2"
hilt = "2.38.1"
kotlin = "1.6.10"
lifecycle = "2.4.1"

[libraries]
Expand Down

0 comments on commit 9e1e0be

Please sign in to comment.