-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS App crashes if missing permissions for location updates #110
Comments
Thanks for sharing this @louis123562! Just to confirm, flipping the boolean was the only change needed, right? Apple is saying I need to fill |
Do i get you right; your app does not access/use location at all? My app does use location, but triggered by the user (not the bg runner). For my case, it was enough to flip the boolean from true to false. You can fill |
Correct, the app doesn't use location at all. I set
I can fill |
I removed code that references location in |
Our app was rejected by Apple because we had the background mode 'location updates' enabled, but we dont implemented a feature that would take use of it. The background mode with 'location updates' is required by the documentation of this plugin.
Because we dont use this feature in the background runner at all, we disabled the background mode. This leads to an crashing background runner.
We were able to modify the sourcecode of the background runner not using location at all. Now the app runs without crashes and without the backgroundmode 'location updates'.
This is a similar request to #86 which focuses Android. We would like to see more updates for the background runner; handling especially permissions.
The text was updated successfully, but these errors were encountered: