diff --git a/android/src/main/java/com/boterop/timer/BackgroundTimerModule.java b/android/src/main/java/com/boterop/timer/BackgroundTimerModule.java index 72556c9..5a0f898 100644 --- a/android/src/main/java/com/boterop/timer/BackgroundTimerModule.java +++ b/android/src/main/java/com/boterop/timer/BackgroundTimerModule.java @@ -36,7 +36,7 @@ public BackgroundTimerModule(ReactApplicationContext reactContext) { super(reactContext); this.reactContext = reactContext; this.powerManager = (PowerManager) getReactApplicationContext().getSystemService(reactContext.POWER_SERVICE); - this.wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "rohit_bg_wakelock"); + this.wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "react-native-background-timer:wakelock"); reactContext.addLifecycleEventListener(listener); }