From 08d967d258d0a940f63582c59753bd9a837ac9ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 13 Jun 2026 06:26:33 +0000 Subject: [PATCH] chore(deps): bump the android-deps group in /android with 3 updates Bumps the android-deps group in /android with 3 updates: [org.jetbrains.kotlin.plugin.serialization](https://github.com/JetBrains/kotlin), [org.jetbrains.kotlin.plugin.parcelize](https://github.com/JetBrains/kotlin) and [org.jetbrains.kotlin.plugin.compose](https://github.com/JetBrains/kotlin). Updates `org.jetbrains.kotlin.plugin.serialization` from 2.3.21 to 2.4.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.3.21...v2.4.0) Updates `org.jetbrains.kotlin.plugin.parcelize` from 2.3.21 to 2.4.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.3.21...v2.4.0) Updates `org.jetbrains.kotlin.plugin.compose` from 2.3.21 to 2.4.0 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.3.21...v2.4.0) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin.plugin.serialization dependency-version: 2.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: org.jetbrains.kotlin.plugin.parcelize dependency-version: 2.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps - dependency-name: org.jetbrains.kotlin.plugin.compose dependency-version: 2.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: android-deps ... Signed-off-by: dependabot[bot] --- android/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle.kts b/android/build.gradle.kts index 3ba2457..25d559a 100644 --- a/android/build.gradle.kts +++ b/android/build.gradle.kts @@ -4,9 +4,9 @@ plugins { // Kotlin 2.4.x is blocked on Hilt: dagger 2.59.2 bundles kotlin-metadata-jvm // that reads metadata <= 2.3.0, so :app:hiltJavaCompileDebug fails on 2.4.0 // output. Bump together with a Hilt release that supports Kotlin 2.4. - id("org.jetbrains.kotlin.plugin.serialization") version "2.3.21" apply false - id("org.jetbrains.kotlin.plugin.parcelize") version "2.3.21" apply false - id("org.jetbrains.kotlin.plugin.compose") version "2.3.21" apply false + id("org.jetbrains.kotlin.plugin.serialization") version "2.4.0" apply false + id("org.jetbrains.kotlin.plugin.parcelize") version "2.4.0" apply false + id("org.jetbrains.kotlin.plugin.compose") version "2.4.0" apply false id("com.google.dagger.hilt.android") version "2.59.2" apply false id("com.google.devtools.ksp") version "2.3.9" apply false }