https://kotlinlang.org logo
Title
u

user

06/29/2022, 8:51 AM
import public in proto2 handled in Java/Kotlin I'm starting a project, which involves some grpc and proto2 communication (already existing for years and used in some other software). I have multiple proto2 files and they are joined together by import, like below: syntax = "proto2"; import public "Models.proto"; import public "Others.proto"; ... this doesn't work in Java/Kotlin as noted in DOC Note that the public...