there was cmdline options to generate message implement parcelable like this:
protoc --javanano_out=optional_field_style=accessors,parcelable_messages=true:d:\ ./message.proto
how to do this with android studio protobuf plugin?
there was cmdline options to generate message implement parcelable like this:
protoc --javanano_out=optional_field_style=accessors,parcelable_messages=true:d:\ ./message.proto
how to do this with android studio protobuf plugin?
try add
option 'optional_field_style=accessors'
option 'parcelable_messages=true'
in your
javanano{/*add here*/}