aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Warrington <cmw@google.com>2015-09-10 12:19:25 -0700
committerChris Warrington <cmw@google.com>2015-09-10 12:19:25 -0700
commitb0922b13b9fd69a849e56658528bacee06c9bafb (patch)
tree602c40cb1d9b9189b8a7ce7b222b98df6053ee65
parent4ad26442f34c33878c77442d52dc5388eac41f87 (diff)
downloadiosched-b0922b13b9fd69a849e56658528bacee06c9bafb.tar.gz
Rather than using + everywhere. Change-Id: I616b6497aecb6c869b9db4498f690fd066c7c13e
-rw-r--r--Wearable/build.gradle6
-rw-r--r--android/build.gradle22
2 files changed, 14 insertions, 14 deletions
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 @@ android {
}
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 @@ android {
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'
}