2017-01-03 02:37:38 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-02-11 16:59:01 +01:00
|
|
|
ext.kotlin_version = '1.3.21'
|
2017-01-03 02:37:38 +01:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-10-27 13:19:12 +02:00
|
|
|
google()
|
2017-01-03 02:37:38 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-03-30 15:18:16 +01:00
|
|
|
classpath 'com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta04'
|
2019-04-20 17:44:54 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.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 {
|
|
|
|
jcenter()
|
2017-03-07 22:23:17 +01:00
|
|
|
maven { url "https://jitpack.io" }
|
2017-10-27 13:19:12 +02:00
|
|
|
google()
|
2017-01-03 02:37:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|