You can control whether tracking activity is allowed on a specific device:
Mobile Apps - The Media Extensions respects the privacy settings in Data Collection. To opt out of tracking, you need to set up privacy to Opted out in Tags or Update privacy status in Mobile SDK.
JavaScript/Browser Apps - The VA library respects the VisitorAPI
privacy and optout settings. To optout of tracking, you need to opt out from the Visitor API service. For further information on optout and privacy, see Adobe Experience Platform Identity Service.
OTT Apps (Chromecast, Roku) - The OTT SDKs provide General Data Protection Regulation (GDPR)-ready APIs that allow you to set opt
status flags for data collection and transmission, and to retrieve locally stored identities.
Media heartbeat tracking calls are also disabled if the privacy status is set to opt-out.
You can control whether or not Analytics data is sent on a specific device using the following settings:
The privacyDefault
setting in the ADBMobile.json
config file. This controls the initial setting and persists until it is changed in code.
The ADBMobile().setPrivacyStatus()
method.
Opt out:
Chromecast:
ADBMobile.config.setPrivacyStatus(ADBMobile.config.PRIVACY_STATUS_OPT_OUT)
Roku:
ADBMobile().setPrivacyStatus(ADBMobile().PRIVACY_STATUS_OPT_OUT)
When a user opts out of tracking, all of the persisted device data and IDs will be purged until the user opts back in.
Opt back in:
Chromecast:
ADBMobile.config.setPrivacyStatus(ADBMobile.config.PRIVACY_STATUS_OPT_IN)
Roku:
ADBMobile().setPrivacyStatus(ADBMobile().PRIVACY_STATUS_OPT_IN)
Return the current setting:
Chromecast:
ADBMobile.config.getPrivacyStatus()
Roku:
ADBMobile().getPrivacyStatus()
After the privacy setting is changed using setPrivacyStatus
, the change is permanent until it is changed again using this method, or the app is uninstalled and reinstalled.
This information helps you retrieve locally stored user identities from your Roku app.
The method for retrieving all identifiers gets all user identities known and persisted by the SDK. You must call this method before a user opts-out.
The locally stored identities are returned in a JSON string, which might contain:
For example:
Chromecast:
ADBMobile.config.getAllIdentifiersAsync(callback)
Roku:
vids = ADBMobile().getAllIdentifiers()