pb-and-k
pb-and-k copied to clipboard
Kotlin Native support
Could use any of:
- google::protobuf::io - in C++, needs added C layer
-
protobuf-c - would just use functions like
<type>_pack, but not exposed in header so would need custom header - nanopb - functions we need appear to be in header, nice and clean
- Pure Kotlin - a nice, portable solution but may not be the highest performing
I like the idea of Pure Kotlin -- because it would work across all platforms. You'd have less bugs to fix. Then address any optimizations as specifics for that platform. Maybe I'm just thinking about the benefits I'd get from getting javascript to work.. :)
https://github.com/cretz/pb-and-k/pull/15
@cretz It seems that the project does not support kotlin/native yet? Any plans for it in the feature?
I am afraid not. Per the README, this is no longer actively maintained, but https://github.com/streem/pbandk is.