Skip to content

Firebase Analytics

levching edited this page Apr 14, 2020 · 3 revisions

A free and unlimited analytics solution. Analytics integrates across Firebase features and provides you with unlimited reporting for up to 500 distinct events that you can define using the Firebase SDK. Analytics reports help you understand clearly how your users behave, which enables you to make informed decisions regarding app marketing and performance optimizations.

Note: Plugin also provides an ability to use Firebase Analytics directly.

Installation

Assuming you do not have yet Firebase Analytics plugin in your project, when you expand the Firebase settings you will be prompted to download and install the Firebase Analytics plugin.

Firebase Analytics

In case you sure that plugin is installed, but you till see the same UI, press the Refresh button. If that doesn't work as well, please contact us.

Once you will import the analytics plugin into your project, the Unified analytics module will be activated and ready to use, and you will also be able to modify some additional settings for the Firebase Analytics client.

Firebase Analytics2

Those setting can also be provided via the code if you prefer, see the snippet below:

using SA.CrossPlatform;
...

UM_Settings.Instance.Analytics.FirebaseClient.MinimumSessionDuration = 10;
UM_Settings.Instance.Analytics.FirebaseClient.SessionTimeoutDuration = 30;

You may also need to do additional configuration for Firebase analytic in your project. Check out the Official Firebase Documentation for details.

Clone this wiki locally