aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-09-21 21:40:26 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-09-21 21:40:26 +0900
commitdb50829d0a7d92b42d36b92e1dda45b76b743e6b (patch)
treea43485585ac5ddf10e4fa61d2f933523843ca57c /build.gradle
parent1814d7d2a39920f844023cbf6a7ee7b5229683c9 (diff)
downloadSmileEssence-db50829d0a7d92b42d36b92e1dda45b76b743e6b.tar.gz
make it work
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index ad92f7b9..c2a7577c 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,16 +1,18 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
+ ext.kotlin_version = '1.0.3'
repositories {
jcenter()
mavenCentral()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
- classpath 'com.android.tools.build:gradle:1.3.1'
+ classpath 'com.android.tools.build:gradle:1.+'
// classpath 'com.android.databinding:dataBinder:1.0-rc1' // is unusable
classpath 'me.tatarka:gradle-retrolambda:3.2.3'
classpath 'io.fabric.tools:gradle:1.+'
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}