即使应用程序在 React Native 中关闭,我如何执行任务
How can i perform task even if the app is closed in React Native
如果设备重新联机,我想执行一些任务。我尝试过使用广播接收器,但当应用程序为 运行 并且应用程序移至后台时,它工作正常。但是当应用程序关闭时它不起作用:(.
请找到我试过的以下代码..
import {DeviceEventEmitter,Platform} from 'react-native';
const func=(map)=>{
console.log("connection changed")
}
DeviceEventEmitter.addListener('GReferrerBroadcastReceiver', func);
任何人都可以提出一个解决方案来解决应用程序关闭时如何执行某些任务。我在本机 android 中找到了 Job scheduler,但我如何连接到 React Native???
一个帮助将是非常可观的:) ......
这个库实现了后台任务。它的实现是在 JS 中并且非常容易使用:https://github.com/Rapsssito/react-native-background-actions
React-native-background-action 工作得很好,请参考官方网站的文档,但如果您在开始单击后寻找用户跟踪,那么它会在 phone 锁定 10-15 分钟后失败...
如果设备重新联机,我想执行一些任务。我尝试过使用广播接收器,但当应用程序为 运行 并且应用程序移至后台时,它工作正常。但是当应用程序关闭时它不起作用:(.
请找到我试过的以下代码..
import {DeviceEventEmitter,Platform} from 'react-native';
const func=(map)=>{
console.log("connection changed")
}
DeviceEventEmitter.addListener('GReferrerBroadcastReceiver', func);
任何人都可以提出一个解决方案来解决应用程序关闭时如何执行某些任务。我在本机 android 中找到了 Job scheduler,但我如何连接到 React Native???
一个帮助将是非常可观的:) ......
这个库实现了后台任务。它的实现是在 JS 中并且非常容易使用:https://github.com/Rapsssito/react-native-background-actions
React-native-background-action 工作得很好,请参考官方网站的文档,但如果您在开始单击后寻找用户跟踪,那么它会在 phone 锁定 10-15 分钟后失败...