Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into demoapp_caching
Browse files Browse the repository at this point in the history
  • Loading branch information
dconeybe committed Dec 6, 2024
2 parents cf20a80 + bbb2214 commit 4ca5627
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions encoders/firebase-decoders-json/firebase-decoders-json.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ android {
}

dependencies {
implementation 'androidx.annotation:annotation:1.1.0'
implementation libs.androidx.annotation

testImplementation 'androidx.test:runner:1.2.0'
testImplementation libs.androidx.test.runner
testImplementation libs.androidx.test.junit
testImplementation libs.truth
testImplementation 'junit:junit:4.13-rc-1'
testImplementation 'org.mockito:mockito-core:2.25.0'
testImplementation libs.junit
testImplementation libs.mockito.core
testImplementation libs.robolectric
}

Expand Down
10 changes: 5 additions & 5 deletions encoders/firebase-encoders-json/firebase-encoders-json.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ android {
dependencies {
api 'com.google.firebase:firebase-encoders:17.0.0'

implementation 'androidx.annotation:annotation:1.1.0'
implementation libs.androidx.annotation

testImplementation 'androidx.test:runner:1.3.0'
testImplementation libs.androidx.test.runner
testImplementation libs.androidx.test.junit
testImplementation "com.google.truth:truth:1.0.1"
testImplementation 'junit:junit:4.13'
testImplementation 'org.mockito:mockito-core:3.3.3'
testImplementation libs.truth
testImplementation libs.junit
testImplementation libs.mockito.core
testImplementation libs.robolectric
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,12 @@ dependencies {
api 'com.google.firebase:firebase-encoders:17.0.0'
api 'com.google.firebase:firebase-encoders-json:18.0.0'

implementation 'androidx.annotation:annotation:1.1.0'
implementation libs.androidx.annotation

testImplementation 'androidx.test:runner:1.3.0'
testImplementation libs.androidx.test.runner
testImplementation libs.androidx.test.junit
testImplementation 'com.google.truth:truth:1.0.1'
testImplementation 'junit:junit:4.13'
testImplementation 'org.mockito:mockito-core:3.3.3'
testImplementation libs.truth
testImplementation libs.junit
testImplementation libs.mockito.core
testImplementation libs.robolectric
}
4 changes: 2 additions & 2 deletions encoders/firebase-encoders/firebase-encoders.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ java {


dependencies {
implementation 'androidx.annotation:annotation:1.1.0'
implementation libs.androidx.annotation

testImplementation libs.truth
testImplementation 'junit:junit:4.13'
testImplementation libs.junit
}

tasks.withType(JavaCompile) {
Expand Down
4 changes: 2 additions & 2 deletions encoders/protoc-gen-firebase-encoders/tests/tests.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ dependencies {
testImplementation project(":encoders:firebase-encoders")
testImplementation project(":encoders:firebase-encoders-proto")
testImplementation libs.protobuf.java
testImplementation "com.google.truth:truth:1.0.1"
testImplementation 'junit:junit:4.13.1'
testImplementation libs.truth
testImplementation libs.junit
}

0 comments on commit 4ca5627

Please sign in to comment.