How to track firebase invitations to firebase-analytics?

When I set up a firebase to invite and send a successful request to my friends, how can I track the resulting and converted invitations. I see this on video in firebase, but could not find any technical information for this. As far as I can see in firebase analytics analytics, this is not an automated firebase-analytics processing process.

+8
firebase-analytics firebase-invites
source share
1 answer

Assuming you have alredy created dynamic links, Google Analytics tracking requires a tracking identifier that you need to set using setGoogleAnalyticsTrackingId(String trackingId) Just add your tracking identifier to the constructor and all tracking events will be sent.
Make sure that you add the dependency for Firebase Invites to the build.gradle file at the application level:

 compile 'com.google.firebase:firebase-invites:9.0.2' 
0
source share

All Articles