[Android] Ignore javadoc lint
Geoffrey Métais
git at videolan.org
Tue Apr 7 18:32:37 CEST 2020
vlc-android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Tue Apr 7 18:30:04 2020 +0200| [6b1183a9a39cc57276485982320858bdaf520a1b] | committer: Geoffrey Métais
Ignore javadoc lint
> https://code.videolan.org/videolan/vlc-android/commit/6b1183a9a39cc57276485982320858bdaf520a1b
---
build.gradle | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/build.gradle b/build.gradle
index fa1e9358b..ab4e63506 100644
--- a/build.gradle
+++ b/build.gradle
@@ -24,6 +24,12 @@ allprojects {
}
jcenter()
}
+ tasks.withType(Javadoc) {
+ // Ignores errors from mavenAndroidJavadocs task
+ // (reference: github.com/novoda/bintray-release/issues/71#issuecomment-164324255)
+ options.addStringOption('Xdoclint:none', '-quiet')
+ options.addStringOption('encoding', 'UTF-8')
+ }
}
ext {
More information about the Android
mailing list