Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Privacy Regulation for App Analytics: Cookie Banner / Consent Management

Avatar

Level 1

Hi everyone,

as you are aware privacy regulation within the EU is getting getting more restrictive. (Europe’s top court says active consent is needed for tracking cookies – TechCrunch). For web Tracking a "Cookie Banner" has to be implemented giving customers a choice over cookie placement.

Now these question concerning App Tracking (and I hope there are some App Professionals among you )

Question 1: Is there a Identifier set via Adobe Analytics SDK placed on the user's device?

Question 2: Does regulation consider this (possible) identifier as a cookie?

Question 3: Are there CMP-Providers (CMP = Consent Management Plattform) that have an Integration for app tracking?

Thanks,

Stefan

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi Stefan,

See my reply as per your questions.

Question 1: Yes, The SDK generates a unique visitor ID when an app is installed. This app visitor ID is stored within persistent memory on the mobile device and is sent with every hit. The app visitor ID is removed only when the user uninstalls the app (app visitor IDs persist through upgrades).

Question 2: It is same as VID or any other ID on web, though no third party advertiser can use it to track/show ads on user device. However I would suggest to reachout to Adobe Client Care for confirmation.

Question 3: You can try using Adobe Mobile Services​ to show interstitials and track users opt in/out status. Starting with iOS SDK 4.8.5, privacy settings set via the setPrivacyStatus method affect activity from Analytics, Target, and Audience Manager.

Note:ADBMobile JSON config "privacyDefault" setting is  Default: optedin

Example:[ADBMobile setPrivacyStatus:ADBMobilePrivacyStatusOptIn];

ADBMobilePrivacyStatusOptIn - hits are sent immediately.

ADBMobilePrivacyStatusOptOut - hits are discarded.

ADBMobilePrivacyStatusUnknown - If offline tracking is enabled, hits are saved until the privacy status changes to opt-in (then hits are sent) or opt-out (then hits are discarded). If offline tracking is not enabled, hits are discarded until the privacy status changes to opt in.

Useful links:

Opt-Out and Privacy Settings

https://marketing-beta.adobe.com/resources/help/mobile/ios/sdk_methods.html

Thanks,

Asheesh

View solution in original post

2 Replies

Avatar

Correct answer by
Community Advisor

Hi Stefan,

See my reply as per your questions.

Question 1: Yes, The SDK generates a unique visitor ID when an app is installed. This app visitor ID is stored within persistent memory on the mobile device and is sent with every hit. The app visitor ID is removed only when the user uninstalls the app (app visitor IDs persist through upgrades).

Question 2: It is same as VID or any other ID on web, though no third party advertiser can use it to track/show ads on user device. However I would suggest to reachout to Adobe Client Care for confirmation.

Question 3: You can try using Adobe Mobile Services​ to show interstitials and track users opt in/out status. Starting with iOS SDK 4.8.5, privacy settings set via the setPrivacyStatus method affect activity from Analytics, Target, and Audience Manager.

Note:ADBMobile JSON config "privacyDefault" setting is  Default: optedin

Example:[ADBMobile setPrivacyStatus:ADBMobilePrivacyStatusOptIn];

ADBMobilePrivacyStatusOptIn - hits are sent immediately.

ADBMobilePrivacyStatusOptOut - hits are discarded.

ADBMobilePrivacyStatusUnknown - If offline tracking is enabled, hits are saved until the privacy status changes to opt-in (then hits are sent) or opt-out (then hits are discarded). If offline tracking is not enabled, hits are discarded until the privacy status changes to opt in.

Useful links:

Opt-Out and Privacy Settings

https://marketing-beta.adobe.com/resources/help/mobile/ios/sdk_methods.html

Thanks,

Asheesh

Avatar

Level 1

Thanks Asheesh,

this answer is very helpful!

Best,

Stefan