We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a3f50 commit ddde62aCopy full SHA for ddde62a
library/scene/build.gradle
@@ -16,4 +16,9 @@ dependencies {
16
api 'android.arch.lifecycle:runtime:1.1.0'
17
}
18
19
-
+task javadoc(type: Javadoc) {
20
+ source = android.sourceSets.main.java.srcDirs
21
+ classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
22
+ destinationDir = file("../javadoc/scene/")
23
+ failOnError false
24
+}
library/scene_ui/build.gradle
@@ -16,3 +16,9 @@ dependencies {
compile project(path: ':library:scene')
+ destinationDir = file("../javadoc/scene_ui/")
0 commit comments