From 451b2343b7ec13d152011b43891a91cec849fdf8 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Wed, 4 Feb 2026 17:27:16 -0600 Subject: [PATCH] feat(deps): Remove temporary `kotlinx-metadata-jvm` dependency (#4453) Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- app/build.gradle.kts | 6 +++++- .../convention/src/main/kotlin/HiltConventionPlugin.kt | 3 --- gradle/libs.versions.toml | 1 - 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 663b4b85e..9aa91ab4b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -187,7 +187,11 @@ androidComponents { } } -project.afterEvaluate { logger.lifecycle("Version code is set to: ${extensions.getByType().defaultConfig.versionCode}") } +project.afterEvaluate { + logger.lifecycle( + "Version code is set to: ${extensions.getByType().defaultConfig.versionCode}", + ) +} dependencies { implementation(projects.core.analytics) diff --git a/build-logic/convention/src/main/kotlin/HiltConventionPlugin.kt b/build-logic/convention/src/main/kotlin/HiltConventionPlugin.kt index 326893bc0..f570e721e 100644 --- a/build-logic/convention/src/main/kotlin/HiltConventionPlugin.kt +++ b/build-logic/convention/src/main/kotlin/HiltConventionPlugin.kt @@ -28,9 +28,6 @@ class HiltConventionPlugin : Plugin { apply(plugin = "com.google.devtools.ksp") dependencies { - // fixme: remove when hilt supports kotlin 2.3.x - "ksp"(libs.library("kotlin-metadata-jvm")) - "ksp"(libs.library("hilt-compiler")) "implementation"(libs.library("hilt-android")) } diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index d079bc822..4eb0222f8 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -125,7 +125,6 @@ truth = { module = "com.google.truth:truth", version = "1.4.5" } # Jetbrains kotlin-gradlePlugin = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" } -kotlin-metadata-jvm = { module = "org.jetbrains.kotlinx:kotlinx-metadata-jvm", version = "0.9.0" } dokka-gradlePlugin = { module = "org.jetbrains.dokka:dokka-gradle-plugin", version = "2.1.0" }