From 4ecafd1691f1ecd6dd8588e516747a22e3d5ca43 Mon Sep 17 00:00:00 2001 From: Omar Alejandro Mainegra Sarduy Date: Wed, 28 Mar 2018 15:14:20 -0400 Subject: [PATCH] Bump versions --- app/build.gradle | 7 +++---- build.gradle | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 1694a58..5b1653e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -5,12 +5,11 @@ apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { - compileSdkVersion 26 - buildToolsVersion "26.0.2" + compileSdkVersion 27 defaultConfig { applicationId "com.eugenebrusov.cards" minSdkVersion 21 - targetSdkVersion 26 + targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" @@ -25,7 +24,7 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" + implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "com.android.support:appcompat-v7:$rootProject.supportVersion" implementation "com.android.support:recyclerview-v7:$rootProject.supportVersion" implementation "com.android.support:cardview-v7:$rootProject.supportVersion" diff --git a/build.gradle b/build.gradle index df7bc94..d7d5ce9 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,13 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.1.3-2' + ext.kotlin_version = '1.2.30' repositories { google() jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.0.0' + classpath 'com.android.tools.build:gradle:3.1.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong @@ -27,5 +27,5 @@ task clean(type: Delete) { } ext { - supportVersion = '26.0.2' + supportVersion = '27.1.0' }