File tree Expand file tree Collapse file tree 10 files changed +13
-995
lines changed
encoders/protoc-gen-firebase-encoders
src/test/kotlin/com/google/firebase/encoders/proto/codegen
protolite-well-known-types
fix-javalite/proto/google/protobuf
src/main/proto/google/protobuf Expand file tree Collapse file tree 10 files changed +13
-995
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ import com.google.firebase.testing.LinkedListProto
25
25
import com.google.firebase.testing.SimpleProto
26
26
import com.google.firebase.testing.Types
27
27
import com.google.protobuf.Descriptors.FileDescriptor
28
- import com.google.protobuf.GeneratedMessageV3
28
+ import com.google.protobuf.GeneratedMessage
29
29
import com.google.protobuf.Timestamp
30
30
import org.junit.Test
31
31
import org.junit.runner.RunWith
@@ -153,7 +153,7 @@ class ParsingTests {
153
153
154
154
private fun parse (
155
155
vararg files : FileDescriptor ,
156
- include : List <GeneratedMessageV3 > = listOf()
156
+ include : List <GeneratedMessage > = listOf()
157
157
): List <UserDefined > {
158
158
return DefaultParser (
159
159
CodeGenConfig .newBuilder()
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ dependencies {
51
51
52
52
testImplementation project(" :encoders:firebase-encoders" )
53
53
testImplementation project(" :encoders:firebase-encoders-proto" )
54
- testImplementation " com.google. protobuf:protobuf-java:3.21.9 "
54
+ testImplementation libs . protobuf. java
55
55
testImplementation " com.google.truth:truth:1.0.1"
56
56
testImplementation ' junit:junit:4.13.1'
57
57
}
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ dependencies {
104
104
androidTestImplementation(libs. androidx. test. runner)
105
105
androidTestImplementation(libs. androidx. test. junit)
106
106
androidTestImplementation(" com.google.firebase:firebase-encoders-json:18.0.1" )
107
- androidTestImplementation(" com.google. protobuf:protobuf-java:3.21.11 " )
107
+ androidTestImplementation(libs . protobuf. java )
108
108
androidTestImplementation(libs. truth)
109
109
androidTestImplementation(" com.linkedin.dexmaker:dexmaker:2.28.3" )
110
110
androidTestImplementation(libs. mockito. dexmaker)
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ dependencies {
112
112
implementation ' com.google.dagger:dagger:2.27'
113
113
api ' com.google.firebase:firebase-annotations:16.2.0'
114
114
api ' com.google.firebase:firebase-installations-interop:17.1.0'
115
- api ' com.google.firebase :protolite-well-known-types:18.0.0 '
115
+ api project( ' :protolite-well-known-types' )
116
116
implementation ' com.squareup.okhttp3:okhttp:3.12.1'
117
117
api(" com.google.firebase:firebase-common:21.0.0" )
118
118
api(" com.google.firebase:firebase-common-ktx:21.0.0" )
@@ -130,7 +130,7 @@ dependencies {
130
130
exclude group : ' com.google.firebase' , module : ' firebase-common'
131
131
exclude group : ' com.google.firebase' , module : ' firebase-components'
132
132
}
133
- testCompileOnly " com.google. protobuf:protobuf-java:3.21.9 "
133
+ testCompileOnly libs . protobuf. java
134
134
testImplementation " androidx.test:core:$androidxTestCoreVersion "
135
135
testImplementation " com.google.truth:truth:$googleTruthVersion "
136
136
testImplementation " org.robolectric:robolectric:$robolectricVersion "
Original file line number Diff line number Diff line change @@ -59,5 +59,5 @@ dependencies {
59
59
testImplementation ' org.mockito:mockito-core:2.25.0'
60
60
testImplementation " org.robolectric:robolectric:$robolectricVersion "
61
61
62
- testCompileOnly " com.google. protobuf:protobuf-java:3.21.9 "
62
+ testCompileOnly libs . protobuf. java
63
63
}
Original file line number Diff line number Diff line change @@ -6,10 +6,11 @@ autovalue = "1.10.1"
6
6
coroutines = " 1.6.4"
7
7
dagger = " 2.43.2"
8
8
grpc = " 1.62.2"
9
- javalite = " 3.21.11 "
9
+ javalite = " 4.28.1 "
10
10
kotlin = " 1.8.22"
11
+ protobuf-java = " 3.21.9"
11
12
serialization-plugin = " 1.8.22"
12
- protoc = " 3.21.11 "
13
+ protoc = " 4.28.1 "
13
14
truth = " 1.4.2"
14
15
robolectric = " 4.12"
15
16
protobufjavautil = " 3.21.11"
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# IMPORTANT (b/285892320) Keep version and latestReleasedVersion in sync
2
2
# unless you are releasing a new version of the library to prevent issues
3
3
# with transitive dependencies.
4
- version =18.0.0
4
+ version =18.0.1
5
5
latestReleasedVersion =18.0.0
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ protobuf {
31
31
generateProtoTasks {
32
32
all(). each { task ->
33
33
34
- task. addIncludeDir(files(' fix-javalite/proto' ))
34
+ // task.addIncludeDir(files('fix-javalite/proto'))
35
35
36
36
task. builtins {
37
37
java {
@@ -64,7 +64,7 @@ android {
64
64
65
65
66
66
dependencies {
67
- protobuf(" com.google.api.grpc:proto-google-common-protos:1.18 .0" ){
67
+ protobuf(" com.google.api.grpc:proto-google-common-protos:2.17 .0" ){
68
68
exclude group : " com.google.protobuf" , module : " protobuf-java"
69
69
}
70
70
You can’t perform that action at this time.
0 commit comments