2016-04-12 22:35:40 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2022-04-20 21:13:57 +02:00
|
|
|
ext.kotlin_version = '1.6.20'
|
2017-11-21 13:55:19 +01:00
|
|
|
|
2016-04-12 22:35:40 +02:00
|
|
|
repositories {
|
2017-11-21 13:55:19 +01:00
|
|
|
google()
|
2018-10-17 22:34:51 +02:00
|
|
|
jcenter()
|
2016-04-12 22:35:40 +02:00
|
|
|
}
|
2017-11-21 13:55:19 +01:00
|
|
|
|
2016-04-12 22:35:40 +02:00
|
|
|
dependencies {
|
2022-04-20 21:13:57 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:7.1.3'
|
2017-11-21 13:55:19 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2016-04-12 22:35:40 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-11-21 13:55:19 +01:00
|
|
|
google()
|
2018-10-17 22:34:51 +02:00
|
|
|
jcenter()
|
2017-09-27 23:28:56 +02:00
|
|
|
maven { url 'https://jitpack.io' }
|
2016-04-12 22:35:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|