Skip to content

Commit 1fed50c

Browse files
clean up
1 parent 48dc434 commit 1fed50c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

android-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies {
6969
exclude group: 'com.google.code.findbugs'
7070
}
7171

72-
implementation "org.slf4j:slf4j-api:1.7.32"
72+
implementation "org.slf4j:slf4j-api:$slf4j_ver"
7373

7474
compileOnly "com.fasterxml.jackson.core:jackson-databind:$jacksonversion"
7575
implementation "androidx.annotation:annotation:$annotations_ver"

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ ext {
8888
androidx_test_core = "1.4.0"
8989
androidx_test_rules = "1.4.0"
9090
espresso_ver = "3.4.0"
91+
slf4j_ver = "1.7.3"
9192
}
9293

9394
task clean(type: Delete) {

odp/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dependencies {
5858
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5959
implementation "androidx.work:work-runtime:$work_runtime"
6060
// Add SLF4J API for Logger interface
61-
implementation "org.slf4j:slf4j-api:1.7.32"
61+
implementation "org.slf4j:slf4j-api:$slf4j_ver"
6262

6363
testImplementation "junit:junit:$junit_ver"
6464
testImplementation "org.mockito:mockito-core:$mockito_ver"
@@ -76,5 +76,5 @@ dependencies {
7676

7777
androidTestImplementation "org.mockito:mockito-core:$mockito_ver"
7878
androidTestImplementation "org.mockito:mockito-android:$mockito_ver"
79-
androidTestImplementation "org.slf4j:slf4j-api:1.7.32"
79+
androidTestImplementation "org.slf4j:slf4j-api:$slf4j_ver"
8080
}

0 commit comments

Comments
 (0)