使用 trackAppOpenedInBackground - Android ParsePlatform

Use of trackAppOpenedInBackground - Android ParsePlatform

根据 official documentation:

Tracks this application being launched (and if this happened as the result of the user opening a push notification, this method sends along information to correlate this open with that push).

但我不明白它到底“追踪”了什么,如果我们不使用它会有什么后果。

TL;DR:
ParseAnalytics.trackAppOpenedInBackground的用法是什么?
如果我们不在应用程序中使用它会有什么后果?

非常感谢!

默认情况下,应用程序从 MainActivty 启动,特别是从 onCreate() 函数启动,从头开始或从任何推送通知打开。但是要在应用程序中打开特定的 activity,您可以使用 Firebase Dynamic Link 或其他一些服务,ParseAnalytics.trackAppOpenedInBackground 所做的是分析用户如何启动应用程序,无论是通过推送通知还是从头开始或从任何其他方法开始,并将报告应用程序的管理员,以便您可以使用这些信息来制定业务策略。

简单来说,就是跟踪用户启动应用程序的方式,收集这些信息并发送给应用程序开发者。