From a6079a830cd8be5539ae2ab6f798b64212bb1cc8 Mon Sep 17 00:00:00 2001 From: Nic Capdevila Date: Mon, 9 Oct 2017 11:39:07 -0700 Subject: [PATCH] - update libraries and buildtools --- .travis.yml | 5 ++--- app/build.gradle | 6 +++--- build.gradle | 2 +- frag-nav/build.gradle | 6 +++--- 4 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 6c1c7909..9d83232c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,11 +7,10 @@ android: - tools # The BuildTools version used by your project - - build-tools-25.0.2 - - build-tools-25.0.3 + - build-tools-26.0.2 # The SDK version used to compile your project - - android-25 + - android-26 # Additional components - extra-android-m2repository diff --git a/app/build.gradle b/app/build.gradle index 1f99226c..b37bd855 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 26 - buildToolsVersion '26.0.1' + buildToolsVersion '26.0.2' lintOptions{ abortOnError false } @@ -30,7 +30,7 @@ dependencies { // compile 'com.ncapdevi:frag-nav:2.2.1' compile project(':frag-nav') testCompile 'junit:junit:4.12' - compile 'com.android.support:appcompat-v7:26.0.2' - implementation 'com.android.support:design:26.0.2' + compile 'com.android.support:appcompat-v7:26.1.0' + compile 'com.android.support:design:26.1.0' compile 'com.roughike:bottom-bar:2.0.2' } diff --git a/build.gradle b/build.gradle index 40c90bbc..ebd74475 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:3.0.0-beta4' + classpath 'com.android.tools.build:gradle:3.0.0-beta7' } } diff --git a/frag-nav/build.gradle b/frag-nav/build.gradle index bf5ded60..e781e439 100644 --- a/frag-nav/build.gradle +++ b/frag-nav/build.gradle @@ -35,7 +35,7 @@ ext { android { compileSdkVersion 26 - buildToolsVersion '25.0.3' + buildToolsVersion '26.0.2' lintOptions{ abortOnError false @@ -59,8 +59,8 @@ android { dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'com.android.support:appcompat-v7:26.0.2' - compile 'com.android.support:support-annotations:26.0.2' + compile 'com.android.support:support-fragment:26.1.0' + compile 'com.android.support:support-annotations:26.1.0' testCompile "junit:junit:$rootProject.ext.junitVersion" testCompile "org.mockito:mockito-all:$rootProject.ext.mockitoVersion" testCompile "org.powermock:powermock-module-junit4:$rootProject.ext.powerMockito"