I want to regularly track a user's location, such as Google Latitude. Something that wakes the phone every X minutes, even if the application is currently not working, get the location and send it to the server. This is what the user will have to choose.
Using LocalManager is not like the way to go. I guess this is kind of the following question: LocationManager updates every minute, consuming a lot of battery power
Using a combination of AlarmManager and LocationManager seems to work.
What is the best way to do this?
synic source share