Commit 446506b0 by 刘鹏

Merge branch 'fix/lp/lp_fix_yunxin_hint' into 'release'

feat: 云信指令1,指令2消息类型提示拦截,并埋点

See merge request app_android_lib/YDL-Component!246
parents a3c6a9df 219f19d5
...@@ -534,6 +534,16 @@ public class AVChatActivity extends AVChatBaseUI implements AVChatVideoUI.TouchZ ...@@ -534,6 +534,16 @@ public class AVChatActivity extends AVChatBaseUI implements AVChatVideoUI.TouchZ
avChatVideoUI.peerVideoOn(); avChatVideoUI.peerVideoOn();
} }
break; break;
case AVChatControlCommand.NOTIFY_AUDIO_ON:
AliYunRichLogsHelper.Companion.getInstance()
.sendRichLog(AliYunLogConfig.YUNXIN, "handleCallControl 咨询师打开了麦克风");
break;
case AVChatControlCommand.NOTIFY_AUDIO_OFF:
AliYunRichLogsHelper.Companion.getInstance()
.sendRichLog(AliYunLogConfig.YUNXIN, "handleCallControl 咨询师关闭了麦克风");
break;
default: default:
ToastUtil.toastShort(this, "对方发来指令值:" + notification.getControlCommand()); ToastUtil.toastShort(this, "对方发来指令值:" + notification.getControlCommand());
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment