1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-09-20 21:26:42 +02:00

Update dependencies

This commit is contained in:
Arjan Schrijver 2023-10-04 13:40:28 +02:00
parent b12ac00bb8
commit 8cf8ca7395

View File

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