Running app , even though user completely closed the app

Is it possible to run the app in the background even though the user has completely closed it?

I want to fetch device activity every 15 mins.

Is this possible to fetch even though the app is completely closed?

Did you consider creating a Widget ?

This may be useful: https://stackoverflow.com/questions/65641007/ios-deep-link-from-widget-when-app-closed

Have you checked this? maybe helpful for you. [https://developer.apple.com/documentation/backgroundtasks)

To start, see iOS Background Execution Limits.

even though the user has completely closed it?

I’m not sure what you mean by “completely closed it”. I suspect you’re referring to the swiping up to remove the app from the multitask API (typically, but erroneously IMO, referred to force quit). If so, the system won’t run your app in the background again until the user has launched it manually.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Running app , even though user completely closed the app
 
 
Q