I am trying to acquire a wake lock in a broadcast receiver so that my alarm clock application can wake the phone from sleep. It crashes at the following line in the code below:

PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "My Tag");

Any ideas what's going on? Is there a better way to do this? Thanks!

import android.content.BroadcastReceiver;

import android.content.Context;

import android.content.Intent;

import android.os.PowerManager;

public class RepeatingAlarmReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) { 
         AlarmAlertWakeLock.acquireCpuWakeLock(context);
         PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
         PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "My Tag");
         wl.acquire();

    }

}
link|improve this question
Could you post the the exception trace which caused your application to crash? – adamk Aug 13 '10 at 8:44
feedback

2 Answers

Make sure you have the WAKE_LOCK permission (check your AndroidManifest.xml).

link|improve this answer
This worked, thanks!!! – Billie Aug 14 '10 at 1:33
feedback

You use the context of the receive method to get the power manager and i think that is the context of the sender of the intent so use the context of your app that should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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