react-native-background-timer
react-native-background-timer copied to clipboard
Emit event periodically (even when app is in the background)
its working for only 30 seconds on the background for iOS... on android no issues how to fix it?
Hi, Timer is not running in the background if the developer option is disabled and phone is locked. OS: android 9 Please help me out from this issue.
`setInterval()` doesn't hold a wakelock and won't wake the phone if the CPU goes into deep sleep. There may be a better way to accomplish this on Android. https://stackoverflow.com/questions/17324587/will-a-handler-postdelayed-not-being-fired-when-cpu-sleeps >...
After the screen is locked, the background program stops running?
my device android ``` BackgroundTimer.setTimeout(() => { Vibration.vibrate(); console.log('run task'); }, 5000); ```
I installed this package as it was recommended to me on [this StackOverflow issue](https://stackoverflow.com/questions/67480753/react-native-0-63-3-setinterval-not-working-when-using-chrome-debugger) I'm having trouble getting timers to work with the chrome debugger to work because of a...
Hello I tried to use this library for my app and it's work successfully! but when i close application completely in ios, background timer not running can you help me?
`Setting a timer for a long period of time, i.e. multiple minutes, is a performance and correctness issue on Android as it keeps the timer module awake, and timers can...
react-native version 0.63.3