2017-01-02 20:37:38 -05:00
|
|
|
buildscript {
|
2020-04-28 17:02:40 +02:00
|
|
|
ext.kotlin_version = '1.3.72'
|
2017-01-02 20:37:38 -05:00
|
|
|
repositories {
|
2017-10-27 15:19:12 +04:00
|
|
|
google()
|
2020-01-31 16:51:40 -08:00
|
|
|
jcenter()
|
2017-01-02 20:37:38 -05:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-06-04 20:16:48 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.0'
|
2017-11-05 23:32:36 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-01-02 20:37:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2020-01-31 16:51:40 -08:00
|
|
|
google()
|
2017-01-02 20:37:38 -05:00
|
|
|
jcenter()
|
2017-03-07 22:23:17 +01:00
|
|
|
maven { url "https://jitpack.io" }
|
2017-01-02 20:37:38 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|