-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.gradle
20 lines (17 loc) · 873 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
// Use plugins from the version catalog
alias(libs.plugins.application) apply false // Apply in individual modules
alias(libs.plugins.library) apply false
alias(libs.plugins.googleServices) apply false // Apply in individual modules
alias(libs.plugins.firebaseCrashlytics) apply false // Apply in individual modules
alias(libs.plugins.hilt) apply false // Apply in individual modules
alias(libs.plugins.ksp) apply false // Apply in individual modules
alias(libs.plugins.org.jetbrains.kotlin.kapt) apply false
alias(libs.plugins.jetbrains.kotlin.android) apply false
alias(libs.plugins.compose.compiler) apply false
}
// Clean task to delete build directories
task clean(type: Delete) {
delete rootProject.buildDir
}