2018-07-27 18:37:33 +05:30
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2021-12-18 11:58:25 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
repositories {
|
2021-09-09 00:00:20 +05:30
|
|
|
mavenCentral()
|
2018-07-27 18:37:33 +05:30
|
|
|
google()
|
|
|
|
}
|
|
|
|
dependencies {
|
2023-04-16 19:39:15 +01:00
|
|
|
classpath libs.gradle
|
|
|
|
classpath libs.kotlin.gradle.plugin
|
|
|
|
classpath libs.androidx.navigation.safeargs.plugin
|
2018-07-27 18:37:33 +05:30
|
|
|
}
|
|
|
|
}
|
2022-05-17 10:54:39 +05:30
|
|
|
plugins {
|
2023-04-16 19:39:15 +01:00
|
|
|
alias libs.plugins.github.ben.manes
|
|
|
|
alias libs.plugins.google.devtools.ksp apply false
|
2022-05-17 10:54:39 +05:30
|
|
|
}
|
2022-07-22 14:50:54 +08:00
|
|
|
|
2023-03-06 12:11:20 +05:30
|
|
|
tasks.register('clean', Delete) {
|
2018-07-27 18:37:33 +05:30
|
|
|
delete rootProject.buildDir
|
2021-12-11 01:21:51 +05:30
|
|
|
}
|