Skip to content

Commit de08936

Browse files
committed
Merge branch 'refs/heads/main' into crashlytics-kts-customKey
2 parents 8489203 + 91418a1 commit de08936

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

firebase-common/data-collection-tests/data-collection-tests.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ android {
3636
dependencies {
3737
implementation("com.google.firebase:firebase-common:21.0.0")
3838
implementation("com.google.firebase:firebase-components:18.0.0")
39+
implementation(platform(libs.kotlin.bom))
3940

4041
testImplementation(libs.androidx.core)
4142
testImplementation(libs.androidx.test.junit)

firebase-firestore/firebase-firestore.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ dependencies {
152152

153153
testImplementation project(':firebase-database-collection')
154154
testImplementation project(':firebase-firestore')
155+
testProtobuf("com.google.api.grpc:proto-google-common-protos:1.18.0")
155156
testImplementation libs.androidx.test.core
156157
testImplementation 'com.fasterxml.jackson.core:jackson-databind:2.9.8'
157158
testImplementation 'com.google.android.gms:play-services-tasks:18.0.1'

firebase-firestore/src/main/java/com/google/firebase/firestore/remote/TestingHooks.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import static com.google.firebase.firestore.util.Preconditions.checkNotNull;
1818

19+
import android.annotation.SuppressLint;
1920
import androidx.annotation.AnyThread;
2021
import androidx.annotation.NonNull;
2122
import androidx.annotation.Nullable;
@@ -34,6 +35,7 @@
3435
*
3536
* <p>Do not use this class except for testing purposes.
3637
*/
38+
@SuppressLint("SupportAnnotationUsage")
3739
@VisibleForTesting
3840
final class TestingHooks {
3941

gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# javalite, protoc and protobufjavautil versions should be in sync while updating and
33
# it needs to match the protobuf version which grpc has transitive dependency on, which
44
# needs to match the version of grpc that grpc-kotlin has a transitive dependency on.
5-
androidGradlePlugin = "8.2.1"
5+
androidGradlePlugin = "8.3.2"
66
android-lint = "31.3.2"
77
autovalue = "1.10.1"
88
coroutines = "1.7.3"
@@ -62,6 +62,7 @@ grpc-protoc-gen-kotlin = { module = "io.grpc:protoc-gen-grpc-kotlin", version.re
6262
grpc-stub = { module = "io.grpc:grpc-stub", version.ref = "grpc" }
6363
javax-annotation-jsr250 = { module = "javax.annotation:jsr250-api", version = "1.0" }
6464
javax-inject = { module = "javax.inject:javax.inject", version = "1" }
65+
kotlin-bom = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "kotlin" }
6566
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "kotlin" }
6667
kotlin-stdlib-jdk8 = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", version.ref = "kotlin" }
6768
kotlin-coroutines-tasks = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-play-services", version.ref = "coroutines" }

0 commit comments

Comments
 (0)