Under iOS13, when you request the .always permission for coreLocation (to enable background location e.g. for geofences or iBeacons), the app is only granted a "provisional always" permission, which does not allow it to use coreLocation in the background. At a later stage, in principle the OS should popup a permission request to switch to the .always permission. I have yet to experience it, and it seems (looking at Apple developer forums) that nobody have found a way to consistently trigger this dialog popup.
I have asked for .always (which can only provide a useless "provisional always" permission), and then tried to "upgrade" to a real .always permission, but nothing happens (no popup, no permission change)
I have also tried to follow the WWDC recommandation by the book, asking for .always, receiving provisional always, and then trusting that the OS would show the dialog at some stage - with no luck.
Even more troublesome, even if I change manually the permission setting to a real .always permission for my app, the app continues to be unable to range locations in the background.
If asking for .always and receiving a "provisional" always permission, I would expect the OS the show the location dialog at some stage to propose a "real" .always permission. This hasn't happened in 2 weeks, despite entering geofences in the background 10's of times.
I would also expect the permission "upgrade" flow to work, which is not the case despite what's explained in the WWDC video and docs for coreLocation.
If Apple goes ahead with iOS 13 as is, I expect that numerous apps which legitimately range location in the background will stop working as expected entirely.
Has anybody made any progress on that front ? I have filed a "feedback" to Apple, but don't expect to receive a timely response from them before the September iOS 13 GM.
I am not aware of any direct way to set the permission to Always. From the WWDC videos and experiments, locationManager.requestAlwaysAuthorization() will provide a dialog that does not include the [Always Allow] option. Selecting the [Allow While Using App] puts it in "Provisional Always" mode, but to the user and the app, this is confusing. The user just set it to "Allow While Using App", but the app thinks it's "Always", but it's not yet, the App does not get events, until the second prompt. Very confusing. I was able to get the second prompt, but not right away after the event, it's up to iOS. I too have posted to Apple Feedback, and hope that they will provide some provision for Apps that need Always.
To see the second dialog with the
Allow Always
prompt you have to:To facilitate this, you can set the distance filter to none and start getting continuous location updates.
If you want the location updates to be delivered in the background, then you have to show the blue indicator. And then the second dialog requesting
Allow Always
would never appear.When you request a user for their "Always" location permission in iOS 13:
1) The user will get this alert:
2) If you asked for always permission and your user chooses
Allow While in Use
your app will think it got the.authorizedAlways
permission but this is theprovisional .authorizedAlways
permission.3) Next, when your app would normally receive location events in the background iOS does not directly launches your app in the background with the events but waits until it thinks the user is not doing anything and it then will present this dialog:
According to the video, this can take a while (6:39):
During this this (in between the app going to the background and the prompt being shown) you won't receive location update events:
4) Then when the user chooses
Change to Always Allow
, the.authorizedAlways
permission will become final (unless the user changes it from the settings somewhere in the future). And you will start to receive location events.Unless (5) the user chooses
Keep Only While Using
and the final permission will become.authorizedWhenInUse
.Here's the overview from the presentation (numbers mine):
And another link to the full video: https://developer.apple.com/videos/play/wwdc2019/705
Does that answer your questions?
That should not be the case. Did you change it in the system preferences?
Try the GM seed, maybe they fixed some bugs regarding this flow.