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

Only working at foreground,not working at background!

Open CreazyJack opened this issue 4 years ago • 1 comments

it working surely,but it can only working at foreground,i'm sad...

registerJob = () => { BackgroundJob.schedule({ jobKey: 'myJob', // 切换到后台时,安排作业 period: 1000, // 运行作业的频率,这个数字不准确 exact: true, allowWhileIdle: true, persist: true, allowExecutionInForeground: true, }) .then(() => console.log('注册后台成功!')) .catch((err) => console.log(err)); };

CreazyJack avatar Apr 26 '20 10:04 CreazyJack

Have you solved it

wy10 avatar Aug 05 '21 09:08 wy10