I got a force close when I tried to stop my gsp listener Here\'s the code:
mlocManager.removeUpdates(mlocListener); mlocManager = null;
You need to pass the same object implementing LocationListener that you requested location updates for to the locationManager.removeUpdates() method.
locationManager.removeUpdates(gpsl);