grpc-java/examples/android
Eric Anderson f3f4ed4ef3 Upgrade to Gradle 8.2.1 and upgrade plugins
Most changes are migrating from conventions to the equivalent
extensions. JMH, AppEngine, and Jib plugins trigger future compatibility
warnings with `--warning-mode all`.

The movement of configurations was to allow sourceSets to create the
configurations and then we just configure them. When configurations were
before sourceSets, we'd implicitly create the configuration.

The examples were _not_ updated to the newer Gradle, although the
non-Android examples work with the newer Gradle. The Android examples
use an older Android Gradle Plugin which will need to be upgraded first.
https://github.com/grpc/grpc-java/issues/10445
2023-08-02 13:29:44 -07:00
..
clientcache Upgrade to Gradle 8.2.1 and upgrade plugins 2023-08-02 13:29:44 -07:00
helloworld Upgrade to Gradle 8.2.1 and upgrade plugins 2023-08-02 13:29:44 -07:00
routeguide Upgrade to Gradle 8.2.1 and upgrade plugins 2023-08-02 13:29:44 -07:00
strictmode Upgrade to Gradle 8.2.1 and upgrade plugins 2023-08-02 13:29:44 -07:00
README.md all: remove copies of gradle wrapper 2018-12-11 16:23:28 -08:00

README.md

gRPC Hello World Example (Android Java)

PREREQUISITES

INSTALL

  1. Install gRPC Java library SNAPSHOT locally, including code generation plugin (Only need this step for non-released versions, e.g. master HEAD).

  2. Install the app

$ cd helloworld  # or "cd routeguide"
$ ../../gradlew installDebug

Please refer to the tutorial on how to use gRPC in Android programs.