simplytics_firebase 2.0.0 copy "simplytics_firebase: ^2.0.0" to clipboard
simplytics_firebase: ^2.0.0 copied to clipboard

Implementation of Firebase Analytics and Crashlytics services for Simplytics.

Simplytics Firebase Analytics and Crashlytics #

Simplytics is a simple abstraction for analytics and crash reporting. This package adds implementation of Firebase Analytics and Crashlytics services to Simplytics.

Usage #

To start using Simplytics with Firebase, you need to initialize Firebase and configure Simplytics, specify which classes of analytics and error monitoring services to use:

await Firebase.initializeApp();

Simplytics.setup(
  analyticsService: SimplyticsFirebaseAnalyticsService(FirebaseAnalytics.instance),
  crashlogService: SimplyticsFirebaseCrashlogService(FirebaseCrashlytics.instance),
);

Firebase Debug #

Firebase Analytics #

To see analytics events in the Firebase Analytics DebugView, you need to run the following command:

adb shell setprop debug.firebase.analytics.app <PACKAGE_NAME>

See the Firebase Analytics documentation for more details.

Firebase Crashlytics #

To see the error reports that are sent to Firebase Crashlytics, you need to run the following command:

adb shell setprop log.tag.FirebaseCrashlytics DEBUG

...and to disable the output of these reports to the system log, you must run the following command:

adb shell setprop log.tag.FirebaseCrashlytics INFO
0
likes
130
pub points
2%
popularity

Publisher

verified publisheramazingsoftworks.com

Implementation of Firebase Analytics and Crashlytics services for Simplytics.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

firebase_analytics, firebase_crashlytics, flutter, simplytics

More

Packages that depend on simplytics_firebase