Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/talk-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2022-10-06 23:35:40 +0300
committerAndy Scherzinger <info@andy-scherzinger.de>2022-10-10 18:03:47 +0300
commit9fdc1c2a6e1ad54fa1088e8493e3a65001460f45 (patch)
treee7feffba208c53eaff9f3dc4dac29d0ad95dde2d /app
parent2051588805b652374acd831130dfe25d3dd14ab4 (diff)
Add new analysis action
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Diffstat (limited to 'app')
-rw-r--r--app/build.gradle9
1 files changed, 6 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 7de7c7ea9..4c15589ba 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -131,10 +131,13 @@ android {
excludeFilter = file("${project.rootDir}/spotbugs-filter.xml")
reports {
- xml.enabled = false
+ xml {
+ required = true
+ }
html {
- enabled = true
- destination = file("$project.buildDir/reports/spotbugs/spotbugs.html")
+ required = true
+ outputLocation = file("$project.buildDir/reports/spotbugs/spotbugs.html")
+ stylesheet = 'fancy.xsl'
}
}
}