-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Closed
Closed
Copy link
Labels
Needs: Triage 🔍PartnerPlatform: AndroidAndroid applications.Android applications.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.p: MicrosoftPartner: MicrosoftPartner: Microsoft
Description
As part of the publish process, we indirectly run the androidJavadoc
task in https://github.com/facebook/react-native/blob/master/ReactAndroid/release.gradle. This task specifically excludes the ReactBuildConfig
class. seemingly because it is dependent on build-time sources (see
react-native/ReactAndroid/release.gradle
Line 81 in 3a0ed2e
exclude("**/ReactBuildConfig.java") |
e41ee42 added an import ReactBuildConfig
which causes the task to fail with the following error:
error: cannot find symbol
symbol: variable ReactBuildConfig
location: class ReactEditText
1 error
100 warnings
This blocks the ability to publish a new npm package.
A quick fix is to also exclude ReactEditText from Javadoc generation, but we should ideally fixup the task to import the build-time class to avoid usages of the class breaking doc generation.
Metadata
Metadata
Assignees
Labels
Needs: Triage 🔍PartnerPlatform: AndroidAndroid applications.Android applications.Resolution: LockedThis issue was locked by the bot.This issue was locked by the bot.p: MicrosoftPartner: MicrosoftPartner: Microsoft