Gary Peck

Results 23 comments of Gary Peck

That's expected protobuf behavior since you're defining the same `java_package` in both files. I think you would get a similar error even with the official `protobuf-java` library. Typical protobuf style...

Oh interesting. I think I've always used the `java_package` option together with `option java_multiple_files = true`, which doesn't nest definitions within an outer class. But I think you're right that...

@aminghadersohi We have one written internally. I'll work on getting it published as a library. It's so small that in the meantime I've put it into this gist if you...

We just keep running into one conflict after another with the protobuf-java libraries 😞 > Is it safe to assume that the `.proto` files are only required for code generation?...

@JeroenMols I'm not very familiar with pom.xml syntax, aside from the basics, and I can't figure out from that Stack Overflow post exactly what you have in mind. Can you...

Hi @matthewslade. Sorry for the delayed reply here. Which version of the Android Gradle Plugin are you using? https://youtrack.jetbrains.com/issue/KT-49066 seems to imply that this conflict shouldn't happen with newer AGP...

Thanks for the investigation @darronschall! A couple thoughts on this: 1. As part of https://github.com/streem/pbandk/pull/217, instantiation of proto objects will be done using builders instead of constructors. For example: ```kt...

That's an interesting edge case 🙂 Because of protobuf's somewhat strange scoping rules, many protobuf style guides recommend naming enum values using the name of the enum as a prefix...

@fluxxion82 @sonrohan I'm not sure we'll have time to work on this fix before mid-October. If either of you are interested in making a pull request for this though, I...

Hi @OliverCulleyDeLange. The `protoc-gen-kotlin-jvm-0.8.0-jvm8.jar` file only works on Unix-like systems. On Windows you have to build it locally and specify the path to the `protoc-gen-kotlin.bat` file, as you've done. I've...