Как я могу получить GPS-фикс каждые 10 минут и каждые 200 метров?
lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 60000, 200f, (LocationListener) this);
Приведенный выше код не работает.