Skip to content

Commit 8ff61a1

Browse files
icbakertianyif
authored andcommitted
Stop setting -no-module-directories in ExoPlayer javadoc generation
This flag was introduced to fix links in javadoc search when generating it with Java 11: <unknown commit> The flag is no longer supported with Java 17 (which is required for Gradle 8.0+), and seems to no longer be needed: I generated the javadoc with it removed and the search links work OK. PiperOrigin-RevId: 536738686
1 parent 5328d64 commit 8ff61a1

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

javadoc_combined.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ class CombinedJavadocPlugin implements Plugin<Project> {
3535
links "https://developer.android.com/reference", guavaReferenceUrl
3636
encoding = "UTF-8"
3737
}
38-
options.addBooleanOption "-no-module-directories", true
3938
exclude "**/BuildConfig.java"
4039
exclude "**/R.java"
4140
doFirst {

javadoc_library.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ android.libraryVariants.all { variant ->
3131
"https://guava.dev/releases/$project.ext.guavaVersion/api/docs"
3232
encoding = "UTF-8"
3333
}
34-
options.addBooleanOption "-no-module-directories", true
3534
exclude "**/BuildConfig.java"
3635
exclude "**/R.java"
3736
doFirst {

0 commit comments

Comments
 (0)