2017-01-03 12:37:38 +11:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2018-04-21 07:18:37 +10:00
|
|
|
ext.kotlin_version = '1.2.40'
|
2017-01-03 12:37:38 +11:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-10-27 22:19:12 +11:00
|
|
|
google()
|
2017-01-03 12:37:38 +11:00
|
|
|
}
|
|
|
|
dependencies {
|
2018-04-29 00:17:01 +10:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.2'
|
2017-11-06 08:32:36 +11:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-01-03 12:37:38 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-03-08 08:23:17 +11:00
|
|
|
maven { url "https://jitpack.io" }
|
2017-10-27 22:19:12 +11:00
|
|
|
google()
|
2017-01-03 12:37:38 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|