README.md: Updated compile to implementation. (#5914)

This commit is contained in:
Zhaonian Luan 2019-06-21 14:28:54 -07:00 committed by Jihun Cho
parent 81391c1fad
commit b466d8d380
1 changed files with 6 additions and 6 deletions

View File

@ -58,17 +58,17 @@ Download [the JARs][]. Or for Maven with non-Android, add to your `pom.xml`:
Or for Gradle with non-Android, add to your dependencies:
```gradle
compile 'io.grpc:grpc-netty-shaded:1.21.0'
compile 'io.grpc:grpc-protobuf:1.21.0'
compile 'io.grpc:grpc-stub:1.21.0'
implementation 'io.grpc:grpc-netty-shaded:1.21.0'
implementation 'io.grpc:grpc-protobuf:1.21.0'
implementation 'io.grpc:grpc-stub:1.21.0'
```
For Android client, use `grpc-okhttp` instead of `grpc-netty-shaded` and
`grpc-protobuf-lite` instead of `grpc-protobuf`:
```gradle
compile 'io.grpc:grpc-okhttp:1.21.0'
compile 'io.grpc:grpc-protobuf-lite:1.21.0'
compile 'io.grpc:grpc-stub:1.21.0'
implementation 'io.grpc:grpc-okhttp:1.21.0'
implementation 'io.grpc:grpc-protobuf-lite:1.21.0'
implementation 'io.grpc:grpc-stub:1.21.0'
```
[the JARs]: