-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
33 lines (31 loc) · 1.02 KB
/
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
32
33
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.2.2" apply false
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
id("com.google.dagger.hilt.android") version "2.50" apply false
id("com.google.devtools.ksp") version "1.9.20-1.0.14" apply false
id("com.autonomousapps.dependency-analysis") version "+"
}
dependencyAnalysis {
issues {
// Ignore ktx dependencies if a transitive dependency is used
structure { ignoreKtx(true) }
all {
onUnusedDependencies {
severity("fail")
}
onUsedTransitiveDependencies {
severity("warn")
}
onIncorrectConfiguration {
severity("fail")
}
onUnusedAnnotationProcessors {
severity("fail")
}
onRedundantPlugins {
severity("fail")
}
}
}
}