极光IM 发送视频消息 VideoContent 设置setExtras 在苹果端可以收到,在android 端收不到
im sdk 版本 "jmessage-react-plugin": "^2.5.1",
设置方法如下:
VideoContent videoContent = new VideoContent(null, ".png", videoFile, "", videoTime);
Map xx = new HashMap();
xx.put("video", "mp4");
xx.put("questionCode", mQuestionCode);
videoContent.setStringExtra("video", "mp4");
videoContent.setStringExtra("questionCode", mQuestionCode);
videoContent.setExtras(xx);
Message msg = mConv.createSendMessage(videoContent);
android 端 向ISO 发送在 content ===》extras 中 就有参数
而android 向android 或者 ios 向android 发送则没有这个参数
请问可能的原因是什么???