noteUserInteraction static method
void
noteUserInteraction()
Tracks time since the last rendered frame (for the scroll-skip heuristic). Registered once; persistent frame callbacks fire on every produced frame, so when the UI is idle the stopwatch grows and when it's animating it stays near zero. Flags that a user tap just happened so the click frame the native SDK requests next is captured fresh rather than dropped by the scroll/animation skip. Called by CxInteractionTracker on tap.
Implementation
static void noteUserInteraction() {
_clickFramePending = true;
}