Open xmlking opened 3 years ago
You need to manually add the grpc-stub dependency, like:
implementation("io.grpc:grpc-stub:1.40.1")
We should look at bumping our deps to fix this.
@jamesward Hi, after update my gradle to https://github.com/grpc/grpc-kotlin/blob/master/examples/stub-android/build.gradle.kts and added implementation("io.grpc:grpc-stub:1.40.1")
, I got inferred type is [My proto model class] but Serializable? was expected
error. Why does GeneratedMessageLite not extend from Serializable any more?
Note sure. Maybe @lowasser knows. Also you may want to try a newer version than that.
I am getting compilation error after upgrading grpc version from
1.39.0
to1.40.1
looks like they addedio.grpc.stub.annotations.GrpcGenerated
which is missing ingrpc-kotlin
which depends ongrpc-java
1.36.0Error
is there a way to force
grpc-kotlin
to usegrpc-java
1.40.1 version?