Privacy

The Contentsquare Cordova 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 Opt-in API must be called.

Use the Opt-in API to get user consent. Calling this API will generate a user ID and initiate tracking.

import { ContentsquareCDVPlugin } from '@contentsquare/cordova-plugin-types';
declare var ContentsquarePlugin: ContentsquareCDVPlugin;
ContentsquarePlugin.optIn((result)=>{
// Success
}, (err)=>{
// Handle error
});

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 { ContentsquareCDVPlugin } from '@contentsquare/cordova-plugin-types';
declare var ContentsquarePlugin: ContentsquareCDVPlugin;
ContentsquarePlugin.optOut((result)=>{
// Success
}, (err)=>{
// Handle error
});