Currently we're using Firebase in our iOS app.
I'm curious wether it is possible (and valid) to disable automatic reporting (using FirebaseScreenReportingEnable
) and to call Analytics.logEvent
(with the required params) manually.
Something in the lines of
Analytics.logEvent("screen_view", parameters: [
"firebase_event_origin": "auto",
"firebase_previous_class": "PrevClass",
"firebase_previous_id": "1",
"firebase_previous_screen": "PrevScreen",
"firebase_screen": "NewScreen",
"firebase_screen_class": "NewClass",
"firebase_screen_id": "2",
])