-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (30 loc) · 1.01 KB
/
build.gradle
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply plugin: 'idea'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
}
// disabled due to: https://github.com/nebula-plugins/gradle-lint-plugin/issues/342
// must use pre v18.0.0 until agp 8.0
//plugins {
// id 'nebula.lint' version '17.8.0'
//}
plugins {
alias libs.plugins.application apply false
alias libs.plugins.compose.compiler apply false
alias libs.plugins.dagger.hilt.android apply false
alias libs.plugins.dependency.analysis
alias libs.plugins.google.services apply false
alias libs.plugins.firebase.crashlytics apply false
alias libs.plugins.jetbrains.kotlin.android apply false
alias libs.plugins.jetbrains.kotlin.kapt apply false
alias libs.plugins.jetbrains.kotlin.parcelize apply false
alias libs.plugins.ksp apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}