How to show a Dialog after crash by using Crashlytics?

房东的猫 提交于 2019-11-27 06:55:38

问题


How to show a Dialog after crash by using Crashlytics.

for example: after crash I need open a dialog where user will put any comment(note) how he did that crash.

Is any option in Crashlytics?


回答1:


Yes, definitely. It's also extremely easy.

Crashlytics.getInstance().setListener(new CrashlyticsListener() {
  @Override
  public void crashlyticsDidDetectCrashDuringPreviousExecution() {
    // now it's the right time to show the dialog
  }
});
Crashlytics.start(context);

EDIT (Deprecated as of July 2015)

If you're using the new Fabric integration, the code is slightly different (as seen here). It should look like this:

Fabric.with(this, new Crashlytics());
Crashlytics.getInstance().setListener(new CrashlyticsListener() {
  @Override
  public void crashlyticsDidDetectCrashDuringPreviousExecution() {
    // now it's the right time to show the dialog
  }
});

EDIT 2 (The latest Fabric SDKs have deprecated the setMethods)

final CrashlyticsListener listener = new CrashlyticsListener() {
            @Override
            public void crashlyticsDidDetectCrashDuringPreviousExecution(){
                  // now it's the right time to show the dialog
            }
        };

final CrashlyticsCore core = new CrashlyticsCore
                                  .Builder()
                                  .listener(listener)
                                  .build();

Fabric.with(this, new Crashlytics.Builder().core(core).build());

To test your integration, you can simply call Crashlytics.getInstance().crash(). Simple but handy.



来源:https://stackoverflow.com/questions/28319583/how-to-show-a-dialog-after-crash-by-using-crashlytics

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!