描述
客户已集成 Firebase Messaging,Android 平台 Flutter IM SDK 的不触发任何回调。
分析(根因分析、需求分析)
可能原因是客户构建了一个 FlutterEngine instance,导致 SDK 的 FlutterEngine instance 失效了。
解决方案
找到以下 java 文件
packages/firebase_messaging/firebase_messaging/android/src/main/java/io/flutter/plugins/firebase/messaging/FlutterFirebaseMessagingBackgroundExecutor.java
修改代码如下:
if (shellArgs != null) {
Log.i(
TAG,
"Creating background FlutterEngine instance, with args: "
+ Arrays.toString(shellArgs.toArray()));
// 1. 修改此处如下
// backgroundFlutterEngine =
// new FlutterEngine(
// ContextHolder.getApplicationContext(), shellArgs.toArray());
backgroundFlutterEngine =
new FlutterEngine(
ContextHolder.getApplicationContext(), shellArgs.toArray(), false);
} else {
Log.i(TAG, "Creating background FlutterEngine instance.");
// 2. 修改此处如下
// backgroundFlutterEngine =
// new FlutterEngine(ContextHolder.getApplicationContext());
backgroundFlutterEngine =
new FlutterEngine(ContextHolder.getApplicationContext(), null, false);
}文章来源:https://www.toymoban.com/news/detail-791192.html
详情查看:融云-为用户提供IM即时通讯和实时音视频通信云服务文章来源地址https://www.toymoban.com/news/detail-791192.html
到了这里,关于集成 Firebase 后,Flutter IM SDK 在 Android 端不触发回调的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!