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