We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a gradle with the following in it and it will not parse unless I remove the comments. It should parse correctly.
project.ext.react = [ enableHermes: true, // clean and rebuild if changing // hermesFlagsRelease: ["-w", "-O", "-output-source-map"], // hermesFlagsStaging: ["-w", "-O", "-output-source-map"], // hermesFlagsDebug: ["-w", "-O", "-output-source-map"], bundleInStaging: true, devDisabledInStaging: true, bundleInInternalTest: true, bundleInRelease: true, deleteDebugFilesForVariant: { // Resolves hermes related bug for variants https://github.com/facebook/react-native/issues/33177 def v -> v.name.toLowerCase().contains('release') || v.name.toLowerCase().contains('staging') }, ]
The text was updated successfully, but these errors were encountered:
Hi @ray-holland-es, sorry for the late response - these Github notifications end up somewhere I don't see them.
Anyways, this sure seems like a bug - the reasonable outcome here would indeed be that the comments are skipped and the parse completes OK.
Any chance you happen have time to provide a fix for the issue?
Thanks for sharing!
Sorry, something went wrong.
No branches or pull requests
I have a gradle with the following in it and it will not parse unless I remove the comments. It should parse correctly.
The text was updated successfully, but these errors were encountered: