Update dependencies

This commit is contained in:
Niko Diamadis 2025-12-18 00:00:59 +01:00
parent 9344d35035
commit 4ab417fe9d
No known key found for this signature in database
GPG key ID: 27D69B8D68305327
2 changed files with 18 additions and 18 deletions

View file

@ -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

View file

@ -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 {