How to correctly use and track App-invites?

后端 未结 2 1976
夕颜
夕颜 2021-02-12 13:20

Background

Google allows to perform app-invites and also track how well they improve your app installations:

https://www.youtube.com/watch?v=UfdCNYXMC9M

<
2条回答
  •  你的背包
    2021-02-12 13:32

    Answers:

    1. The Firebase Dynamic Links on Android documentation explains how to view the analytics data shown directly in the Firebase console. The critical step is to follow the Firebase setup instructions, most importantly:

    // ADD THIS AT THE BOTTOM

    apply plugin: 'com.google.gms.google-services'

    The Firebase analytics integration has been streamlined from the legacy integration that required a tracking Id. Now with Firebase only setup and a call to getInvitation() are needed. No additional code or tracking ids required. Remember it takes up to 24 hours to see the results in the console. However, you can see the messages being sent immediately which is a great indication that it's working. Just enable verbose logging as described in Analytics Log Events documentation.

    1. The Firebase and android developer documentation for appinvites are identical.

    2. Yes, you must call getInvitation() to get analytics tracking, and do the setup as described above.

    3. The iOS and Android equivalence apps should be in the same project. Just move them to a single project in the Firebase console. You can just remove one from it's existing project and add it to the other to make a combined project. The change should be reflected instantly.

提交回复
热议问题