we have our proto like this
option java_package = "id.co.xxx.proto.v1";
message Item {
string id = 1;
uint64 order_date = 2;
}
this will generate kotlin something like this
return id.co.xxx.proto.v1.Item.Companion.createPartial(
id = id,
order_date = order_date,
unknownFields = unknownFields
)
and will then throw error Unresolved reference 'co'.. This is only happened in v2.0.0
we have our proto like this
this will generate kotlin something like this
and will then throw error
Unresolved reference 'co'.. This is only happened in v2.0.0