Android SDK Installation Guide:
Add SDK to Your Project
Add the following to your build.gradle:
implementation("co.blitzz:cobrowse-sdk-android:1.0.0")
Initialize the SDK
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);
Replace "YOUR_LICENSE_KEY" with the license key from
Please register an account and generate your license key at https://{{Domain}}.blitzz.co/cobrowse/settings/installation.
This will associate sessions from your website with your Blitzz account.
Configuration Options
The CobrowseConfig.Builder() allows for additional customizations. Some typical fields include:
setLicense(String) – (Required) your organization’s license key.
setReference(String) – Optional identifier to help identify sessions in the dashboard.
Try it out
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!
Minimum Requirements
Minimum SDK: API version 21 (5 Lollipop) or later.