generated from Bizyback/template-android
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbuild.gradle.kts
31 lines (29 loc) · 1001 Bytes
/
build.gradle.kts
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
import org.jlleitschuh.gradle.ktlint.reporter.ReporterType
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
// android
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
// kotlin
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.ksp) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.kotlin.compose.compiler) apply false
// google
alias(libs.plugins.google.services) apply false
alias(libs.plugins.firebase.crashlytics) apply false
// others
alias(libs.plugins.ktlint)
}
allprojects {
apply(plugin = "org.jlleitschuh.gradle.ktlint")
configure<org.jlleitschuh.gradle.ktlint.KtlintExtension> {
reporters {
reporter(ReporterType.JSON)
}
filter {
exclude("**/generated/**")
exclude("**/build/**")
}
}
}