Android 和 Flurry 异常处理程序
这个问题是针对有在 Android 应用程序中使用 flurry sdk 经验的人。此 sdk 安装自定义异常处理程序。我对 flurry 记录的信息细节不满意,我想在使用 flurry 时安装我自己的 ExceptionHandler。遗憾的是,每个线程的 ExceptionHandler 都是唯一的。有没有人找到一个wordaround?
谢谢, 卢卡
This question is for people that has experience using flurry sdk in android applications. This sdk installs a custom exception handler. I am not satisfied with the detail of information that is logged by flurry and I would like to install my own ExceptionHandler while using flurry. Sadly the ExceptionHandler is unique per thread. Is there anyone that has found a wordaround?
Thanks,
Luca
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以先初始化 Flurry,然后通过“Thread.setDefaultUncaughtExceptionHandler(...)”设置自己的异常处理程序吗?有关默认未捕获异常处理程序的更多信息,请访问:Java 中的全局异常处理程序
-Dan
Could you initialize Flurry first and then set your own exception handler via "Thread.setDefaultUncaughtExceptionHandler(...)" ? More info on default uncaught exception handlers here: Global Exception Handlers in Java
-Dan