From 42cf2496449657b6de63623fbc1763608da6a6f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 15:25:22 +0000 Subject: [PATCH] chore(deps)(deps): bump the gradle-minor-patch group with 3 updates Bumps the gradle-minor-patch group with 3 updates: [org.jetbrains.kotlin:kotlin-gradle-plugin](https://github.com/JetBrains/kotlin), androidx.core:core-ktx and [org.jetbrains.kotlin:kotlin-test-junit](https://github.com/JetBrains/kotlin). Updates `org.jetbrains.kotlin:kotlin-gradle-plugin` 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 `androidx.core:core-ktx` from 1.18.0 to 1.19.0 Updates `org.jetbrains.kotlin:kotlin-test-junit` 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:kotlin-gradle-plugin dependency-version: 2.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-minor-patch - dependency-name: androidx.core:core-ktx dependency-version: 1.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-minor-patch - dependency-name: org.jetbrains.kotlin:kotlin-test-junit dependency-version: 2.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gradle-minor-patch ... Signed-off-by: dependabot[bot] --- Smodr/build.gradle | 4 ++-- build.gradle | 2 +- common-android/build.gradle | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Smodr/build.gradle b/Smodr/build.gradle index 0692fcde..64913bde 100644 --- a/Smodr/build.gradle +++ b/Smodr/build.gradle @@ -94,14 +94,14 @@ tasks.withType(KotlinCompile).configureEach { dependencies { implementation 'androidx.fragment:fragment-ktx:1.8.9' - implementation("androidx.core:core-ktx:1.18.0") + implementation("androidx.core:core-ktx:1.19.0") implementation 'com.google.android.gms:play-services-oss-licenses:17.5.1' implementation 'io.reactivex.rxjava3:rxjava:3.1.12' implementation 'androidx.room:room-runtime:2.8.4' annotationProcessor 'androidx.room:room-compiler:2.8.4' testImplementation 'androidx.room:room-testing:2.8.4' testImplementation 'junit:junit:4.13.2' - testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:2.3.21' + testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:2.4.0' debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.14' implementation 'androidx.legacy:legacy-support-v4:1.0.0' // Instrumentation tests disabled for now; dependencies removed diff --git a/build.gradle b/build.gradle index 217780d0..fc42ec30 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '2.3.21' + ext.kotlin_version = '2.4.0' repositories { google() mavenCentral() diff --git a/common-android/build.gradle b/common-android/build.gradle index 0fac9883..f1a1cebb 100644 --- a/common-android/build.gradle +++ b/common-android/build.gradle @@ -5,7 +5,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' buildscript { - ext.kotlin_version = '2.3.21' + ext.kotlin_version = '2.4.0' repositories { google() mavenCentral() @@ -50,7 +50,7 @@ tasks.withType(KotlinCompile).configureEach { } dependencies { - implementation("androidx.core:core-ktx:1.18.0") + implementation("androidx.core:core-ktx:1.19.0") implementation 'androidx.appcompat:appcompat:1.7.1' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.2.0' implementation 'androidx.databinding:viewbinding:8.13.2'