diff options
Diffstat (limited to 'android/app')
| -rw-r--r-- | android/app/build.gradle | 8 |
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 |
