When I setup firebase-invite and send succesful request to my friends how can I track the total and converted invitations. I see it on a firebase video but couldn't find any technical info for that. As far as I see on firebase-analytics it is not automated firebase-analytics process.
Asked
Active
Viewed 507 times
1 Answers
0
Assuming that you have alredy created the dynamic links, Analytics tracking requires a tracking Id that you'll need to set using setGoogleAnalyticsTrackingId(String trackingId)
Just add your tracking ID to the builder and all the tracking events will be reported.
Make sure that you add dependency for Firebase Invites to your app-level build.gradle
file:
compile 'com.google.firebase:firebase-invites:9.0.2'

Tony Vincent
- 13,354
- 7
- 49
- 68
-
1We did that and while we can see invite events in Google Analytics, nothing is shown in the (new) Firebase Analytics. – Max Hille Aug 17 '16 at 10:13
-
Current documentation says "If this method is not called, we will use the tracking Id set on the default Google Analytics tracker", meaning the id is set either you call it or not. Nothing to do with enable it. – MiguelSlv May 03 '18 at 22:11