aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEric Gribkoff <ericgribkoff@google.com>2018-02-14 14:43:16 -0800
committerGitHub <noreply@github.com>2018-02-14 14:43:16 -0800
commit79bf7de927a5cbe1e40c35ea7134ab167e077630 (patch)
treea333173d09637d346b301eb05e7be5fcbda2136c /examples
parent2f2881756f590009a370c94c1ed58ae56f747e87 (diff)
downloadgrpc-grpc-java-79bf7de927a5cbe1e40c35ea7134ab167e077630.tar.gz
examples: match applicationId to AndroidManifest.xml package (#4075)
Diffstat (limited to 'examples')
-rw-r--r--examples/android/clientcache/app/build.gradle2
-rw-r--r--examples/android/helloworld/app/build.gradle2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/android/clientcache/app/build.gradle b/examples/android/clientcache/app/build.gradle
index 6d4f3659d..884169a0f 100644
--- a/examples/android/clientcache/app/build.gradle
+++ b/examples/android/clientcache/app/build.gradle
@@ -5,7 +5,7 @@ android {
compileSdkVersion 27
defaultConfig {
- applicationId "io.grpc.android.clientcacheexample"
+ applicationId "io.grpc.clientcacheexample"
minSdkVersion 19
targetSdkVersion 27
multiDexEnabled true
diff --git a/examples/android/helloworld/app/build.gradle b/examples/android/helloworld/app/build.gradle
index c5981a77f..4f949a61b 100644
--- a/examples/android/helloworld/app/build.gradle
+++ b/examples/android/helloworld/app/build.gradle
@@ -5,7 +5,7 @@ android {
compileSdkVersion 27
defaultConfig {
- applicationId "io.grpc.android.helloworldexample"
+ applicationId "io.grpc.helloworldexample"
// API level 14+ is required for TLS since Google Play Services v10.2
minSdkVersion 14
targetSdkVersion 27