Fix versions of dependencies.

Rather than using + everywhere.

Change-Id: I616b6497aecb6c869b9db4498f690fd066c7c13e
diff --git a/Wearable/build.gradle b/Wearable/build.gradle
index 6a78fd9..d7c3e35 100644
--- a/Wearable/build.gradle
+++ b/Wearable/build.gradle
@@ -41,8 +41,8 @@
 }
 
 dependencies {
-    compile 'com.android.support:support-v13:21.+'
-    compile 'com.google.android.support:wearable:1.0.+'
-    compile 'com.google.android.gms:play-services-wearable:6.1.+'
+    compile 'com.android.support:support-v13:20.0.0'
+    compile 'com.google.android.support:wearable:1.0.0'
+    compile 'com.google.android.gms:play-services-wearable:6.1.11'
 } 
 
diff --git a/android/build.gradle b/android/build.gradle
index 1b29909..45e8df0 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -53,32 +53,32 @@
 
 dependencies {
     wearApp project(':Wearable')
-    compile 'com.google.android.gms:play-services:6.1.+'
-    compile 'com.android.support:support-v13:21.+'
-    compile 'com.android.support:appcompat-v7:21.+'
-    compile 'com.android.support:cardview-v7:21.+'
-    compile 'com.google.code.gson:gson:2.+'
-    compile('com.google.api-client:google-api-client:1.+') {
+    compile 'com.google.android.gms:play-services:6.1.71'
+    compile 'com.android.support:support-v13:21.0.0'
+    compile 'com.android.support:appcompat-v7:21.0.0'
+    compile 'com.android.support:cardview-v7:21.0.0'
+    compile 'com.google.code.gson:gson:2.1'
+    compile('com.google.api-client:google-api-client:1.16.0-rc') {
         exclude group: 'xpp3', module: 'shared'
         exclude group: 'org.apache.httpcomponents', module: 'httpclient'
         exclude group: 'junit', module: 'junit'
         exclude group: 'com.google.android', module: 'android'
     }
-    compile 'com.google.api-client:google-api-client-android:1.17.+'
-    compile 'com.google.apis:google-api-services-plus:+'
+    compile 'com.google.api-client:google-api-client-android:1.17.0-rc'
+    compile 'com.google.apis:google-api-services-plus:v1-rev216-1.17.0-rc'
     compile 'com.github.japgolly.android:svg-android:2.0.6'
     compile fileTree(dir: 'libs', include: '*.jar')
     compile files('../third_party/glide/library/libs/glide-3.2.0a.jar')
     compile files('../third_party/basic-http-client/libs/basic-http-client-android-0.88.jar')
 
     // Google Maps Android API utility library
-    compile('com.google.maps.android:android-maps-utils:0.3+') {
+    compile('com.google.maps.android:android-maps-utils:0.4') {
         exclude group: "com.google.android.gms"
     }
 
     /* The two dependencies below are only required while we are using http
        Drive appdata. When we start using AppData through GMS,
        they should be removed. */
-    compile 'com.google.http-client:google-http-client-gson:1.+'
-    compile 'com.google.apis:google-api-services-drive:+'
+    compile 'com.google.http-client:google-http-client-gson:1.16.0-rc'
+    compile 'com.google.apis:google-api-services-drive:v2-rev135-1.16.0-rc'
 }