2017-04-14 00:57:56 +02:00
|
|
|
buildscript {
|
2020-06-11 13:56:43 +02:00
|
|
|
ext.kotlin_version = '1.3.72'
|
2017-04-14 00:57:56 +02:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
2019-03-09 11:46:51 +01:00
|
|
|
google()
|
|
|
|
|
2017-04-14 00:57:56 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-06-11 13:56:43 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.0'
|
2019-06-09 15:13:38 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-04-14 00:57:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
2019-03-09 11:46:51 +01:00
|
|
|
google()
|
|
|
|
maven { url 'https://jitpack.io' }
|
2017-04-14 00:57:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|