I want to allow my app to send GPS data to server constantly in background after log in until app close..
I use locationManager to send GPS data....
I start to think about manual thread, AsynTask, to handle it....
Question:
locationManager.requestLocationUpdates(provider, 60, 5, this); it will update automatically after 60 ms???
Are there any good strategy to get GPS data and send it constantly to server in background until app closes?