From 66ca3c242221692a05624e03ad937c11046532d4 Mon Sep 17 00:00:00 2001 From: Dan Roundhill Date: Mon, 28 Sep 2015 20:24:24 -0700 Subject: [PATCH] Only include the google libraries that are needed. Ref: https://developers.google.com/android/guides/setup#split --- Simplenote/build.gradle | 3 ++- Wear/build.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Simplenote/build.gradle b/Simplenote/build.gradle index df40abf4f..3a043a5ea 100644 --- a/Simplenote/build.gradle +++ b/Simplenote/build.gradle @@ -20,7 +20,8 @@ dependencies { compile "com.simperium.android:simperium:0.6.6" compile "com.android.support:appcompat-v7:23.0.1" compile 'com.android.support:design:23.0.1' - compile "com.google.android.gms:play-services:6.1.+" + compile "com.google.android.gms:play-services-analytics:8.1.0" + compile "com.google.android.gms:play-services-wearable:8.1.0" compile "org.wordpress:passcodelock:1.0.0" wearApp project(':Wear') diff --git a/Wear/build.gradle b/Wear/build.gradle index 6b74deef0..ba0ce0e74 100644 --- a/Wear/build.gradle +++ b/Wear/build.gradle @@ -35,7 +35,7 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.google.android.support:wearable:+' - compile 'com.google.android.gms:play-services-wearable:5.0.77' + compile 'com.google.android.gms:play-services-wearable:8.1.0' } if(["storeFile", "storePassword", "keyAlias", "keyPassword"].count { !project.hasProperty(it) } == 0 ){