2017-01-03 12:37:38 +11:00
|
|
|
buildscript {
|
2021-03-21 22:42:28 +11:00
|
|
|
ext.kotlin_version = '1.4.31'
|
2017-01-03 12:37:38 +11:00
|
|
|
repositories {
|
2017-10-27 22:19:12 +11:00
|
|
|
google()
|
2020-02-01 11:51:40 +11:00
|
|
|
jcenter()
|
2017-01-03 12:37:38 +11:00
|
|
|
}
|
|
|
|
dependencies {
|
2021-03-21 22:42:28 +11:00
|
|
|
classpath 'com.android.tools.build:gradle:4.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 {
|
2020-02-01 11:51:40 +11:00
|
|
|
google()
|
2017-01-03 12:37:38 +11:00
|
|
|
jcenter()
|
2017-03-08 08:23:17 +11:00
|
|
|
maven { url "https://jitpack.io" }
|
2017-01-03 12:37:38 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|