Permalink
Show file tree
Hide file tree
4 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1c18ea0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Background location tracking is still failing with iOS8. (Due the missing "Always" privacy option? (Settings > Privacy > Location)) Are there any updates planned or workarounds available?
1c18ea0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi,
You're referencing old code. the latest code should support background location tracking. However, by default we don't include the NSLocationAlwaysUsageDescription (only NSLocationWhenInUseUsageDescription which is foreground only), so currently you'll have to add that yourself manually. I'm thinking of a small plugin to add this key automatically - stay tuned.
1c18ea0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sent a pull request: #28
In the meantime, you can try installing it from my branch:
Please test it out.
1c18ea0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NSLocationWhenInUseUsageDescription
gets overwritten with a blank string if it exist in the plist. This makes it harder to provide a custom description (which is the purpose of the string, btw).Don't know if the plugin facility allows, but if it could handle this 'softly', e.g. only add the key to the plist unless it already exists, that would solve it.