Module which collects and saves user's consent in accordance with the standard TCF2.0
The documentation can be found at:
https://developer.ringpublishing.com/Money/docs/GDPRConsentManager/index.html.
Integration tutorial:
How consents are stored:
Reference guide:
https://developer.ringpublishing.com/Money/docs/GDPRConsentManager/reference/gdpr-ios-sdk.html.
- iOS 11.0+
- Xcode 12+
- Swift 5.1+
RingPublishingGDPR
is available through CocoaPods. To install it, simply add the following lines to your Podfile using our private Cocoapods Specs repository. Please make sure you have access to this repository granted by us.
Additions to your Podfile:
source 'https://github.com/ringpublishing/RingPublishing-CocoaPods-Specs.git'
pod 'RingPublishingGDPR'
Using Swift Package Manager
To install it into a project, add it as a dependency within your project settings using Xcode:
Package URL: "https://github.com/ringpublishing/RingPublishingGDPR-iOS"
or if you are using manifest file, add it as a dependency there:
let Package = Package(
...
dependencies: [
.package(url: "https://github.com/ringpublishing/RingPublishingGDPR-iOS.git", .upToNextMinor(from: "1.8.0"))
],
...
)
Start by importing RingPublishingGDPR
:
import RingPublishingGDPR
then you have access to shared module instance:
RingPublishingGDPR.shared
For detailed example see demo project in Example
directory or check our documentation.