2019-06-29 02:35:14 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-03-08 13:28:18 +01:00
|
|
|
ext.kotlin_version = '1.3.61'
|
2019-06-29 02:35:14 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2019-06-29 15:35:24 +02:00
|
|
|
|
2019-06-29 02:35:14 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2020-09-05 01:06:07 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:4.0.1'
|
2019-12-02 14:39:08 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-06-29 15:35:24 +02:00
|
|
|
|
2019-06-29 02:35:14 +02:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-08 13:28:18 +01:00
|
|
|
plugins {
|
|
|
|
id "com.github.ben-manes.versions" version "0.28.0"
|
|
|
|
}
|
|
|
|
|
2019-06-29 02:35:14 +02:00
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|