Release v19.7.0
·
104 commits
to master
since this release
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 afterLuciq.init:All three APIs default to disabled.// 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);
setWebViewMonitoringEnabledmust be on for the user-interactions and network-tracking APIs to take effect.
Changed
- Bump Luciq iOS SDK to v19.7.0 (#57). See release notes.
- Bump Luciq Android SDK to v19.7.0 (#57). See release notes.