mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a05e9f8e09
Summary: Fixes redbox/yellowbox symbolication when the Java delta client is enabled. Previously the modules would get concatenated in a nondeterministic order (owing to Metro's parallelism) which differed from their order in the source map, where they're explicitly sorted by module ID. This diff changes the data structure holding modules in memory from a `LinkedHashMap` (which iterates in insertion order) to a `TreeMap` (which iterates in key order). NOTE: Similar to this change in the Chrome debugger's delta client: https://github.com/react-native-community/cli/pull/279 Reviewed By: dcaspi Differential Revision: D15301927 fbshipit-source-id: 27bdecfb3d6963aa358e4d542c8b7663fd9eb437
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.