grpc-java/examples/android
Sergii Tkachenko e1ddc3553f
example-android: Add android:exported="true" tag (#9482)
Add android:exported="true" tag to activities/services/receivers that specify an intent filter.

Apps targeting Android 12 and higher are required to specify an explicit value for `android:exported` when the corresponding component has an intent filter defined. Future versions of the manifest merger, as well as the Android platform and the Playstore enforce this.
2022-08-23 14:56:03 -07:00
..
clientcache Start 1.50.0 development cycle (#9433) 2022-08-10 08:17:59 -07:00
helloworld example-android: Add android:exported="true" tag (#9482) 2022-08-23 14:56:03 -07:00
routeguide Start 1.50.0 development cycle (#9433) 2022-08-10 08:17:59 -07:00
strictmode Start 1.50.0 development cycle (#9433) 2022-08-10 08:17:59 -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.