Skip to content

Release v19.7.0

Choose a tag to compare

@cross-circleci-access cross-circleci-access released this 24 May 14:48
· 104 commits to master since this release
e6117cb

Added

  • WebView Support: New APIs to monitor WebViews in your app, including page navigations, user interactions, and network requests issued from inside the WebView. Screenshots and session replays now capture WebView content alongside the rest of the UI.
    Enable WebView monitoring after Luciq.init:
    // Enable WebView monitoring (required for the APIs below).
    Luciq.setWebViewMonitoringEnabled(true);
    // Track taps and other user interactions inside WebViews.
    Luciq.setWebViewUserInteractionsTrackingEnabled(true);
    // Log network requests issued from WebViews.
    Luciq.setWebViewNetworkTrackingEnabled(true);
    All three APIs default to disabled. setWebViewMonitoringEnabled must be on for the user-interactions and network-tracking APIs to take effect.

Changed