changed SCREEN_DIM_WAKE_LOCK to PARTIAL_WAKE_LOCK

This commit is contained in:
Felix 2015-06-05 14:53:15 -04:00
parent 021369bc18
commit 5972eacb6d

View File

@ -64,8 +64,8 @@ public class PowerManagement extends CordovaPlugin {
try {
if( action.equals("acquire") ) {
if( args.length() > 0 && args.getBoolean(0) ) {
Log.d("PowerManagementPlugin", "Only dim lock" );
result = this.acquire( PowerManager.SCREEN_DIM_WAKE_LOCK );
Log.d("PowerManagementPlugin", "Partial wake lock" );
result = this.acquire( PowerManager.PARTIAL_WAKE_LOCK );
}
else {
result = this.acquire( PowerManager.FULL_WAKE_LOCK );