I have uploaded an app with firebase analytics, however, the SELECT_CONTENT events are not showing "Not set" as name, instead of the name i specified during development.
here's one of the events i set on code:
Bundle bundle = new Bundle();
bundle.putString(FirebaseAnalytics.Param.ITEM_ID, "4");
bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, "ClickedShareSocialMedia");
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT, bundle);
Any help?
View events in the dashboard You can access this data from the Events dashboard in the Firebase console. This dashboard shows the event reports that are automatically created for each distinct type of event logged by your app.
Enable debug mode by passing the -FIRDebugEnabled argument to the application. You can add this argument in the application's Xcode scheme. When debug mode is enabled via -FIRDebugEnabled, further executions of the application will also be in debug mode.
When a session starts, Google automatically collects a session_start event and generates a session ID ( ga_session_id ) and session number ( ga_session_number ) via the session_start event. Session ID identifies the session that an event came from.
You can report up to 500 different types of Events per app and you can associate up to 25 unique parameters with each Event type. Some common events are suggested below, but you may also choose to specify custom Event types that are associated with your specific app.
Looks like you forgot to set the FirebaseAnalytics.Param.CONTENT_TYPE parameter.
You get reporting on both the CONTENT_TYPE (i.e. category) and the ITEM_NAME. The "(not set)" you are seeing is in reference to the CONTENT_TYPE. Once you specify a CONTENT_TYPE, you'll be able to drill into each type of content to see the most important items in each category.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With