From 9b4c40693402aaf6b2596b16c0593bf1bafea5f4 Mon Sep 17 00:00:00 2001 From: RicomenPL Date: Sun, 10 Sep 2017 15:32:45 +0200 Subject: [PATCH] Update API 25 to API 26 (Android O) (#22) --- app/build.gradle | 28 ++++++++++++++-------------- build.gradle | 8 ++++++++ 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 4b9275b5f..0881e8ba4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -3,12 +3,12 @@ apply plugin: 'jacoco-android' apply plugin: "io.github.ddimtirov.codacy" android { - compileSdkVersion 25 - buildToolsVersion "25.0.3" + compileSdkVersion 26 + buildToolsVersion "26.0.1" defaultConfig { applicationId "io.github.wulkanowy" minSdkVersion 14 - targetSdkVersion 25 + targetSdkVersion 26 versionCode 1 versionName "0.1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -30,20 +30,20 @@ dependencies { androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:appcompat-v7:26.0.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' - compile 'org.jsoup:jsoup:1.10.3' - compile 'com.android.support:design:25.3.1' - compile 'com.android.support:support-vector-drawable:25.3.1' - compile 'com.android.support:support-v4:25.3.1' - compile 'com.android.support:recyclerview-v7:25.3.1' - compile 'org.apache.commons:commons-lang3:3.6' - compile 'org.apache.commons:commons-collections4:4.1' - compile 'com.thoughtbot:expandablerecyclerview:1.3' - compile 'com.android.support:cardview-v7:25.3.1' + compile 'com.android.support:design:26.0.1' + compile 'com.android.support:support-vector-drawable:26.0.1' + compile 'com.android.support:support-v4:26.0.1' + compile 'com.android.support:recyclerview-v7:26.0.1' + compile 'com.android.support:cardview-v7:26.0.1' compile 'com.google.code.gson:gson:2.8.1' compile 'com.firebase:firebase-jobdispatcher:0.8.1' - + compile 'com.thoughtbot:expandablerecyclerview:1.3' + compile 'org.apache.commons:commons-lang3:3.6' + compile 'org.apache.commons:commons-collections4:4.1' + compile 'org.jsoup:jsoup:1.10.3' + testCompile 'junit:junit:4.12' testCompile 'org.mockito:mockito-core:2.9.0' } diff --git a/build.gradle b/build.gradle index 23fa39aec..d48a1109d 100644 --- a/build.gradle +++ b/build.gradle @@ -3,9 +3,13 @@ buildscript { repositories { jcenter() + mavenCentral() maven { url "https://plugins.gradle.org/m2/" } + maven { + url 'https://maven.google.com' + } } dependencies { classpath 'com.android.tools.build:gradle:2.3.3' @@ -20,6 +24,10 @@ buildscript { allprojects { repositories { jcenter() + mavenCentral() + maven { + url 'https://maven.google.com' + } } }