aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEric Gribkoff <ericgribkoff@google.com>2018-02-22 12:16:19 -0800
committerGitHub <noreply@github.com>2018-02-22 12:16:19 -0800
commitd4b11e565985c50d6f37587ab49a4716c140e720 (patch)
tree488180759941cdb352d75d58bb9b9ab74e55b2b6 /examples
parent9dc4ded597ecb73a70d9e5dd1aa2ce4e6386b8f3 (diff)
downloadgrpc-grpc-java-d4b11e565985c50d6f37587ab49a4716c140e720.tar.gz
examples: include correct version in Android caching example (#4114)
Diffstat (limited to 'examples')
-rw-r--r--examples/android/clientcache/app/build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/android/clientcache/app/build.gradle b/examples/android/clientcache/app/build.gradle
index 884169a0f..e8bbb5cbb 100644
--- a/examples/android/clientcache/app/build.gradle
+++ b/examples/android/clientcache/app/build.gradle
@@ -38,7 +38,7 @@ protobuf {
artifact = "com.google.protobuf:protoc-gen-javalite:3.0.0"
}
grpc {
- artifact = 'io.grpc:protoc-gen-grpc-java:1.9.0-SNAPSHOT' // CURRENT_GRPC_VERSION
+ artifact = 'io.grpc:protoc-gen-grpc-java:1.11.0-SNAPSHOT' // CURRENT_GRPC_VERSION
}
}
generateProtoTasks {
@@ -58,12 +58,12 @@ dependencies {
compile 'com.android.support:appcompat-v7:27.0.2'
// You need to build grpc-java to obtain these libraries below.
- compile 'io.grpc:grpc-okhttp:1.9.0-SNAPSHOT' // CURRENT_GRPC_VERSION
- compile 'io.grpc:grpc-protobuf-lite:1.9.0-SNAPSHOT' // CURRENT_GRPC_VERSION
- compile 'io.grpc:grpc-stub:1.9.0-SNAPSHOT' // CURRENT_GRPC_VERSION
+ compile 'io.grpc:grpc-okhttp:1.11.0-SNAPSHOT' // CURRENT_GRPC_VERSION
+ compile 'io.grpc:grpc-protobuf-lite:1.11.0-SNAPSHOT' // CURRENT_GRPC_VERSION
+ compile 'io.grpc:grpc-stub:1.11.0-SNAPSHOT' // CURRENT_GRPC_VERSION
compile 'javax.annotation:javax.annotation-api:1.2'
testCompile 'junit:junit:4.12'
testCompile 'com.google.truth:truth:0.36'
- testCompile 'io.grpc:grpc-testing:1.9.0-SNAPSHOT'
+ testCompile 'io.grpc:grpc-testing:1.11.0-SNAPSHOT' // CURRENT_GRPC_VERSION
}