mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
be53aae324
Summary: Fix a failure in running a single command to clean and rebuild with Hermes (e.g. `./gradlew clean :RNTester:android:app:installHermesDebug`). From my limited understanding of Gradle, the failure was caused by the fact that the `clean` task could end up running after `prepareHermes`, and therefore delete the shared library after it had been copied. This change updates the `prepareHermes` task to impose the proper order. In investigating this failure, I also updated inconsistent use of the `$thirdPartyNdkDir` variable. Changelog: [Internal][Fixed] Fix a failure in running a single command to clean and rebuild ReactAndroid with Hermes Reviewed By: mdvacca Differential Revision: D23098220 fbshipit-source-id: 822fa8ac9874d54a3fdd432ad8cbee78295228ee
Building React Native for Android
See the docs on the website.
Running tests
When you submit a pull request CircleCI will automatically run all tests. To run tests locally, see Testing.