I have an App, that collects some data using URLSession Requests. These requests can't run in parallel, because I need the response of one request to trigger the next one. This whole process could take up to 30 seconds. On iPhone this works fine using Background Tasks...
Now I would like to trigger that using an Apple Watch, but as soon as the app goes to "Inactive" (display darkens) everything stops. When I keep the display on and so the app active, it runs fine...
What is the best way to solve this or is there even no way to solve this?