Target Branch(es)
0.78
Link to commit or PR to be picked
facebook/react-native#48823
Description
This addresses an issue with Interop events on Android that are sent before the JS view is ready, such as during startup or with Android view pre-allocation.
React Native Maps emits a onMapReady event during native initialization. However, this event should be queued and emitted only when the mounting manager's event emitter is ready. Android interop events were not being queued correctly, this fixes that issue.