FLUTTER ECOSYSTEM

Stacked-Org/crashlytics

एक सेवा जो LogOutput के साथ आती है, जो सभी चेतावनियों को गैर-महत्वपूर्ण क्रैश रिपोर्ट के रूप में ट्रैक करती है और सभी त्रुटियों को महत्वपूर्ण क्रैश रिपोर्ट के रूप में ट्रैक करती है। इसमें Firebase Crashlytics सेवा का उपयोग किया जाता है।

crashlytics प्रोजेक्ट कवर
Stars
1
Forks
4
अंतिम पुश (UTC)
14 जुल॰ 2026
प्रोजेक्ट स्थिति
सक्रिय
Stacked GitHub avatar
GITHUB Organization

Stacked ↗

The Flutter Framework to build production applications

भाषाएँ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(),
        ]),
    );