diff --git a/app/build.gradle b/app/build.gradle index 09adcf8..a27991a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,13 +4,13 @@ apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-kapt' android { - compileSdkVersion 25 - buildToolsVersion "26.0.0" + compileSdkVersion 26 + buildToolsVersion "26.0.1" defaultConfig { applicationId "net.thauvin.erik.android.tesremoteprogrammer" minSdkVersion 21 - targetSdkVersion 25 + targetSdkVersion 26 versionCode 1 versionName "1.0" buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L" @@ -31,14 +31,14 @@ dependencies { testCompile 'junit:junit:4.12' - compile 'com.android.support:support-v13:25.3.1' - compile 'com.android.support:appcompat-v7:25.3.1' + compile 'com.android.support:support-v13:26.0.1' + compile 'com.android.support:appcompat-v7:26.0.1' compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" compile 'org.jetbrains.anko:anko-sdk23:0.10.1' compile 'org.jetbrains.anko:anko-appcompat-v7:0.10.1' compile 'org.jetbrains.anko:anko-support-v4:0.10.1' compile 'org.jetbrains.anko:anko-design:0.10.1' - compile 'com.android.support:design:25.3.1' + compile 'com.android.support:design:26.0.1' compile group: 'com.google.code.gson', name: 'gson', version: '2.8.1' // https://github.com/JakeWharton/ViewPagerIndicator @@ -48,14 +48,20 @@ dependencies { compile 'com.github.AndroidDeveloperLB:AutoFitTextView:4' // https://github.com/hotchemi/PermissionsDispatcher - compile 'com.github.hotchemi:permissionsdispatcher:2.2.0' - kapt 'com.github.hotchemi:permissionsdispatcher-processor:2.2.0' + compile 'com.github.hotchemi:permissionsdispatcher:2.4.0' + kapt 'com.github.hotchemi:permissionsdispatcher-processor:2.4.0' compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" + + // https://github.com/eggheadgames/android-about-box + compile 'com.github.eggheadgames:android-about-box:1.2.0' + compile 'com.android.support:animated-vector-drawable:26.0.1' + compile 'com.android.support:cardview-v7:26.0.1' } repositories { mavenCentral() maven { url "https://jitpack.io" } + maven { url "https://maven.google.com" } } kapt { diff --git a/build.gradle b/build.gradle index ffdbb28..d6afac1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.1.4' + ext.kotlin_version = '1.1.4-2' repositories { jcenter() }