Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
clientcache/ | H | 25-Apr-2025 | - | 1,287 | 1,067 | |
helloworld/ | H | 25-Apr-2025 | - | 367 | 307 | |
routeguide/ | H | 25-Apr-2025 | - | 866 | 692 | |
strictmode/ | H | 25-Apr-2025 | - | 420 | 354 | |
README.md | H A D | 25-Apr-2025 | 894 | 28 | 19 |
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