iOS 13 : How to prevent app from getting killed in background?

6.4k Views Asked by At

I am working on an app where my app need to get location in background and update it to the server. It was working fine for earlier iOS versions. But after release of iOS 13, my app is getting killed in the background. I have checked so many workarounds but have found any feasible solution. It is having "Background Processing" capability.

Any help is most welcome!!!

3

There are 3 best solutions below

1
On

https://support.apple.com/en-us/HT210393#1322 - [iOS 13.2.2] Fixes an issue that could cause apps to quit unexpectedly when running in the background

2
On

Only Music Apps or Downloader form internet apps ("Completing a Long-Running Task in the Background") will remain in the background all other apps will be killed after some time.

0
On

Crash may be due to a background task leak. In my application, some SDKs don't use the background task correctly. Because it was killed by the watchdog, debugging will not appear, you can print beginBackgroundTask and endBackgroundTask during debugging. If there is a mismatch, a leak occurs.

I wrote a category to hook background task related methods to avoid leaking being killed by watchdog:https://github.com/ruanjx/MPIBackgroundTaskProtection

More information about background task:https://medium.com/swlh/handling-background-tasks-in-ios-13-67f717d94b3d