-
Notifications
You must be signed in to change notification settings - Fork 8
GDPR
Vladas Drejeris edited this page Jun 4, 2021
·
5 revisions
By default, Adform Advertising SDK will check CMP settings and use that information. More information about this here
It is possible to set GDPR and GDPR consent manually. You need to use setGdpr:
and setGDPRConsent:
methods. For Gdpr consent, you need to set a base64-encoded string.
Example:
Swift
AdformSDK.setGDPR(true)
let gdprConsent = "GgdprConsent".data(using: .utf8)?.base64EncodedString()
AdformSDK.setGDPRConsent(gdprConsent)
Objective-C
[AdformSDK setGDPR:@(true)];
NSString *encodedGDPRConsent = [[@"GgdprConsent" dataUsingEncoding:NSUTF8StringEncoding] base64EncodedStringWithOptions:0];
[AdformSDK setGDPRConsent:encodedGDPRConsent];
Basic integrations
- Integrating Inline Ad
- Integrating Full Screen Overlay Ad
- Integrating AdHesion Ad
- Integrating Interstitial Ad
- Video Ad Integration
- Debug mode
- Troubleshooting
Advanced integrations
- Advanced Inline Ad Integration
- Integrating Inline Ads in UITableView
- Advanced Full Screen Overlay Ad Integration
- Advanced Interstitial Ad Integration
- Instream Video Ads
Other
- Adding Custom Values
- Adding Keywords
- Adding Key Value Pairs
- Adding Search Words
- Location Tracking
- Security
- Ad Tags
- Header Bidding
- Changing ADX Domain
- Specifying banner loading behaviour
- Customizing in app browser
- GDPR
- US Privacy
- Localization
- In app deeplinks
Mediation adapters