For location updated I have used Fused Location API, but it seems that some Android phones are killing the foreground service after a while. How I can run foreground services and be sure that they won't be terminated by Android?
public class LocationUpdatesService extends Service {
public class LocalBinder extends Binder {
public LocationUpdatesService getService() {
return LocationUpdatesService.this;
}
}
private final IBinder mBinder = new LocalBinder();
@Override
public void onCreate() {
createFusedLocationClient();
createFusedLocationRequest();
createLocationCallback();
startForeground(NOTIFICATION_ID, createNotification());
}
private void createFusedLocationClient() {
locationClient = LocationServices.getFusedLocationProviderClient(getApplicationContext());
}
private void createFusedLocationRequest() {
locationRequest = new LocationRequest();
locationRequest.setMaxWaitTime(MAXIMUM_WAIT_TIME);
locationRequest.setSmallestDisplacement(MAXIMUM_DISPLACEMENT);
locationRequest.setPriority(LocationRequest.PRIORITY_BALANCED_POWER_ACCURACY);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
String action = intent.getAction();
if (action != null && action.equalsIgnoreCase(Constants.REQUEST_LOCATION_UPDATES)) {
requestLocationUpdates();
}
if (action != null && action.equalsIgnoreCase(Constants.REMOVE_LOCATION_UPDATES)) {
removeLocationUpdates();
stopSelf();
}
return START_REDELIVER_INTENT;
}
@Override
public IBinder onBind(Intent intent) {
ContextCompat.startForegroundService(getApplicationContext(), new Intent(getApplicationContext(),
LocationUpdatesService.class));
return mBinder;
}
}