Firebase custom event, with parameters item_id
and item_name
not showing correctly in console.
I can see the firebase custom even, have tried the 'edit parameter reporting' button on the events firebase console, and setup reporting for item_id
and item_name
, but the string values I bundle with these keys does not show.
Am I missing any required parameters for custom events? I could not find any documentation requiring any.
val firebase = FirebaseAnalytics.getInstance(this)
val bundle = Bundle()
bundle.putString(FirebaseAnalytics.Param.ITEM_ID, "email_feedback")
bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, "yes")
firebase.logEvent("app_review_request", bundle)
I expect to see something in the console. However I see this