0

How to add new events on the existing app for Answers(Fabric) I did manage to add in the code part, but its not reflecting the Fabric dashboard.

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
Mina Makhtar
  • 517
  • 1
  • 7
  • 14

1 Answers1

0

if you want to throw a fatal exception then use this.

public static void throwFatalException(Throwable throwable) {
        if (Fabric.isInitialized()) {
            Crashlytics.logException(throwable);
        }
    }

call method

throwFatalException(new Throwable(" My Message " + e));

Note: FatalException will not appear in the Dashboard instantly. it will take some time.

VIISHRUT MAVANII
  • 11,410
  • 7
  • 34
  • 49