grpc-java/examples/android
Eric Anderson 0a01b3cf42 Simplify nano flag to codegen to just 'nano' from 'nano=true'
'nano=true' still works, but any value is now ignored. This is to align
with our lite flag, but also just because It's Cleaner.

Note that this is counter to what javanano does. Javanano requires all
flags have a value and uses true/false for many values.
2016-03-30 09:34:22 -07:00
..
app Simplify nano flag to codegen to just 'nano' from 'nano=true' 2016-03-30 09:34:22 -07:00
.gitignore move grpc-common stuff to right location 2015-08-27 16:07:41 -07:00
README.md Clean up bitrot from Android example 2016-03-25 13:52:03 -07:00
build.gradle Clean up bitrot from Android example 2016-03-25 13:52:03 -07:00
settings.gradle move grpc-common stuff to right location 2015-08-27 16:07:41 -07:00

README.md

gRPC Hello World Tutorial (Android Java)

PREREQUISITES

  • Java gRPC

  • Android Tutorial if you're new to Android development

  • We only have Android gRPC client in this example. Please follow examples in other languages to build and run a gRPC server.

INSTALL

1. Clone the gRPC Java git repo

$ git clone https://github.com/grpc/grpc-java
$ cd grpc-java

2. Install gRPC Java (not necessary for released versions)

$ ./gradlew install -PskipCodegen=true

3. Install the app

$ cd examples/android
$ ../../gradlew installDebug