From 740aa11be5539775fcf5968fbc3fad63965c63b8 Mon Sep 17 00:00:00 2001 From: "Chris J. Karr" Date: Fri, 6 Jan 2017 14:36:47 -0600 Subject: [PATCH] Updating build dependencies --- .travis.yml | 4 ++-- build.gradle | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index af91e7d..553bb01 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ before_install: - unzip gradle-2.14.1-bin.zip - export GRADLE_HOME=$PWD/gradle-2.14.1 - export PATH=$GRADLE_HOME/bin:$PATH - - ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-25.0.0 + - ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-25.0.2 - git clone https://github.com/cbitstech/anthracite-clients-android.git - mv anthracite-clients-android .. @@ -20,7 +20,7 @@ android: - tools # The BuildTools version used by your project - # - build-tools-24 + # - build-tools-25 # The SDK version used to compile your project - android-25 diff --git a/build.gradle b/build.gradle index 5c91e1c..020df13 100755 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:2.2.2' + classpath 'com.android.tools.build:gradle:2.2.3' } } @@ -37,20 +37,20 @@ android { } dependencies { - compile 'com.android.support:appcompat-v7:25.0.0' + compile 'com.android.support:appcompat-v7:25.1.0' compile fileTree(dir: 'libs', include: '*.jar') compile project(':anthracite-clients-android') compile 'com.facebook.android:facebook-android-sdk:3.23.1' compile 'com.github.scribejava:scribejava-apis:3.0.0' compile 'com.github.scribejava:scribejava-core:3.0.0' compile 'commons-codec:commons-codec:1.10' - compile 'com.android.support:customtabs:25.0.0' - compile 'com.google.android.gms:play-services-fitness:9.8.0' - compile 'com.google.android.gms:play-services-auth:9.8.0' + compile 'com.android.support:customtabs:25.1.0' + compile 'com.google.android.gms:play-services-fitness:10.0.1' + compile 'com.google.android.gms:play-services-auth:10.0.1' } compileSdkVersion 25 - buildToolsVersion '25.0.0' + buildToolsVersion '25.0.2' useLibrary 'org.apache.http.legacy'