I'm working on an app that fetches background location from users to provide relevant content to them when they are in proximity of a defined set of points of interest.
By testing my app I see that once the app goes in Background state, it is eventually moved to a Suspended state by the system, as reported by the Apple Documentation. I know that apps that are not used by the user will eventually get suspended, but there should be ways to extend their life before the get suspended. I found some older discussions about this topic:
Prevent my application from being suspended in background mode?
Silent push notifications only delivered if device is charging and/or app is foreground
Specifically, I'm wondering what can be accomplished using silent push notifications and what other options are available.
Has anyone tried to solve this issue with the latest iOS 10? Thanks in advance!