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:
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'
}
}
}