Background fetch after force-quit

Hello dev's!
Hope you're all doing well and safe.

Im my react-native app, I've written the image upload feature in Swift. Will it be possible to carry out the image upload task in background even after the user forcefully kills the app?

Exactly related to this: Thread

Specifications of my app:-
  • Developed in react native

  • Written the image upload module in Swift

  • iOS 13+,  iPad 12"

Thank you in advance.

Will it be possible to carry out the image upload task in background
even after the user forcefully kills the app?

No, assuming that, by “forcefully kills the app”, you mean “removes the app from the multitasking UI”. As I mentioned on this other thread the system interprets this gesture as a strong indication that the user doesn’t want your app running and thus won’t give you app background fetch time until the user manually launches the app again.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@apple.com"
Background fetch after force-quit
 
 
Q