From c6cd8d68f705e11fdbc999c907a72e2e0748a8dc Mon Sep 17 00:00:00 2001 From: darken Date: Sun, 22 Jun 2025 17:17:25 +0200 Subject: [PATCH] Upgrade Android Gradle Plugin and KSP This commit updates the Android Gradle Plugin (AGP) from version 8.10.0 to 8.10.1 and the Kotlin Symbol Processing (KSP) plugin from version 2.1.20-2.0.0 to 2.1.21-2.0.1. These changes are applied in the root `build.gradle.kts` file and the `buildSrc/build.gradle.kts` file. --- build.gradle.kts | 4 ++-- buildSrc/build.gradle.kts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index e20b7fa4..311765fc 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.google.devtools.ksp") version "2.1.20-2.0.0" apply false + id("com.google.devtools.ksp") version "2.1.21-2.0.1" apply false } buildscript { @@ -8,7 +8,7 @@ buildscript { mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:8.10.0") + classpath("com.android.tools.build:gradle:8.10.1") classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.Kotlin.core}") classpath("com.google.dagger:hilt-android-gradle-plugin:${Versions.Dagger.core}") classpath("androidx.navigation:navigation-safe-args-gradle-plugin:${Versions.AndroidX.Navigation.core}") diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 18e85489..a71594a1 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -8,7 +8,7 @@ repositories { mavenCentral() } dependencies { - implementation("com.android.tools.build:gradle:8.10.0") + implementation("com.android.tools.build:gradle:8.10.1") implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.21") implementation("com.squareup:javapoet:1.13.0") }