From 2e101a1b9aee869e62a2cdbbde393f48db7655fd Mon Sep 17 00:00:00 2001 From: tibbi Date: Wed, 7 Sep 2016 23:53:43 +0200 Subject: [PATCH] add Kotlin to the project --- app/build.gradle | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index a9ce3889..3b1e8c6f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,5 +1,7 @@ apply plugin: 'com.android.application' apply plugin: 'android-apt' +apply plugin: 'kotlin-android' +apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 23 @@ -32,10 +34,27 @@ dependencies { compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.jakewharton:butterknife:8.0.1' compile 'com.android.support:design:23.4.0' + compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" apt 'com.jakewharton:butterknife-compiler:8.0.1' } +repositories { + mavenCentral() +} + +buildscript { + ext.kotlin_version = '1.0.3' + repositories { + mavenCentral() + } + + dependencies { + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version" + } +} + def Properties props = new Properties() def propFile = new File('signing.properties') if (propFile.canRead()) {