My app periodically checks the location using an alarm to a BroastcastReceiver that starts a service. I know I should acquire a wakelock before I start the service but my question is when can I release it?

If I release the wakelock after calling requestLocationUpdates, can the device go to sleep and not call my LocationListener or will the device always wake to deliver updates and stay awake until the callback has returned? I'm reluctant to hold onto the wakelock because that would prevent the device from sleeping between updates until I'm done with the location.

link|improve this question

My slightly educated guess is that requesting location updates will hold a wakelock so you can release yours. However, what are you doing that you need location updates when the phone is asleep? – Falmarri Sep 28 '10 at 19:25
I think there probably lots of use cases for location updates while the device is asleep, e.g. recording GPS tracks of a journey. – Christopher Sep 29 '10 at 8:49
feedback

2 Answers

up vote 0 down vote accepted

So based on my experience, releasing the wake lock after after calling requestLocationUpdates doesn't seem to be a problem. Unfortunately, the only way to get a definitive answer is to ask a platform developer, but I've received no response.

link|improve this answer
feedback

You could take a look at CommonsGuy's WakefulService which, according to the documentation can handle the partial wakelock stuff for you.

link|improve this answer
The question is not "How to use a WakeLock" but "Is a WakeLock necessary?" – noah Sep 28 '10 at 18:23
The answer is yes, because you're starting a Service, as I believe the SDK documentation mentions. – Christopher Sep 28 '10 at 18:30
The complete question is: Is a WakeLock necessary when calling requestLocationUpdates in order to guarantee updates are received when they are available? – noah Sep 28 '10 at 18:34
I believe you just have to hold a wakelock until the Service has started up and you have called requestLocationUpdates. At that point, the service is running and can receive the location updates; the wakelock can be released, the onReceive method will have completed and the device can potentially go back to sleep. – Christopher Sep 28 '10 at 19:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.