If
locationClient.setInterval(60*1000);
locationClient.setSmallesDisplacement(10);
locationClient.setFastestInterval(1000);
is given, then when will the updates be called? If user have moved 10mts within 60secs, will location updates be called? Or if user haven't moved any distance within 60secs can the updates be fetched? If all the properties are used at once which will be given priority?
I have used all of them in my app. But, it worked well only when displacement is 1mt and interval is 30secs. And got more weird results when displacement is increased to 20mts keeping interval same.