• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

android/22-Nov-2023-16455

benchmarks/22-Nov-2023-894711

cmake/22-Nov-2023-1,3271,135

config/22-Nov-2023-15452

conformance/22-Nov-2023-11,8608,927

csharp/22-Nov-2023-49,07435,676

docs/22-Nov-2023-823673

editors/22-Nov-2023-333185

examples/22-Nov-2023-966737

gtest/22-Nov-2023-134,30796,565

java/22-Nov-2023-69,38846,270

javamicro/src/main/java/com/google/protobuf/micro/22-Nov-2023-2,3481,172

javanano/22-Nov-2023-11,7468,472

jenkins/22-Nov-2023-383249

js/22-Nov-2023-13,2967,326

m4/22-Nov-2023-579510

more_tests/22-Nov-2023-4217

objectivec/22-Nov-2023-78,44366,021

php/22-Nov-2023-21,80915,328

protoc-artifacts/22-Nov-2023-546457

python/22-Nov-2023-37,09126,949

ruby/22-Nov-2023-35,12524,229

src/22-Nov-2023-259,015185,264

util/22-Nov-2023-4,3813,803

.gitD01-Jan-19700

.gitignoreD22-Nov-20232.2 KiB118100

Android.bpD22-Nov-202323.6 KiB599539

Android.mkD22-Nov-20233.4 KiB11154

BUILDD22-Nov-202326.3 KiB710666

CHANGES.txtD22-Nov-202353.6 KiB1,1831,035

CONTRIBUTORS.txtD22-Nov-20233.8 KiB10393

CleanSpec.mkD22-Nov-20232.2 KiB500

INSTALL.txtD22-Nov-20239.3 KiB238180

LICENSED22-Nov-20232.1 KiB4335

MODULE_LICENSE_APACHE2D22-Nov-20230

Makefile.amD22-Nov-202354.2 KiB770736

Makefile.inD22-Nov-202345.5 KiB1,1401,020

NOTICED22-Nov-20231.7 KiB3429

Protobuf.podspecD22-Nov-20232.1 KiB4137

README.androidD22-Nov-20231.2 KiB3122

README.mdD22-Nov-20233.7 KiB7855

README.versionD22-Nov-2023111 43

WORKSPACED22-Nov-20231.1 KiB5444

aclocal.m4D22-Nov-202342.8 KiB1,1951,086

appveyor.batD22-Nov-2023809 3024

appveyor.ymlD22-Nov-2023773 3322

autogen.shD22-Nov-20231.1 KiB4728

build.gradleD22-Nov-20234.5 KiB142127

compileD22-Nov-20237.2 KiB348258

config.guessD22-Nov-202344.2 KiB1,5591,352

config.h.inD22-Nov-20233.7 KiB153108

config.subD22-Nov-202334.7 KiB1,7921,654

configureD22-Nov-2023591.4 KiB19,72716,529

configure.acD22-Nov-20235.9 KiB185155

depcompD22-Nov-202323 KiB792502

generate_descriptor_proto.shD22-Nov-20233.1 KiB10780

gmock.BUILDD22-Nov-2023661 2927

install-shD22-Nov-202313.7 KiB528351

ltmain.shD22-Nov-2023277 KiB9,6627,310

missingD22-Nov-20236.7 KiB216143

post_process_dist.shD22-Nov-20231.8 KiB6532

protobuf-lite.pc.inD22-Nov-2023298 1210

protobuf.bzlD22-Nov-20238.6 KiB305260

protobuf.pc.inD22-Nov-2023319 1311

six.BUILDD22-Nov-2023227 1412

test-driverD22-Nov-20234.2 KiB14084

tests.shD22-Nov-20239.4 KiB348265

update_file_lists.shD22-Nov-20235.9 KiB192158

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