-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (29 loc) · 955 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (29 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@file:Suppress("DSL_SCOPE_VIOLATION")
apply { from("gradle/projectDependencyGraph.gradle") }
buildscript {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath(libs.kotlin.gradleplugin)
classpath(libs.hilt.plugin)
classpath(libs.agp)
classpath(libs.androidx.navigation.safe.args)
}
}
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.dagger.hilt) apply false
alias(libs.plugins.google.services) apply false
alias(libs.plugins.kotlinx.serialization) apply false
alias(libs.plugins.compose.compiler) apply false
alias(libs.plugins.android.test) apply false
}
tasks.register("clean", Delete::class) {
delete(rootProject.layout.buildDirectory)
}