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 ->
7070 def javadoc = task(" javadoc${ variant.name.capitalize()} " , type : Javadoc ) {
7171 description " Generates Javadoc for $variant . name . "
7272 destinationDir = rootProject. file(" docs/api" )
73- source = variant. javaCompile . source
73+ source = variant. javaCompiler . source
7474 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+ }
7778 options. docletpath = [rootProject. file(" ./gradle/ExcludeDoclet.jar" )]
7879 options. doclet = " me.grantland.doclet.ExcludeDoclet"
7980
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33distributionPath =wrapper/dists
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =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