From 8cf8ca73955a94eac3d61674dfca866a9a8d20ba Mon Sep 17 00:00:00 2001 From: Arjan Schrijver Date: Wed, 4 Oct 2023 13:40:28 +0200 Subject: [PATCH] Update dependencies --- app/build.gradle | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 3a768805b..2e33435bb 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -254,22 +254,22 @@ dependencies { testImplementation "org.mockito:mockito-core:1.10.19" testImplementation "org.robolectric:robolectric:4.8.2" testImplementation "org.hamcrest:hamcrest-library:1.3" - testImplementation "com.google.code.gson:gson:2.8.8" + testImplementation "com.google.code.gson:gson:2.8.9" implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation "androidx.appcompat:appcompat:1.4.1" - implementation "androidx.preference:preference:1.1.1" + implementation "androidx.appcompat:appcompat:1.6.1" + implementation "androidx.preference:preference:1.2.1" implementation "androidx.cardview:cardview:1.0.0" - implementation "androidx.recyclerview:recyclerview:1.2.1" + implementation "androidx.recyclerview:recyclerview:1.3.1" implementation "androidx.legacy:legacy-support-v4:1.0.0" implementation "androidx.gridlayout:gridlayout:1.0.0" implementation "androidx.palette:palette:1.0.0" - implementation "androidx.activity:activity:1.5.1" - implementation "androidx.fragment:fragment:1.4.1" + implementation "androidx.activity:activity:1.7.2" + implementation "androidx.fragment:fragment:1.6.1" - implementation "com.google.android.material:material:1.6.1" + implementation "com.google.android.material:material:1.9.0" implementation 'com.google.android.flexbox:flexbox:3.0.0' - implementation "com.google.code.gson:gson:2.8.8" + implementation "com.google.code.gson:gson:2.8.9" implementation "no.nordicsemi.android:dfu:1.12.0" implementation("com.github.tony19:logback-android:2.0.0") { @@ -304,6 +304,9 @@ dependencies { // Android SDK bundles org.json, but we need an actual implementation to replace the stubs in tests testImplementation 'org.json:json:20180813' + + // Fix Duplicate class build error + implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0")) } preBuild.dependsOn(":GBDaoGenerator:genSources")