how to implement generated grpc code in kotlin
i give up using and gradle plugin to generate the protobuf code form *.proto so i decided to use
protoc -I=$SRC_DIR --java_out=$DST_DIR --kotlin_out=$DST_DIR $SRC_DIR/addressbook.proto
directly
i tried to follow along this repo
https://github.com/benz93chung/GrpcMvvm
just added this line to the head of proto file (helloworld.proto) in the repo above
option java_generic_services = true;
i generated the code from...