From a46fa85d670b6bb6f63c1343a9f9cfeef7be196c Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Thu, 17 Oct 2024 21:07:05 -0600 Subject: [PATCH] build: update to kotlin 2.0.0 --- .gitignore | 1 + build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) 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 }