v37, Firebase Analytics, & Recommended Events

  1. SDK Version: 37
  2. Platforms(Android/iOS/web/all): iOS & Android

Just upgraded to v37 and implemented basics expo-firebase-analytics to make sure everything was getting reported correctly. Events view in Firebase shows activity and provides recommended events I should be tracking based on my app type. In doing so, it provides examples for implementation with Java, Kotin, Objective-C, Swift, Unity, & C++. Each of those has built-in properties for events like login, signup, etc. (see example below). I can’t find these in expo-firebase-analytics. Do they exist or should I just hardcode the event names to their suggestions? Was hoping their built-in props provided some “extras”, but maybe not…

Java Example:

Bundle bundle = new Bundle();
bundle.putString(FirebaseAnalytics.Param.METHOD, method);
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.LOGIN, bundle);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.