microsoft / clarity

A behavioral analytics library that uses dom mutations and user interactions to generate aggregated insights.
https://clarity.microsoft.com
MIT License
2.09k stars 208 forks source link

Unable to see some of view in recording on dashboard. #572

Open axitasavani opened 5 months ago

axitasavani commented 5 months ago

Android SDK: 33 Integration :

  1. build. gradle file implementation 'com.microsoft.clarity:clarity:2.2.0'
  2. Application File
private void initMicrosoftClarity() {

        ClarityConfig config = new ClarityConfig(
                "lq5a8lt***",
                null, // Default user id
                LogLevel.Verbose,
                false, // Disallow metered network usage
                true, // Enable web view capturing
                Collections.singletonList("*"), // Allowed domains
                ApplicationFramework.Native,
                Collections.emptyList(), // Allowed activities
                Collections.emptyList(), // Disallowed activities (ignore activities)
                false, // Disable on low-end devices
                null // Maximum allowed daily network usage in MB (null = unlimited)
        );

        Clarity.initialize(getApplicationContext(), config);
    }

Issue :

Actual Mobile SS: image

Actual Mobile SS: image

Actual Mobile SS: image

axitasavani commented 4 months ago

Hi, Any update on this?