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'