FLUTTER ECOSYSTEM

Stacked-Org/crashlytics

一个与 LogOutput 配合使用的服务,该 LogOutput 会将所有警告记录为非致命崩溃报告,将所有错误记录为致命崩溃报告。此功能使用 Firebase Crashlytics 服务。

crashlytics 项目封面
Stars
1
Forks
4
最近推送(UTC)
2026年7月14日
项目状态
未归档
Stacked GitHub avatar
GITHUB Organization

Stacked ↗

The Flutter Framework to build production applications

South Africa官方网站 ↗
语言Dart

此仓库发布的插件

使用的依赖

依赖清单 8 项

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

Stacked Crashlytics Service

A service accompanied with a LogOutput that tracks all warnings as non-fatal crash reports and all errors as fatal crash reports. This makes use of the Firebase Crashlytics service.

How To use

  • In the pubspec.yaml file under dependencies add

     stacked_crashlytics: ^0.1.1
    
  • Register the service on to the locator

    • If you want to register the service
    @StackedApp(
        dependencies: [
            ...
            LazySingleton(classType: CrashlyticsService),
            ...
            ),
        ],
    )
    
    • If you are presolving into an async instance, you can use
    @StackedApp(
        dependencies: [
            ...
            Presolve(
            classType: CrashlyticsService,
            presolveUsing: CrashlyticsService.getInstance,
            ),
          ],
        )
    

    Note: Don't forget to run

    flutter pub run build_runner build --delete-conflicting-outputs

  • Add the log Output inside your logger under outputs inside multiple logger output like so

    Logger(
    ...
        output: MultipleLoggerOutput([
        ...
        CrashlyticsOutput(),
        ]),
    );