I have some activities in my application. In main activity I have defined the wake lock:
PowerManager powerManager = (PowerManager)getSystemService(Context.POWER_SERVICE);
wakeLock = powerManager.newWakeLock(PowerManager.FULL_WAKE_LOCK, "My Lock");
and released it in onPause() method. My question is, is it active in the whole of application? or Do I need to copy/paste it in each activity that I have?
Thanks