[ios] disable location updates pausing in BG during the nav/track recording

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2024-08-30 17:50:13 +04:00 committed by Alexander Borsuk
parent 50b35086c9
commit 5a0ba02276

View file

@ -444,7 +444,7 @@ void setShowLocationAlert(BOOL needShow) {
_locationManager = [[CLLocationManager alloc] init];
_locationManager.delegate = self;
[MWMLocationManager refreshGeoModeSettingsFor:_locationManager geoMode:self.geoMode];
_locationManager.pausesLocationUpdatesAutomatically = YES;
_locationManager.pausesLocationUpdatesAutomatically = NO;
_locationManager.headingFilter = 3.0;
}
return _locationManager;