-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
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
fix IOException in BuildCodegenCLITask #48008
base: main
Are you sure you want to change the base?
Conversation
mmm that's suspicious as if that would be the case, the CI would also be right no? How can I reproduce this? #47552 needs more time before we can merge it (cc @huntie) so I'm keen on fixing this issue with this PR if necessary |
@vonovak can you share a trace of the failure? |
To repro, open https://github.com/facebook/react-native/blob/0.77-stable/build.gradle.kts in android studio. For me it fails doing the gradle sync. When I add
in here I get this trace: Details
|
LGTM, thanks for opening! @cortinico FYI I put some effort into resurrecting #47552 recently. Closer than ever to landing, but needs a final nontrivial Jest fix in fbsource (sigh). |
Summary:
building RN tester with 0.77 rc-0 doesn't work now because of
java.io.IOException: No such file or directory
on line 48.buildDirectory
is a Gradle property representing a file#47552 removes this file altogether so feel free to close if that one is the "right one"
Changelog:
[ANDROID] [FIXED] - fix IOException in
BuildCodegenCLITask
Test Plan:
After this change, building RN tester works.