mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a054379a54
Summary: MapBuffer uses unsigned short in C++, but Java doesn't really have a type that represents that. That means that MapBuffer would be limited to max 32768 values instead of 65536, which doesn't make much sense as a limitation. Considering weird (and usually not performant) handling of short values in Java in general, this change replaces them with ints, converting keys from short when needed with `key & 0xFFFF`. Changelog: [Internal] Reviewed By: javache Differential Revision: D33595308 fbshipit-source-id: a7adde8a207bb4aa1d81d367ab5d7b41ace2e291
Building React Native for Android
See the docs on the wiki.
Running tests
When you submit a pull request CircleCI will automatically run all tests. To run tests locally, see Testing.