-
Notifications
You must be signed in to change notification settings - Fork 24.3k
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 ReactAndroid not found in rn-tester build #35058
Conversation
/rebase |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for doing this.
@cortinico has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
61fa121
to
30d9fe1
Compare
Base commit: 421bf98 |
PR build artifact for 30d9fe1 is ready. |
PR build artifact for 30d9fe1 is ready. |
This pull request was successfully merged by @robertying in f8cd9f1. When will my fix make it into a release? | Upcoming Releases |
Summary: I tried to build the source locally to test changes with `rn-tester`. However, the gradle build failed due to "./ReactAndroid/gradle.properties (No such file or directory)". I believe this error was introduced by facebook@3d05bac. ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [Internal] [Fixed] - Fix ReactAndroid not found in rn-tester build Pull Request resolved: facebook#35058 Test Plan: - Clone the react-native repo. - Run `cd packages/rn-tester`. - Run `yarn install-android-jsc` and encounter the error. - Apply the fix. - Run `yarn install-android-jsc` and build succeeds. Reviewed By: cipolleschi Differential Revision: D40639856 Pulled By: cortinico fbshipit-source-id: 58b51bcad0af7a21cac032c98484c5942a203e4c
Summary
I tried to build the source locally to test changes with
rn-tester
. However, the gradle build failed due to "./ReactAndroid/gradle.properties (No such file or directory)". I believe this error was introduced by 3d05bac.Changelog
[Internal] [Fixed] - Fix ReactAndroid not found in rn-tester build
Test Plan
cd packages/rn-tester
.yarn install-android-jsc
and encounter the error.yarn install-android-jsc
and build succeeds.