NameDateSize

..10-Aug-201812 KiB

.gitignore10-Aug-20182.2 KiB

aclocal.m410-Aug-201842.8 KiB

android/10-Aug-20184 KiB

Android.bp10-Aug-201823.6 KiB

Android.mk10-Aug-20183.4 KiB

appveyor.bat10-Aug-2018809

appveyor.yml10-Aug-2018773

autogen.sh10-Aug-20181.1 KiB

benchmarks/10-Aug-20184 KiB

BUILD10-Aug-201826.3 KiB

build.gradle10-Aug-20184.5 KiB

CHANGES.txt10-Aug-201853.6 KiB

CleanSpec.mk10-Aug-20182.2 KiB

cmake/10-Aug-20184 KiB

compile10-Aug-20187.2 KiB

config/10-Aug-20184 KiB

config.guess10-Aug-201844.2 KiB

config.h.in10-Aug-20183.7 KiB

config.sub10-Aug-201834.7 KiB

configure10-Aug-2018591.4 KiB

configure.ac10-Aug-20185.9 KiB

conformance/10-Aug-20184 KiB

CONTRIBUTORS.txt10-Aug-20183.8 KiB

csharp/10-Aug-20184 KiB

depcomp10-Aug-201823 KiB

docs/10-Aug-20184 KiB

editors/10-Aug-20184 KiB

examples/10-Aug-20184 KiB

generate_descriptor_proto.sh10-Aug-20183.1 KiB

gmock.BUILD10-Aug-2018661

gtest/10-Aug-20184 KiB

install-sh10-Aug-201813.7 KiB

INSTALL.txt10-Aug-20189.3 KiB

java/10-Aug-20184 KiB

javamicro/10-Aug-20184 KiB

javanano/10-Aug-20184 KiB

jenkins/10-Aug-20184 KiB

js/10-Aug-20184 KiB

LICENSE10-Aug-20182.1 KiB

ltmain.sh10-Aug-2018277 KiB

m4/10-Aug-20184 KiB

Makefile.am10-Aug-201854.2 KiB

Makefile.in10-Aug-201845.5 KiB

missing10-Aug-20186.7 KiB

MODULE_LICENSE_APACHE210-Aug-20180

more_tests/10-Aug-20184 KiB

NOTICE10-Aug-20181.7 KiB

objectivec/10-Aug-20184 KiB

php/10-Aug-20184 KiB

post_process_dist.sh10-Aug-20181.8 KiB

protobuf-lite.pc.in10-Aug-2018298

protobuf.bzl10-Aug-20188.6 KiB

protobuf.pc.in10-Aug-2018319

Protobuf.podspec10-Aug-20182.1 KiB

protoc-artifacts/10-Aug-20184 KiB

python/10-Aug-20184 KiB

README.android10-Aug-20181.2 KiB

README.md10-Aug-20183.7 KiB

README.version10-Aug-2018111

ruby/10-Aug-20184 KiB

six.BUILD10-Aug-2018227

src/10-Aug-20184 KiB

test-driver10-Aug-20184.2 KiB

tests.sh10-Aug-20189.4 KiB

update_file_lists.sh10-Aug-20185.9 KiB

util/10-Aug-20184 KiB

WORKSPACE10-Aug-20181.1 KiB

README.android

1URL: http://code.google.com/p/protobuf/downloads/list
2Version: v3.0.0-beta3
3License: Google BSD like
4Description: "Protobuf: The Google protobuf compiler and runtimes for various languages"
5
6Local changes:
7
8Local Modifications:
9 - Initial changes include support for the micro protobuf compiler and the
10   assoicated runtime.
11 - https://github.com/google/protobuf/pull/2732: const FieldDescriptorCompare
12
13Protocol Buffers are a way of encoding structured data in an efficient
14yet extensible format. Google uses Protocol Buffers for almost all
15of its internal RPC protocols and file formats.
16
17Initially the protoc compiler is not integrated into the Android build system
18and the Android.mk will simply build the javamicro runtime static library.
19
20To build the compiler follow the instructions in README.txt for
21compiling and installing.
22
23The Android.mk file creates the a static library which can be added
24to any Android application by Adding to LOCAL_STATIC_JAVA_LIBRARIES
25com.google.protobuf.micro:
26
27  LOCAL_STATIC_JAVA_LIBRARIES += com.google.protobuf.micro
28
29Follow the instructions in Micro section of java/README.txt for
30details on compiling .proto files for the micro runtine.
31

README.md

1Protocol Buffers - Google's data interchange format
2===================================================
3
4[![Build Status](https://travis-ci.org/google/protobuf.svg?branch=master)](https://travis-ci.org/google/protobuf) [![Build status](https://ci.appveyor.com/api/projects/status/73ctee6ua4w2ruin?svg=true)](https://ci.appveyor.com/project/protobuf/protobuf)
5
6Copyright 2008 Google Inc.
7
8https://developers.google.com/protocol-buffers/
9
10Overview
11--------
12
13Protocol Buffers (a.k.a., protobuf) are Google's language-neutral,
14platform-neutral, extensible mechanism for serializing structured data. You
15can find [protobuf's documentation on the Google Developers site](https://developers.google.com/protocol-buffers/).
16
17This README file contains protobuf installation instructions. To install
18protobuf, you need to install the protocol compiler (used to compile .proto
19files) and the protobuf runtime for your chosen programming language.
20
21Protocol Compiler Installation
22------------------------------
23
24The protocol compiler is written in C++. If you are using C++, please follow
25the [C++ Installation Instructions](src/README.md) to install protoc along
26with the C++ runtime.
27
28For non-C++ users, the simplest way to install the protocol compiler is to
29download a pre-built binary from our release page:
30
31  [https://github.com/google/protobuf/releases](https://github.com/google/protobuf/releases)
32
33In the downloads section of each release, you can find pre-built binaries in
34zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary
35as well as a set of standard .proto files distributed along with protobuf.
36
37If you are looking for an old version that is not available in the release
38page, check out the maven repo here:
39
40  [http://repo1.maven.org/maven2/com/google/protobuf/protoc/](http://repo1.maven.org/maven2/com/google/protobuf/protoc/)
41
42These pre-built binaries are only provided for released versions. If you want
43to use the github master version at HEAD, or you need to modify protobuf code,
44or you are using C++, it's recommended to build your own protoc binary from
45source.
46
47If you would like to build protoc binary from source, see the [C++ Installation
48Instructions](src/README.md).
49
50Protobuf Runtime Installation
51-----------------------------
52
53Protobuf supports several different programming languages. For each programming
54language, you can find instructions in the corresponding source directory about
55how to install protobuf runtime for that specific language:
56
57| Language                             | Source                                                |
58|--------------------------------------|-------------------------------------------------------|
59| C++ (include C++ runtime and protoc) | [src](src)                                            |
60| Java                                 | [java](java)                                          |
61| Python                               | [python](python)                                      |
62| Objective-C                          | [objectivec](objectivec)                              |
63| C#                                   | [csharp](csharp)                                      |
64| JavaNano                             | [javanano](javanano)                                  |
65| JavaScript                           | [js](js)                                              |
66| Ruby                                 | [ruby](ruby)                                          |
67| Go                                   | [golang/protobuf](https://github.com/golang/protobuf) |
68| PHP                                  | TBD                                                   |
69
70
71Usage
72-----
73
74The complete documentation for Protocol Buffers is available via the
75web at:
76
77    https://developers.google.com/protocol-buffers/
78

README.version

1URL: https://github.com/google/protobuf/archive/v3.0.0-beta-3.tar.gz
2Version: v3.0.0-beta3
3BugComponent: 99142
4