Quickblox - Flutter JNI 与本机 C++ 分离

Abd*_*iaz 6 android chat quickblox flutter

我在 Flutter 应用程序中使用 Quickblox 进行聊天。一旦建立连接,聊天就可以正常进行。当应用程序发送到后台时,我按照 Quickblox 文档的建议将连接设置为关闭。但是当我重新打开我的应用程序时,它在其事件中不再收到消息(QBChatEvents.RECEIVED_NEW_MESSAGE)。尽管消息已在日志中发送和接收,但此事件不再起作用。日志显示了这个异常,

Tried to send a platform message to Flutter, but FlutterJNI was detached from native C++. Could not send. Channel:
Run Code Online (Sandbox Code Playgroud)

这是我订阅的活动,

QB.chat.subscribeChatEvent(QBChatEvents.RECEIVED_NEW_MESSAGE,
      (data) {
         // my implementaion here
      });
Run Code Online (Sandbox Code Playgroud)

我从他们的文档中添加了这个实现。

class _SomeScreenState extends State<SomeScreen> with WidgetsBindingObserver {
  
@override
initState() {
  super.initState();
  WidgetsBinding.instance.addObserver(this);
}

@override
void dispose() {
  WidgetsBinding.instance.removeObserver(this);
  super.dispose();
}
  
@override
void didChangeAppLifecycleState(AppLifecycleState state) {
  switch (state) {
    case AppLifecycleState.resumed:
      try {
        await QB.chat.connect(userId, userPassword);
        } on PlatformException catch (e) {
        // Some error occured, look at the exception message for more details
        }
      break;
    case AppLifecycleState.paused:
      print("app in paused");
      try {
        await QB.chat.disconnect();
      } on PlatformException catch (e) {
        // Some error occured, look at the exception message for more details
        }
      break;
}
Run Code Online (Sandbox Code Playgroud)

我在这里做错了什么?

小智 0

尝试向 Flutter 发送平台消息,但 FlutterJNI 与原生 C++ 分离。无法发送。通道:当
我们杀死应用程序并尝试从本机代码传达颤动时,当方法通道被破坏时,就会发生此错误,然后发生此运行时错误

解决方案如下:在后台创建一个新的方法通道,并用该通道调用flutter部分。像下面这样

fun  createMethodChannel(): MethodChannel? {

    var backgroundMethodChannel: MethodChannel? = null;
    var engine: FlutterEngine? = null;
    if (getEngine() == null) {
        engine = FlutterEngine(mContext!!)
        // Define a DartEntrypoint
        val entrypoint: DartExecutor.DartEntrypoint =
            DartExecutor.DartEntrypoint.createDefault()
        // Execute the DartEntrypoint within the FlutterEngine.
        engine.dartExecutor.executeDartEntrypoint(entrypoint)
    } else {
        engine = getEngine();
    }

    backgroundMethodChannel = MethodChannel(engine?.dartExecutor?.binaryMessenger, "CHANNEL_NAME")
    return backgroundMethodChannel
}
 fun getEngine(): FlutterEngine? { 
    return FlutterEngineCache.getInstance().get("CHANNEL_NAME");
}
Run Code Online (Sandbox Code Playgroud)