I created a simple .proto file and executed the compiler (protoc-2.5.0rc1-win32.zip). A java file was generated to the prescribed package. However, the generated file does not compile. The .proto file is simple with a single message with a bunch of simple types optional fields (properly numbered). The .java file does not compile, for example:
- The constructor GeneratedMessage.FieldAccessorTable(Descriptors.Descriptor, String[]) is undefined
- The method ensureFieldAccessorsInitialized(Class, Class) is undefined for the type GeneratedMessage.FieldAccessorTable
- ... and host of other errors along the same line (like trying to override a final method in superclass)
errors that hint at some mismatch at the level of the API version? Any ideas?
Thanks RESOLVED: found that the version of proto expected by the API I am using is 2.4.1 and I was using latest.