2022-01-04 10:03:20 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2022-01-05 10:04:49 +01:00
|
|
|
|
2022-01-04 10:03:20 +01:00
|
|
|
buildscript {
|
2022-01-16 13:51:48 +01:00
|
|
|
ext.kotlin_version = '1.6.10'
|
2022-01-04 10:03:20 +01:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-01-16 13:51:48 +01:00
|
|
|
classpath "com.android.tools.build:gradle:7.0.4"
|
2022-01-04 10:03:20 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
maven { url 'https://jitpack.io' }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|