I want to call a service when a certain activity starts. So, here\'s the Service class:
public class UpdaterServiceManager extends Service {
private fin
Intent serviceIntent = new Intent(this,YourActivity.class);
startService(serviceIntent);
add service in manifist
for running service on oreo and greater devices use for ground service and show notification to user
or use geofencing service for location update in background reference http://stackoverflow.com/questions/tagged/google-play-services