2023-09-12 15:16:58 +05:30
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath(libs.gradle)
|
2023-09-13 14:43:10 +05:30
|
|
|
classpath(libs.kotlin.gradle.plugin)
|
|
|
|
classpath(libs.kotlin.serialization)
|
2023-02-19 18:42:42 +05:30
|
|
|
classpath(libs.androidx.navigation.safeargs)
|
2023-09-12 15:16:58 +05:30
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here, they belong
|
2023-09-13 14:43:10 +05:30
|
|
|
// in the individual module build.gradle.kts files
|
2023-09-12 15:16:58 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-16 18:04:06 +05:30
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-12 15:16:58 +05:30
|
|
|
plugins {
|
2023-12-25 18:42:33 +05:30
|
|
|
id("com.google.devtools.ksp") version("1.9.22-1.0.16") apply false
|
2023-09-12 15:16:58 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
tasks.register<Delete>("clean") {
|
2023-09-12 18:35:46 +05:30
|
|
|
delete(rootProject.layout.buildDirectory)
|
2023-09-12 15:16:58 +05:30
|
|
|
}
|