2

我正在将 CometChat 库集成到 React 本机应用程序中。当应用程序处于打开状态时,呼叫功能工作正常,但当应用程序处于后台状态时,呼叫未接听。请指导我如何集成后台呼叫功能提前谢谢

使用的版本:React Native 版本 0.61.3 CometChat 版本 2.1.4 CometChat 调用版本 1.0.3

4

1 回答 1

1

我建议玩AppState

if (
      appState.current.match(/active/) &&
      nextAppState === "background"
    ) {
      console.log("App has come to the background! Here apply code for comming calls.");
    }
于 2020-12-11T08:29:53.870 回答