build: update to kotlin 2.0.0

This commit is contained in:
Alexander Capehart 2024-10-17 21:07:05 -06:00
parent fbd94f1a21
commit a46fa85d67
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -13,3 +13,4 @@ captures/
.externalNativeBuild .externalNativeBuild
*.iml *.iml
.cxx .cxx
.kotlin

View file

@ -1,6 +1,6 @@
buildscript { buildscript {
ext { ext {
kotlin_version = '1.9.23' kotlin_version = '2.0.21'
navigation_version = "2.8.3" navigation_version = "2.8.3"
hilt_version = '2.51.1' hilt_version = '2.51.1'
} }
@ -15,7 +15,7 @@ plugins {
id "com.android.application" version '8.5.2' apply false id "com.android.application" version '8.5.2' apply false
id "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false id "androidx.navigation.safeargs.kotlin" version "$navigation_version" apply false
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
id "com.google.devtools.ksp" version '1.9.23-1.0.20' apply false id "com.google.devtools.ksp" version '2.0.21-1.0.25' apply false
id "com.diffplug.spotless" version "6.20.0" apply false id "com.diffplug.spotless" version "6.20.0" apply false
} }