Wake lock required for BroadcastReceiver phone sleeps?
2363
18-Nov-2014
Trying to write a Broadcast Receiver that processes incoming SMSs. Do I need to use a wake lock / partial wake lock, for this application to work, in spite of device going to sleep due to lack of foreground activity ?
Updated on 19-Nov-2014
Anonymous User
19-Nov-2014I tend to extend a WakefulBroadcastReceiver to simplify things, so in a way yes. For example:
public class MyBroadcastReceiver extends WakefulBroadcastReceiver {@Override
public void onReceive(Context context, Intent intent) {
final ComponentName comp = new ComponentName(context.getPackageName(),
MyIntentService.class.getName());
// Start the service, keeping the device awake while it is launching.
startWakefulService(context, (intent.setComponent(comp)));
setResultCode(Activity.RESULT_OK);
}
}