Search code examples
androidgeolocationlocationfusedlocationproviderapilocation-services

Removing location updates using FusedLocationApi NOT working


hello Im trying to stop location updates and I have used this code:-

LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, this)

But later I've noticed they stop using "FusedLocationApi" because its kinda deprecated. So guys, how can i stop location updates?


Solution

  • In newer Google place Services FusedLocationApi is deprecated. And what i understand from your question that you want remove location, so in your case i think this the way to do it:

    mFusedLocationClient.removeLocationUpdates(mLocationCallback);