跟踪引导用户访问 Google Play 商店
我构建了一个应用程序,可将用户引导至 Play 商店中的其他应用程序。我希望能够看到我将哪些用户定向到了另一个应用程序。我正在使用 android studio
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想知道哪些用户或有多少用户从您的应用程序访问了 Play 商店,您可以通过事件跟踪来实现此目的,例如通过 (Firebase Analytics)。但是,一旦用户离开您的应用程序,就无法跟踪他们曾经离开的内容。例如,如果您的应用程序中有一个应用程序列表,每个应用程序都链接到相应的 Play 商店条目,您可以跟踪应用程序内部不同链接的点击次数。但是,一旦用户点击该链接并进入 Play 商店,您就无法跟踪他在那里做什么,或者他是否正在下载该应用程序(只要您不是用户下载的应用程序的开发者) )
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)