- GoogleExternalDependencyManager
- GoogleUserMessagingPlatform
- FirebaseCore
- FirebaseAnalytics
- FirebaseCrashlytics
After adding each adapter from the Release section, you need to add pass it to the AnalyticsManager in the Initialize method. Here is an example of how to add FirebaseAnalytics:
// DemoInitCall.cs
AnalyticsManager.SetDebugMode(true); // Optional, turn off in production
AnalyticsManager.SaveUserIdentifier(customUserId); // Optional
AnalyticsManager.Initialize(new List<IAnalytics> // Mandatory
{
new GameAnalyticsEvents(),
new FirebaseEvents(),
new AppMetricaEvents("KEY")
});
See DemoInitCall scene within Demo folder for more details.