跳到主要内容

上报异常信息(ReportException)

[Player Network SDK & MSDK]

Firebase 支持上报 C#,Lua,JS 等语言的异常信息。

Bugly 支持上报 C/C++/C#,Java,Object-C/Swift 等语言的异常信息。

支持渠道:Firebase,CrashSight

AndroidiOSWindows
注意

MSDK 暂不支持 Windows

函数定义

void ReportException(
int type,
string exceptionName,
string exceptionMsg,
string exceptionStack,
Dictionary<string, string> extInfo);

入参说明

参数类型说明
类别int语言类型
3: cocoa
4: C#
5: JS
6: Lua
exceptionNamestring异常的名称
exceptionMsgstring异常的信息
exceptionStackstring异常的堆栈信息
extInfoDictionary<string, string>其他的异常信息

代码示例

Dictionary<string, string> paramsDic = new Dictionary<string, string>();
// Add key-value pair
UnionAdapterAPI.GetCrashService().ReportException(5, "crashName", "message", "stack", paramsDic);