We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8de543f commit 85151f7Copy full SHA for 85151f7
backboard/build.gradle
@@ -85,5 +85,13 @@ android.libraryVariants.all { variant ->
85
}
86
87
88
+// disable insane, build-breaking doclint tool in Java 8
89
+if (JavaVersion.current().isJava8Compatible()) {
90
+ tasks.withType(Javadoc) {
91
+ //noinspection SpellCheckingInspection
92
+ options.addStringOption('Xdoclint:none', '-quiet')
93
+ }
94
+}
95
+
96
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
97
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
0 commit comments