From ca255d9e2bed5ef81f59516378f2de7be6145deb Mon Sep 17 00:00:00 2001 From: Martin Kankaanranta Date: Tue, 9 Jul 2024 22:27:13 +0300 Subject: [PATCH] bump to latest dependencies --- app/build.gradle | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index de0fff8..1429e4c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -35,26 +35,26 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar','*.aar']) implementation group: 'com.jcraft', name: 'jsch', version: '0.1.55' // AndroidX - implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.appcompat:appcompat:1.7.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.preference:preference:1.2.1' - implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0' + implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.3' // Third party implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' - implementation 'com.android.billingclient:billing:6.1.0' + implementation 'com.android.billingclient:billing:7.0.0' implementation 'com.wdullaer:swipeactionadapter:2.1.0' - implementation 'com.google.android.material:material:1.11.0' + implementation 'com.google.android.material:material:1.12.0' implementation 'joda-time:joda-time:2.12.5' implementation 'com.squareup.okhttp3:okhttp:4.11.0' implementation 'com.google.android.flexbox:flexbox:3.0.0' // For the notifications - implementation 'com.google.firebase:firebase-messaging:23.4.0' + implementation 'com.google.firebase:firebase-messaging:24.0.0' // Tests testImplementation 'junit:junit:4.13.2' - testImplementation 'org.mockito:mockito-core:5.3.1' + testImplementation 'org.mockito:mockito-core:5.11.0' testImplementation 'com.squareup.okhttp3:mockwebserver:4.11.0' testImplementation 'org.json:json:20230618' // Other - implementation(platform('org.jetbrains.kotlin:kotlin-bom:1.9.0')) + implementation(platform('org.jetbrains.kotlin:kotlin-bom:1.9.24')) }