These lines are in the bottom of our `nanopb.proto` file...
extend google.protobuf.FileOptions {
optional NanoPBOptions nanopb_fileopt = 1010;
}
extend google.protobuf.MessageOptions {
optional NanoPBOptions nanopb_msgopt = 1010;
}
extend google.protobuf.EnumOptions {
optional NanoPBOptions nanopb_enumopt = 1010;
}
extend google.protobuf.FieldOptions {
optional NanoPBOptions nanopb = 1010;
}
```
...and it looks like `MessageOptions`, `EnumOptions`, and `FieldOptions` are NOT part of the Protobuf Pod either.
Are extensions not supported in the ObjC version of GPB?