diff --git a/.gitignore b/.gitignore index c03b3271b..d461864a6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ captures/ .externalNativeBuild *.iml .cxx +.kotlin diff --git a/build.gradle b/build.gradle index 213148be0..13d37e8f4 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - kotlin_version = '1.9.23' + kotlin_version = '2.0.21' navigation_version = "2.8.3" hilt_version = '2.51.1' } @@ -15,7 +15,7 @@ plugins { id "com.android.application" version '8.5.2' apply false id "androidx.navigation.safeargs.kotlin" version "$navigation_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 }