Hello,
protoc --include_imports --descriptor_set_out=/dev/stdout user_preferences.protoInstead of running the
protoc command from my application, which will basically shell out to user's machine and is dependent on user's machine protoc compiler.
I was wondering if there's an existing compiler api's which can be used from java.
I went through docs - and i guess importer can be used -
https://protobuf.dev/reference/cpp/api-docs/google.protobuf.compiler.importer/But, this is not exposed as java api.
Thanks