I am new to Firebase analytics. I wanted to know if I can use :
I read the documentation, and it says
Some Params are suggested below for certain common Events, but you are not limited to these. You may supply extra Params for suggested Events or custom Params for Custom events.
However I have not found any examples out there implementing this. And it is not mentioned specifically if I can use a Custom Event with Suggested Parameter.
I am recommending event and parameter guide for Firebase analytics tracking to the App development team, so I do not have a complete access to test this out from the App.
Suggested Event with Custom Parameters.
Bundle bundle = new Bundle();
bundle.putString(FirebaseAnalytics.Param.ITEM_ID, id);
bundle.putString(FirebaseAnalytics.Param.ITEM_NAME, name);
bundle.putString(FirebaseAnalytics.Param.CONTENT_TYPE, "image");
bundle.putString("custom_parameter_key", "custom_parameter_value");
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT, bundle);
Custom Event with Suggested Parameters.
Bundle params = new Bundle();
params.putString(FirebaseAnalytics.Param.ITEM_ID, id);
params.putString("image_name", name);
params.putString("full_text", text);
mFirebaseAnalytics.logEvent("share_image", params);
If you guys could please shed some light on this.
--
You received this message because you are subscribed to the Google Groups "Firebase Google Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to firebase-tal...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/f797b7fe-9215-4cf9-888c-246f8c7e8eae%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to fireba...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/firebase-talk/f797b7fe-9215-4cf9-888c-246f8c7e8eae%40googlegroups.com.