react-native-background-timer icon indicating copy to clipboard operation
react-native-background-timer copied to clipboard

Emit event periodically (even when app is in the background)

Results 122 react-native-background-timer issues
Sort by recently updated
recently updated
newest added

I have a countdown timer for a meditation app implemented as follows ``` BackgroundTimer.runBackgroundTimer(() => { this.props.setMeditationLength(this.props.meditationLength - 1000) //stop timer when length is zero if (this.props.meditationLength

Could you add an option to also enable wifi wakelock when the timer is running?

i used this library to upload images into background and foreground but when i switch between my app to other apps syncing is not woking in background

I have a media application where I want to implement auto close applications using user's specific time, but when user set the timer and goes into background mode the task...

I needed a timer each 1000 ms in order to do a background countdown from 5 minutes to 0. After 5 minutes, I opened the app and it still was...

A problem occurred evaluating root project 'XXXX'. Could not find method implementation() for arguments [project ':react-native-background-timer'] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

I have an axios request with retries(if the user is disconnected from network for example) RetryAxios(axios,{retries: 3} ) await Axios.put('data').then({ console.log('im here baby') }) I can run this code once...

Is it possible to launch the timer after reboot? I just tested it that it works when the app is not forced to stop (killed) on Android before reboot, but...

I want a user to be able to record audio after a set duration (e.g. record for 5 minutes after 30 minutes). The issue I have is that it works...