Privacy

The Contentsquare Capacitor Plugin and SDKs are compliant with the Play Store and App Store Privacy guidelines as well as with the EU General Data Protection Regulation (GDPR).

Consult our Privacy Center and Privacy Policy.

Even though Contentsquare only collects usage data on your app, we will consider every new user to be opted-out. To start tracking, the optIn() API must be called.

Use the optIn() API to get user consent. Calling this API will generate a user ID and initiate tracking.

import { ContentsquarePlugin } from '@contentsquare/capacitor-plugin';
ContentsquarePlugin.optIn();

Permanently breaking the link and stopping all data collection.

When this API is called, tracking stops immediately, all settings are reset (session number, page number, user ID…) and all files related to Contentsquare tracking are deleted. Contentsquare will never track and collect any data from the user’s phone unless the Opt-in API is called again.

import { ContentsquarePlugin } from '@contentsquare/capacitor-plugin';
ContentsquarePlugin.optOut();