Name Date Size #Lines LOC

..--

clientcache/H25-Apr-2025-1,2871,067

helloworld/H25-Apr-2025-367307

routeguide/H25-Apr-2025-866692

strictmode/H25-Apr-2025-420354

README.mdH A D25-Apr-2025894 2819

README.md

1gRPC Hello World Example (Android Java)
2========================
3
4PREREQUISITES
5-------------
6- [Java gRPC](https://github.com/grpc/grpc-java)
7
8- [Android Tutorial](https://developer.android.com/training/basics/firstapp/index.html) if you're new to Android development
9
10- [gRPC Java Android Quick Start Guide](https://grpc.io/docs/quickstart/android.html)
11
12- We only have Android gRPC client in this example. Please follow examples in other languages to build and run a gRPC server.
13
14INSTALL
15-------
16
171. **[Install gRPC Java library SNAPSHOT locally, including code generation plugin](../../COMPILING.md) (Only need this step for non-released versions, e.g. master HEAD).**
18
192. Install the app
20```sh
21$ cd helloworld  # or "cd routeguide"
22$ ../../gradlew installDebug
23```
24
25Please refer to the
26[tutorial](https://grpc.io/docs/tutorials/basic/android.html) on
27how to use gRPC in Android programs.
28