From 4ab417fe9d74e0867acffd63c8cf2f56f3440074 Mon Sep 17 00:00:00 2001 From: Niko Diamadis Date: Thu, 18 Dec 2025 00:00:59 +0100 Subject: [PATCH] Update dependencies --- app/build.gradle | 28 ++++++++++++++-------------- build.gradle | 8 ++++---- 2 files changed, 18 insertions(+), 18 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 0526456b..afe69a26 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -84,40 +84,40 @@ android.applicationVariants.all { variant -> dependencies { // AndroidX, The Basics - implementation "androidx.appcompat:appcompat:1.6.1" - implementation "androidx.core:core-ktx:1.10.1" - implementation "androidx.constraintlayout:constraintlayout:2.1.4" - implementation "androidx.activity:activity-ktx:1.7.1" - implementation "androidx.fragment:fragment-ktx:1.5.7" - implementation "androidx.work:work-runtime-ktx:2.8.1" - implementation 'androidx.preference:preference-ktx:1.2.0' + implementation "androidx.appcompat:appcompat:1.7.1" + implementation "androidx.core:core-ktx:1.17.0" + implementation "androidx.constraintlayout:constraintlayout:2.2.1" + implementation "androidx.activity:activity-ktx:1.12.2" + implementation "androidx.fragment:fragment-ktx:1.8.9" + implementation "androidx.work:work-runtime-ktx:2.11.0" + implementation 'androidx.preference:preference-ktx:1.2.1' // JSON serialization - implementation 'com.google.code.gson:gson:2.10' + implementation 'com.google.code.gson:gson:2.13.2' // Room (SQLite) - def room_version = "2.6.1" + def room_version = "2.8.4" implementation "androidx.room:room-runtime:$room_version" ksp "androidx.room:room-compiler:$room_version" implementation "androidx.room:room-ktx:$room_version" // OkHttp (HTTP library) - implementation 'com.squareup.okhttp3:okhttp:4.10.0' + implementation 'com.squareup.okhttp3:okhttp:5.3.2' // Firebase, sigh ... (only Google Play) - playImplementation 'com.google.firebase:firebase-messaging:23.1.2' + playImplementation 'com.google.firebase:firebase-messaging:25.0.1' // RecyclerView - implementation "androidx.recyclerview:recyclerview:1.3.0" + implementation "androidx.recyclerview:recyclerview:1.4.0" // Swipe down to refresh - implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' + implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.2.0' // Material design implementation "com.google.android.material:material:1.13.0" // LiveData - implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.1" + implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.10.0" implementation 'androidx.legacy:legacy-support-v4:1.0.0' // Image viewer diff --git a/build.gradle b/build.gradle index 45ae3c18..7935d4eb 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ buildscript { - ext.kotlin_version = '2.0.21' + ext.kotlin_version = '2.2.0' repositories { google() mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:8.13.0' + classpath 'com.android.tools.build:gradle:8.13.2' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath 'com.google.gms:google-services:4.3.15' // This is removed in the "fdroid" flavor + classpath 'com.google.gms:google-services:4.4.4' // This is removed in the "fdroid" flavor // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -15,7 +15,7 @@ buildscript { } plugins { - id 'com.google.devtools.ksp' version '2.0.21-1.0.27' + id 'com.google.devtools.ksp' version '2.2.0-2.0.2' } allprojects {