File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -70,10 +70,11 @@ android.libraryVariants.all { variant ->
70
70
def javadoc = task(" javadoc${ variant.name.capitalize()} " , type : Javadoc ) {
71
71
description " Generates Javadoc for $variant . name . "
72
72
destinationDir = rootProject. file(" docs/api" )
73
- source = variant. javaCompile . source
73
+ source = variant. javaCompiler . source
74
74
ext. androidJar = " ${ android.sdkDirectory} /platforms/${ android.compileSdkVersion} /android.jar"
75
- classpath = files(variant. javaCompile. classpath. files) + files(ext. androidJar)
76
-
75
+ doFirst {
76
+ classpath = files(variant. javaCompiler. classpath. files) + files(ext. androidJar)
77
+ }
77
78
options. docletpath = [rootProject. file(" ./gradle/ExcludeDoclet.jar" )]
78
79
options. doclet = " me.grantland.doclet.ExcludeDoclet"
79
80
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-4.4 -all.zip
You can’t perform that action at this time.
0 commit comments