The code runs as it should in the simulator and on the phone when its plugged in, but as soon as I unplug the cable my service runs intermittently.
I have read quite a bit about the problem and from what I have found out, it is that the phone goes in to standby when the broadcastreceiver has finished. Even if its before my service has started or finished.
Is there a way to extend the time the broadcastreceiver keeps the phone "alive" or passing control of the Wake lock in some way to the service?
Any help would be appreciated.
public class Alarm extends BroadcastReceiver {
private static final String TAG = "AlarmReceiver";
@Override
public void onReceive(Context context, Intent intent) {
Log.d(TAG, "An alarm has been triggered");
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wl = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "My Tag");
wl.acquire();
Intent myService = new Intent(context, BackgroundService.class);
context.startService(myService);
wl.release();
Log.d(TAG, "context.intent -->" + context.startService(myService));
}
}