summaryrefslogtreecommitdiffhomepage
path: root/android/app
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2021-12-20 15:56:52 +0100
committerAlbin <albin@mullvad.net>2021-12-20 15:56:52 +0100
commit76f10411cdbc2167fd82b794186efe8b433721d0 (patch)
tree9b6be060aa5574674e30dc2c646388af83514cfb /android/app
parent01c39c0a8d173dc160278fe521706cb4fb087c57 (diff)
parent3c999c033317d98865347545c0c75d3b85d42600 (diff)
downloadmullvadvpn-76f10411cdbc2167fd82b794186efe8b433721d0.tar.xz
mullvadvpn-76f10411cdbc2167fd82b794186efe8b433721d0.zip
Merge branch 'add-android-dependency-audit'
Diffstat (limited to 'android/app')
-rw-r--r--android/app/build.gradle8
1 files changed, 8 insertions, 0 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 6af629ec56..95f3b40d55 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -110,6 +110,14 @@ android {
}
}
+dependencyCheck {
+ // Skip the lintClassPath configuration, which relies on many dependencies that has been flagged
+ // to have CVEs, as it's related to the lint tooling rather than the project's compilation class
+ // path. The alternative would be to suppress specific CVEs, however that could potentially
+ // result in suppressed CVEs in project compilation class path.
+ skipConfigurations += 'lintClassPath'
+}
+
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
allWarningsAsErrors = false