From 531cab3441dd42358452831e4a1f82a4f815765d Mon Sep 17 00:00:00 2001 From: Javier Santos Date: Tue, 3 Jan 2017 17:09:43 +0100 Subject: [PATCH] Update gradle and libraries --- .travis.yml | 4 ++-- app/build.gradle | 8 ++++---- build.gradle | 2 +- library/build.gradle | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index fb3bb42f..fcabc1db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ jdk: oraclejdk8 android: components: - - build-tools-25.0.1 + - build-tools-25.0.2 - android-25 - extra-android-support - extra-google-m2repository @@ -13,7 +13,7 @@ android: before_script: - echo yes | android update sdk --no-ui --all --filter platform-tools,tools - - echo yes | android update sdk --no-ui --all --filter build-tools-25.0.1 + - echo yes | android update sdk --no-ui --all --filter build-tools-25.0.2 - echo yes | android update sdk --no-ui --all --filter android-25 script: diff --git a/app/build.gradle b/app/build.gradle index 5706d1ce..0dd54f1b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 25 - buildToolsVersion "25.0.1" + buildToolsVersion "25.0.2" defaultConfig { applicationId "com.github.javiersantos.appupdater.demo" @@ -31,9 +31,9 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:25.0.1' - compile 'com.android.support:design:25.0.1' - compile 'com.android.support:cardview-v7:25.0.1' + compile 'com.android.support:appcompat-v7:25.1.0' + compile 'com.android.support:design:25.1.0' + compile 'com.android.support:cardview-v7:25.1.0' compile 'com.mikepenz:iconics-core:2.7.2@aar' compile 'com.mikepenz:material-design-iconic-typeface:2.2.0.2@aar' compile('com.mikepenz:aboutlibraries:5.7.1@aar') { transitive = true } diff --git a/build.gradle b/build.gradle index 957c789c..d9b961b3 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.2.2' + classpath 'com.android.tools.build:gradle:2.2.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files diff --git a/library/build.gradle b/library/build.gradle index 71f74a19..855a93a6 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' android { compileSdkVersion 25 - buildToolsVersion "25.0.1" + buildToolsVersion "25.0.2" defaultConfig { minSdkVersion 9 @@ -20,7 +20,7 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:25.0.1' - compile 'com.android.support:design:25.0.1' + compile 'com.android.support:appcompat-v7:25.1.0' + compile 'com.android.support:design:25.1.0' compile 'com.squareup.okhttp3:okhttp:3.4.2' }