Update javamicro to compile against v3.5.2 am: aad88ecd13
am: 5895c56b45

Change-Id: Iaae3c34bf7364f5135966eb4b7446b431d0b00ce
tree: ddf17ed771c4a7f88cb4f66b0800c851d1e4c683
  1. android/
  2. benchmarks/
  3. cmake/
  4. config/
  5. conformance/
  6. csharp/
  7. docs/
  8. editors/
  9. examples/
  10. java/
  11. javamicro/
  12. javanano/
  13. jenkins/
  14. js/
  15. kokoro/
  16. m4/
  17. more_tests/
  18. objectivec/
  19. php/
  20. protoc-artifacts/
  21. python/
  22. ruby/
  23. src/
  24. third_party/
  25. util/
  26. .gitignore
  27. .gitmodules
  28. .travis.yml
  29. Android.bp
  30. Android.mk
  31. appveyor.bat
  32. appveyor.yml
  33. autogen.sh
  34. BUILD
  35. build.gradle
  36. CHANGES.txt
  37. CleanSpec.mk
  38. composer.json
  39. configure.ac
  40. CONTRIBUTORS.txt
  41. generate_changelog.py
  42. generate_descriptor_proto.sh
  43. gmock.BUILD
  44. LICENSE
  45. Makefile.am
  46. MODULE_LICENSE_APACHE2
  47. NOTICE
  48. post_process_dist.sh
  49. protobuf-lite.pc.in
  50. protobuf.bzl
  51. protobuf.pc.in
  52. Protobuf.podspec
  53. README.android
  54. README.md
  55. README.version
  56. six.BUILD
  57. tests.sh
  58. update_file_lists.sh
  59. WORKSPACE
README.md

Protocol Buffers - Google's data interchange format

Build Status Build status Build Status Build Status Build Status

Copyright 2008 Google Inc.

https://developers.google.com/protocol-buffers/

Overview

Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can find protobuf's documentation on the Google Developers site.

This README file contains protobuf installation instructions. To install protobuf, you need to install the protocol compiler (used to compile .proto files) and the protobuf runtime for your chosen programming language.

Protocol Compiler Installation

The protocol compiler is written in C++. If you are using C++, please follow the C++ Installation Instructions to install protoc along with the C++ runtime.

For non-C++ users, the simplest way to install the protocol compiler is to download a pre-built binary from our release page:

https://github.com/google/protobuf/releases

In the downloads section of each release, you can find pre-built binaries in zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary as well as a set of standard .proto files distributed along with protobuf.

If you are looking for an old version that is not available in the release page, check out the maven repo here:

https://repo1.maven.org/maven2/com/google/protobuf/protoc/

These pre-built binaries are only provided for released versions. If you want to use the github master version at HEAD, or you need to modify protobuf code, or you are using C++, it's recommended to build your own protoc binary from source.

If you would like to build protoc binary from source, see the C++ Installation Instructions.

Protobuf Runtime Installation

Protobuf supports several different programming languages. For each programming language, you can find instructions in the corresponding source directory about how to install protobuf runtime for that specific language:

LanguageSource
C++ (include C++ runtime and protoc)src
Javajava
Pythonpython
Objective-Cobjectivec
C#csharp
JavaNanojavanano
JavaScriptjs
Rubyruby
Gogolang/protobuf
PHPphp
Dartdart-lang/protobuf

Quick Start

The best way to learn how to use protobuf is to follow the tutorials in our developer guide:

https://developers.google.com/protocol-buffers/docs/tutorials

If you want to learn from code examples, take a look at the examples in the examples directory.

Documentation

The complete documentation for Protocol Buffers is available via the web at:

https://developers.google.com/protocol-buffers/