Blitzz Help Center

Android SDK Installation Guide:

  1. Add SDK to Your Project

    1. Add the following to your build.gradle:   
      implementation("co.blitzz:cobrowse-sdk-android:1.0.0")

  2. Initialize the SDK

    1. Initialize the SDK in your app, typically inside onCreate() of your Application class or the main activity:
      import co.blitzz.cobrowse.BlitzzCobrowse;
      import co.blitzz.cobrowse.CobrowseConfig;

       CobrowseConfig cobrowseConfig =
           new CobrowseConfig.Builder()
                       .setLicense("YOUR_LICENSE_KEY")
              .build();
       BlitzzCobrowse.getInstance().initialize(cobrowseConfig);

    2. Replace "YOUR_LICENSE_KEY" with the license key from

      1. Please register an account and generate your license key at https://{{Domain}}.blitzz.co/cobrowse/settings/installation.

      2. This will associate sessions from your website with your Blitzz account.

  3. Configuration Options

    1. The CobrowseConfig.Builder() allows for additional customizations. Some typical fields include:

      1. setLicense(String) – (Required) your organization’s license key.

      2. setReference(String) – Optional identifier to help identify sessions in the dashboard.

  4. Try it out

    1. Once you have your app running in the Android emulator or on a physical device, navigate to https://{{Domain}}.blitzz.co/cobrowse/ to see your device listed. You can click the "Connect" button to initiate a Cobrowse session!

  5. Minimum Requirements

    1. Minimum SDK: API version 21 (5 Lollipop) or later.

Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.