excluding the emoji dependencies from the unused check, their resources are used

This commit is contained in:
Adam Brown 2022-05-31 10:46:50 +01:00
parent 2e1a11e10e
commit 2ce64b8f87

View File

@ -269,7 +269,13 @@ dependencyAnalysis {
}
project(":vector") {
onUnusedDependencies {
exclude("org.maplibre.gl:android-sdk", "org.maplibre.gl:android-plugin-annotation-v9") // False positives
// False positives
exclude(
"org.maplibre.gl:android-sdk",
"org.maplibre.gl:android-plugin-annotation-v9",
"com.vanniktech:emoji-google",
"com.vanniktech:emoji-material"
)
}
}
}