应用发布后如何处理RuntimeException

How to handle RuntimeException after app is released

以下是我从 Playstore Consle 获得的崩溃报告

java.lang.RuntimeException:  
  at android.app.ActivityThread.performLaunchActivity 
(ActivityThread.java:2756)
  at android.app.ActivityThread.handleLaunchActivity 
(ActivityThread.java:2825)
  at android.app.ActivityThread.-wrap12 (ActivityThread.java)
  at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1557)
  at android.os.Handler.dispatchMessage (Handler.java:110)
  at android.os.Looper.loop (Looper.java:203)
  at android.app.ActivityThread.main (ActivityThread.java:6339)
  at java.lang.reflect.Method.invoke (Native Method)
  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:1084)
  at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:945)

您可以使用 firebase 或 fabric 获取运行时应用程序崩溃的详细信息。

参考以下链接

https://firebase.google.com/docs/android/setup

https://fabric.io/kits/android/crashlytics/install

我发现 @sonarqube 是找出我的应用程序中的运行时异常的最佳选择。 参考 link 并按照步骤

http://www.sonarsource.com/products/editions/community-edition/

它的代码覆盖率也很好

希望它能回答您的问题:)