Skip to content

Commit

Permalink
Readme and docs
Browse files Browse the repository at this point in the history
- javadoc gradle task
  • Loading branch information
bret-fears committed Mar 24, 2017
1 parent 6b66371 commit 0a81bb7
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,13 @@ android {
}
}

task javadocs(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
destinationDir = file("../docs/")
failOnError false
}

dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
Expand Down

0 comments on commit 0a81bb7

Please sign in to comment.