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 {
|
2015-06-13 19:22:21 -04:00
|
|
|
ext.kotlin_version = '0.12.213'
|
2014-11-17 13:35:15 -05:00
|
|
|
|
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 {
|
2015-06-13 19:22:21 -04:00
|
|
|
classpath 'com.android.tools.build:gradle:1.2.3'
|
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
|
|
|
}
|
|
|
|
}
|