Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Remove deprecated javacompile #13777

Merged
merged 1 commit into from
Jan 23, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform/android/gradle/gradle-javadoc.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android.libraryVariants.all { variant ->
description = "Generates javadoc for build $name"
failOnError = false
destinationDir = new File(destinationDir, variant.baseName)
source = variant.getJavaCompiler().source
source = variant.sourceSets.collect { it.java.sourceFiles }.inject { m, i -> m + i }
options.windowTitle("Mapbox Maps SDK for Android $VERSION_NAME Reference")
options.docTitle("Mapbox Maps SDK for Android $VERSION_NAME")
options.header("Mapbox Maps SDK for Android $VERSION_NAME Reference")
Expand Down