Patapata - Firebase Crashlytics
Add support for Firebase Crashlytics to your Patapata app.
About
This package is a plugin for Patapata that adds support for Firebase Crashlytics to your Patapata app. It will automatically report errors and logs to Firebase Crashlytics from Patapata's Log and Error systems.
This plugin requires the patapata_firebase_core plugin to be installed and activated.
Getting started
- Add the dependency to your
pubspec.yaml
file
flutter pub add patapata_firebase_crashlytics
- Import the package
import 'package:patapata_firebase_crashlytics/patapata_firebase_crashlytics.dart';
- Activate the plugin
void main() {
App(
environment: const Environment(),
plugins: [
FirebaseCorePlugin(),
FirebaseCrashlyticsPlugin(),
],
)
.run();
}
Contributing
Check out the CONTRIBUTING guide to get started.