Stefan Müller

Results 2 comments of Stefan Müller

We had the same problem. Adding `self.locationManager.allowsBackgroundLocationUpdates = YES;` to the init method of RNIBeacon.m solved the problem. https://developer.apple.com/documentation/corelocation/cllocationmanager/1620568-allowsbackgroundlocationupdates maybe some function like ```objective-c RCT_EXPORT_METHOD(allowsBackgroundLocationUpdates:(BOOL)allow) { self.locationManager.allowsBackgroundLocationUpdates = allow; }...

Seems like the No-Op Entity Cache is introducing a new problems to my project. Using it removes any circular reference detection from morphia. If you have 2 entities referencing each...