aboutsummaryrefslogtreecommitdiffstats
path: root/README.android
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2010-05-28 11:49:52 -0700
committerWink Saville <wink@google.com>2010-05-28 11:49:52 -0700
commitede38fe9b9f93888e6e41afc7abb09525f44da95 (patch)
tree4ef437786285869a2ae70dc0d411ba475304e40a /README.android
parentfbaaef999ba563838ebd00874ed8a1c01fbf286d (diff)
downloadexternal_protobuf-ede38fe9b9f93888e6e41afc7abb09525f44da95.zip
external_protobuf-ede38fe9b9f93888e6e41afc7abb09525f44da95.tar.gz
external_protobuf-ede38fe9b9f93888e6e41afc7abb09525f44da95.tar.bz2
Add support for Java micro protobuf's to protobuf-2.2.0a.
See README.android for additional information. Change-Id: I9c5ef2eec484cc87e32841f39060f8f27b8e8472
Diffstat (limited to 'README.android')
-rw-r--r--README.android16
1 files changed, 14 insertions, 2 deletions
diff --git a/README.android b/README.android
index a3ff250..2a19787 100644
--- a/README.android
+++ b/README.android
@@ -3,8 +3,8 @@ Version: 2.2.0a
License: Google BSD like
Description: "Protobuf: The Google protobuf compiler and runtimes for various languages"
-Local Modifications: Initial changes include support for the javamicro
-runtime, see java/README.txt for more details.
+Local Modifications: Initial changes include support for the micro
+protobuf compiler and the assoicated runtime.
Protocol Buffers are a way of encoding structured data in an efficient
yet extensible format. Google uses Protocol Buffers for almost all
@@ -12,3 +12,15 @@ 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.