2014-07-04 22:09:25 -04:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2014-11-17 13:35:15 -05:00
|
|
|
ext.kotlin_version = '0.9.206'
|
|
|
|
|
2014-07-04 22:09:25 -04:00
|
|
|
repositories {
|
2014-11-21 18:23:52 -05:00
|
|
|
mavenCentral()
|
2014-07-04 22:09:25 -04:00
|
|
|
}
|
|
|
|
dependencies {
|
2014-11-23 22:51:39 -05:00
|
|
|
// Version lock the gradle plugin because Kotlin only works with up to 14.2
|
|
|
|
// KT-6181 is open to track this issue
|
2014-11-23 22:28:28 -05:00
|
|
|
classpath 'com.android.tools.build:gradle:0.14.2'
|
2014-11-17 13:35:15 -05:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2014-07-04 22:09:25 -04:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2014-11-21 18:23:52 -05:00
|
|
|
mavenCentral()
|
2014-07-04 22:09:25 -04:00
|
|
|
}
|
|
|
|
}
|