You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`
public void uncaughtException(@nonnull final Thread t, @nonnull final Throwable e) {
final String time = new SimpleDateFormat("yyyy_MM_dd-HH_mm_ss").format(new Date());
CrashInfo info = new CrashInfo(time, e);
final String crashFile = dirPath + time + ".txt";
UtilsBridge.writeFileFromString(crashFile, info.toString(), true);
if (DEFAULT_UNCAUGHT_EXCEPTION_HANDLER != null) {
DEFAULT_UNCAUGHT_EXCEPTION_HANDLER.uncaughtException(t, e);
}
if (onCrashListener != null) {
onCrashListener.onCrash(info);
}
}`
描述 Bug
在CrashUtils 中我做了处理, 崩溃后重启APP, 但是用户反馈APP闪退后没有重启
是某些崩溃收集不到? 有哪些? 有解决方案不?
相关代码
异常堆栈
在客户手中收集不到
The text was updated successfully, but these errors were encountered: