Reputation: 3044
I have created a game and published it on App Store and Google Play, now I want to advertise it on a couple of websites. But how can I track where people came from? In the past, when we sold things on our own websites, we could use "document.referrer" and save it to database, but nowadays it's impossible to inject my own html/js code to App Store and Google Play pages where my game resides. Or is it? How to do this on Google Play? On iTunes Store?
Upvotes: 5
Views: 7639
Reputation: 3147
First, other websites must add this tag to the URL referrer=the.reference.site
According to the Documentation:
When your app is downloaded from Google Play Store, the Play Store app broadcasts an
INSTALL_REFERRER
intent to your app during installation. This intent contains the value of the referrer parameter of the link used to reach your app's Google Play Store page, if one was present.
Then you should add a BroadcastReceiver
to handle this reference.
Check this guide for Campaign Measurement - Android SDK v4
Referrals for iOS are a bit harder to track, check this thread: on StackOverflow
Upvotes: 6