You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to have automatic tracking of the screens information that the user goes through. This already happens for Activity correctly as long as I build my Tracker with screenviewEvents(true). From what I can see this is leveraged by the ActivityLifecycleHandler that does the call to ScreenView.buildWithActivity(activity).
I wished to have the same behavior but for fragments, without any work from the "developer". I noticed we have the buildWithFragment method, but that is never called anywhere in the source code.
It would be great if it was possible to listen to Fragment changes in the current Activity and track it.
The text was updated successfully, but these errors were encountered:
Problem
I wanted to have automatic tracking of the screens information that the user goes through. This already happens for
Activity
correctly as long as I build myTracker
withscreenviewEvents(true)
. From what I can see this is leveraged by theActivityLifecycleHandler
that does the call toScreenView.buildWithActivity(activity)
.I wished to have the same behavior but for fragments, without any work from the "developer". I noticed we have the
buildWithFragment
method, but that is never called anywhere in the source code.It would be great if it was possible to listen to
Fragment
changes in the currentActivity
and track it.The text was updated successfully, but these errors were encountered: