I'm capturing location information with a native module and attempting to send it via a DeviceEventEmitter to my application:
[self.bridge.eventDispatcher sendDeviceEventWithName:@"locationUpdated" body:locationEvent];
This works great when the screen is on. However, when the screen is locked, React Native stops pushing these events to my application. It does eventually push them, but only after the screen is unlocked. This is suboptimal - is there a way to have React Native keep pushing them even when the screen is locked such that my app can continually process them?