使用UncaughtExceptionHandler的FireBase Crashlytics

Firebase Crashlytics With UncaughtExceptionHandler(使用UncaughtExceptionHandler的FireBase Crashlytics)
本文介绍了使用UncaughtExceptionHandler的FireBase Crashlytics的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经集成了Firebase Crashlytics版本2.9.1来挖掘崩溃,以覆盖我的应用程序的性能和稳定性。 如果应用程序具有自己的UncaughtExceptionHandler,则不会在Firebase Crashlytics控制台上记录崩溃。

我的应用程序中有BaseActivity。 在onCreate()方法中,我根据项目需求注册了定制的UncaughtExceptionHandler。

每当应用程序因任何原因崩溃时,用户都应被重定向至闪屏(MainActivity.java)。

public class BaseActivity extends FragmentActivity{ 

@Override 
protected void onCreate(Bundle arg0) { 
   // Enable global crash handler. 
   Thread.setDefaultUncaughtExceptionHandler(handleAppCrash); 
} 

/*** 
* @Purpose Called when any crash occurs in the application. 
***/ 
private Thread.UncaughtExceptionHandler handleAppCrash = new Thread.UncaughtExceptionHandler() { 
@Override 
public void uncaughtException(Thread thread, Throwable ex) { 

   Intent intent = new Intent(context, MainActivity.class); //redirect to Splash screen
   intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); 
   context.startActivity(intent); 
   System.exit(0); 
  } 
}; 

} 

推荐答案

对于最新的Firebase Crashlytics 17.x.x,他们在内容提供商内部设置了未捕获的异常处理程序,这样他们就不需要开发人员传递上下文和手动初始化。这样做是为了在应用程序启动时自动初始化Firebase。因此,即使我们在应用程序类onCreate中设置了未捕获的异常处理程序,我们的实现也会覆盖FireBase的,并且不会向FireBase异常处理程序报告崩溃。

修复:要解决此问题,我们必须编写一个自定义内容提供程序,并在我们的应用程序中将其优先级设置为最高。然后在内容提供者的oncreate中初始化未捕获的异常处理程序,而不是在应用程序类中执行。这样,"我们的"将首先被初始化,并且不会覆盖Firebase的。

这篇关于使用UncaughtExceptionHandler的FireBase Crashlytics的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)