I would like guidance on how to run several tasks (functions) in background , even when the app is closed from recent apps.
For example:
- a task that verifies a URL every 10 minutes (it is an API of weather forecast)
- a task that verifies every 1 minute if meets a condition (example: reminders set by the user)
- etcetera.
I know that Android Oreo imposed limitations on services in the background. The idea is that the app is compatible from version 5.0 to the most current possible.
Use: Android Studio.
Thanks in advance!