grpc-java/examples/android
Jeff Davidson 45ffb06f00 Bump compileSdkVersion and finalize setAllowActivityStarts API.
Per https://developer.android.com/about/versions/14#beta-3, Android U has reached the platform stability milestone which means that all external APIs are finalized.

We can thus bump the compileSdkVersion to 34 (U) and begin using APIs added there. We leave targetSdkVersion unchanged for now to avoid the broader evaluation of whether deeper changes may be necessary as part of the upgrade; this simply allows compile-time access to newer APIs without changing runtime behavior.

See b/274061424
2023-11-07 08:01:44 -08:00
..
clientcache Bump compileSdkVersion and finalize setAllowActivityStarts API. 2023-11-07 08:01:44 -08:00
helloworld Bump compileSdkVersion and finalize setAllowActivityStarts API. 2023-11-07 08:01:44 -08:00
routeguide Bump compileSdkVersion and finalize setAllowActivityStarts API. 2023-11-07 08:01:44 -08:00
strictmode Bump compileSdkVersion and finalize setAllowActivityStarts API. 2023-11-07 08:01:44 -08: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.