Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update app on the App Store

Tags:

ios

upgrade

Here is my scenario:

My app has version X in the app store, then I want to upload version X+1 to the store.

There has been a major change between version X and version X+1. Both apps were using backgroundFetch to do some of the work

Assuming version X was opened, and version X+1 was never opened after downloading, will i still be receiving backgroundFetch events ?

like image 392
Lena Bru Avatar asked Nov 08 '22 21:11

Lena Bru


1 Answers

From Apple:

In most cases, the system does not relaunch apps after they are force quit by the user. One exception is location apps, which in iOS 8 and later are relaunched after being force quit by the user. In other cases, though, the user must launch the app explicitly or reboot the device before the app can be launched automatically into the background by the system.

It means the app need to receive backgroundFetch events for X+1.

like image 175
Justlike Avatar answered Nov 14 '22 23:11

Justlike