Skip to content

Commit

Permalink
Fix :ReactAndroid:androidJavadoc task
Browse files Browse the repository at this point in the history
See facebook#30415

This is a quick and dirty fix to unblock publish, of excluding a class from Javadoc generation that is importing a class current build logic cannot handle. This is not a long-term fix for the issue.
  • Loading branch information
NickGerleman committed Nov 17, 2020
1 parent 3a0ed2e commit 8db0921
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ReactAndroid/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ afterEvaluate { project ->
classpath += files(project.getConfigurations().getByName("compile").asList())
include("**/*.java")
exclude("**/ReactBuildConfig.java")
exclude("**/ReactEditText.java")
}

task androidJavadocJar(type: Jar, dependsOn: androidJavadoc) {
Expand Down

0 comments on commit 8db0921

Please sign in to comment.