Remove remaining unused dependencies across the project (#3390)

This commit is contained in:
Phil Oliver
2025-10-07 23:04:20 -04:00
committed by GitHub
parent 5c6c83d31c
commit 36f1aabcb5
13 changed files with 11 additions and 58 deletions
+3 -1
View File
@@ -97,7 +97,8 @@ dependencyAnalysis {
ignoreKtx(true)
// Hilt Android is required by the Hilt plugin, but isn't directly used in many cases. Group
// these dependencies together so warnings aren't triggered.
// these dependencies together so warnings aren't triggered. If neither of these are being
// used, the module likely shouldn't be applying the Hilt plugin.
bundle("hilt-core") {
includeDependency("com.google.dagger:hilt-core")
includeDependency(libs.hilt.android)
@@ -112,6 +113,7 @@ dependencyAnalysis {
issues {
all {
onUnusedDependencies {
severity("fail")
exclude("androidx.compose.ui:ui-test-manifest")
}
}