Reputation: 41685
Let's take Quora as an example.
People search stuff in Google, and hit Quora link and read the article.
There's a banner that lets you install Quora app.
I'd like to know How many installs are achieved like the above (google-search => Quora web => Quora app install) (Suppose Quora is my site, I wish!)
I guess it'd be also beneficial if I could somehow recognize the utm/etc associated with the link that directed the user to my website in the first place.
Is there a tool for this stuff? Or should I implement it myself modifying my website source?
Upvotes: 1
Views: 466
Reputation: 3800
To start with, Google Analytics for Firebase can't directly track app installs, but you can refer to the the first_open event which will be logged or triggered when a user launches the for the first time after installing or uninstalling it.
GA4F can automatically tracks conversions from its partner Ad Networks. See the list here.
What you'll need to do is to mark the events (as conversion in the console) that you'd like to track. Then, in the Conversion console (previously Attribution), go to network settings and add the Ad Network. Use the generated link as your campaign URL.
So, if the user clicks on the campaign and it generates or logs the event(s) that you'd like to track, GA4F should record the conversions for it. To see the metrics, go to console > Conversions > Conversion Events > select the event.
On the other hand, what if the Ad Network is not a partner? Or, if you'd like to use a custom campaign? GA4F can still track conversions, but you'll need to use UTM parameters.
Note: make sure that the Analytics SDK is properly integrated. Use the DebugView console to double check that your implementation is working fine.
For more information, see the following helpful links:
Firebase Help - Attribution
Firebase Blog - Understanding Attribution in Google Analytics for Firebase
Upvotes: 2