Home > Net >  Tracking of directing user to Google Play Store
Tracking of directing user to Google Play Store

Time:03-20

I've built a app that directs users to other apps on the play store. Im looking to be able to see which users I directed to this other app. Im using android studio

CodePudding user response:

If you just want to know which or how many users went from your app to the play store, you can achieve this by event tracking for example via (Firebase Analytics). But as soon as your users have left your app, there is no way of tracking what they once left. For example, if there is a list of apps in your app, each linking to their corresponding play store entry, you can track clicks on the different links inside of your app. But as soon as the user clicked on that link and went to the play store, you can't track what he is doing there or if he is downloading the app (as long as you are not the developer of the app the user then downloads)

  • Related