I'm developing an android java application,
I'm stuck on a point of how to run a function in the background even if the app is closed.
My goal is to get the user location every 30 minutes.
Thank you.
I'm developing an android java application,
I'm stuck on a point of how to run a function in the background even if the app is closed.
My goal is to get the user location every 30 minutes.
Thank you.
You can either use JobIntentService or WorkManager for running the task periodically.
You can use Service to get user location while the application is in the background.
And for further implementation you can refer below link:-