You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.2 KiB
31 lines
1.2 KiB
URL: http://code.google.com/p/protobuf/downloads/list
|
|
Version: v3.0.0-beta3
|
|
License: Google BSD like
|
|
Description: "Protobuf: The Google protobuf compiler and runtimes for various languages"
|
|
|
|
Local changes:
|
|
|
|
Local Modifications:
|
|
- Initial changes include support for the micro protobuf compiler and the
|
|
assoicated runtime.
|
|
- https://github.com/google/protobuf/pull/2732: const FieldDescriptorCompare
|
|
|
|
Protocol Buffers are a way of encoding structured data in an efficient
|
|
yet extensible format. Google uses Protocol Buffers for almost all
|
|
of its internal RPC protocols and file formats.
|
|
|
|
Initially the protoc compiler is not integrated into the Android build system
|
|
and the Android.mk will simply build the javamicro runtime static library.
|
|
|
|
To build the compiler follow the instructions in README.txt for
|
|
compiling and installing.
|
|
|
|
The Android.mk file creates the a static library which can be added
|
|
to any Android application by Adding to LOCAL_STATIC_JAVA_LIBRARIES
|
|
com.google.protobuf.micro:
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += com.google.protobuf.micro
|
|
|
|
Follow the instructions in Micro section of java/README.txt for
|
|
details on compiling .proto files for the micro runtine.
|