Interface ICrashTransformer


public interface ICrashTransformer
Custom crash transformer. Used while handling crashes caught by AppMetrica. Crashes caught by AppMetrica will be passed to process(Throwable) and result will be reported. If null is returned, crash is not reported.
  • Method Summary

    Modifier and Type
    Method
    Description
    This method is called before crash sending.
  • Method Details

    • process

      @Nullable Throwable process(@NonNull Throwable crash)
      This method is called before crash sending. It allows user to transform Throwable that is processed.
      Parameters:
      crash - Caught Throwable
      Returns:
      Transformed Throwable