2018-07-27 13:07:33 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2021-09-08 18:30:20 +00:00
|
|
|
ext.kotlin_version = '1.5.30'
|
2018-07-27 13:07:33 +00:00
|
|
|
repositories {
|
2021-09-08 18:30:20 +00:00
|
|
|
mavenCentral()
|
2018-07-27 13:07:33 +00:00
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2021-09-08 18:30:20 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:7.0.2'
|
2018-12-12 21:27:37 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-09-08 18:30:20 +00:00
|
|
|
def nav_version = "2.3.5"
|
2020-07-24 18:28:15 +00:00
|
|
|
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
|
2020-10-06 09:06:16 +00:00
|
|
|
classpath "com.diffplug.spotless:spotless-plugin-gradle:4.5.1"
|
2018-07-27 13:07:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2020-10-06 08:46:04 +00:00
|
|
|
mavenCentral()
|
2021-09-08 18:30:20 +00:00
|
|
|
maven { url "https://jitpack.io" }
|
2018-07-27 13:07:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-06 08:46:04 +00:00
|
|
|
/*task clean(type: Delete) {
|
2018-07-27 13:07:33 +00:00
|
|
|
delete rootProject.buildDir
|
2021-09-08 18:30:20 +00:00
|
|
|
}*/
|