Has anyone here experimented with gRPC in Kotlin Multiplatform?
I’m exploring how feasible it is to use gRPC for cross-platform communication in a KMP project, ideally with a shared client that works across Android, iOS, Desktop, and Web.
I know gRPC-Kotlin works well on JVM, but support for Kotlin/Native and Kotlin/JS seems limited.
 Before I dive into writing custom protobuf or HTTP/2 wrappers, I wanted to ask:
• Are there any known libraries or workarounds for gRPC on KMP (e.g. using Ktor + protobuf or any community ports)?
• Has anyone managed to get gRPC working (even partially) on Kotlin/WASM?
• Any best practices or gotchas you’ve learned while integrating gRPC in a multiplatform setup?
Would really appreciate any references, code samples, or write-ups you’ve found helpful