You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we try to publish an internal release in the google play console, we get two errors, smth like that:
Error
Your declaration of permissions for location determination in the background needs to be updated.
Error
This release contains permissions that have not yet been explained in the Play Console. You can update the permissions declarations via the sensitive app permissions. Further information
I guess this comes from the Manifest in the background-runner sources itself.
In our own Manifest, we do not add ACCESS_BACKGROUND_LOCATION:
We are not in the need of accessing the GPS-Location with the background runner.
Is there a way to take the permission out?
The text was updated successfully, but these errors were encountered:
Yeah, this has been a known potential issue on iOS as well.
Im working on a potential solution to this that may come in the form of a CLI that will help add / remove APIs and their relevant permissions (in addition to removing unused API code, which could be an issue as well).
Workaround for iOS: When not checking "Location updates" in Background Modes, the iOS app crashes on the first dispatchEvent. If you do not need to track the gps location with the runner, disable the functionality in node_modules:
If we try to publish an internal release in the google play console, we get two errors, smth like that:
Error
Your declaration of permissions for location determination in the background needs to be updated.
Error
This release contains permissions that have not yet been explained in the Play Console. You can update the permissions declarations via the sensitive app permissions. Further information
I guess this comes from the Manifest in the background-runner sources itself.
In our own Manifest, we do not add ACCESS_BACKGROUND_LOCATION:
We are not in the need of accessing the GPS-Location with the background runner.
Is there a way to take the permission out?
The text was updated successfully, but these errors were encountered: