[ios] Allow location update when app is in background

The app is configured to update the GPS location in the background but this
information is not passed to the framework. With this commit the GPS location
is passed to the framework even when the app is in background. This results in
a higher battery usage if there is an active route but the battery usage will
remain the same if no route is active because the GPS location is not updated.

Close #6940

Signed-off-by: Fabian Wüthrich <me@fabwu.ch>
This commit is contained in:
Fabian Wüthrich 2024-08-07 12:34:24 -06:00 committed by Viktor Havaka
parent 1db5a0a1ca
commit ced00b9df9

View file

@ -594,7 +594,7 @@ void setShowLocationAlert(BOOL needShow) {
{
auto app = UIApplication.sharedApplication;
auto delegate = static_cast<MapsAppDelegate *>(app.delegate);
if (delegate.isDrapeEngineCreated && app.applicationState == UIApplicationStateActive)
if (delegate.isDrapeEngineCreated)
{
auto & f = GetFramework();
if (self.frameworkUpdateMode & MWMLocationFrameworkUpdateLocation)