This repository has been archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ConsentStringSDKSwift.podspec
31 lines (24 loc) · 1.89 KB
/
ConsentStringSDKSwift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
spec.name = "ConsentStringSDKSwift"
spec.version = "1.0.2"
spec.summary = "Encode and decode web-safe base64 consent information with the IAB EU's GDPR Transparency and Consent Framework."
spec.description = <<-DESC
This library is a Swift reference implementation for dealing with consent strings in the IAB EU's GDPR Transparency and Consent Framework.
It should be used by anyone who receives or sends consent information like vendors that receive consent data from a partner, or consent management platforms that need to encode/decode the global cookie.
The IAB specification for the consent string format is available on the [IAB Github](https://github.com/InteractiveAdvertisingBureau/GDPR-Transparency-and-Consent-Framework/blob/master/Consent-string-and-vendor-list-formats-v1.1-Final.md) (section "Vendor Consent Cookie Format").
This library fully supports the version v1.1 of the specification. It can encode and decode consent strings with version bit 1.
DESC
spec.homepage = "https://github.com/InteractiveAdvertisingBureau/GDPR-Transparency-and-Consent-Framework"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Alexander Edge" => "[email protected]" }
spec.platform = :ios, "10.0"
spec.source = { :git => "https://github.com/guardian/Consent-String-SDK-Swift.git", :tag => "#{spec.version}" }
spec.source_files = "Consent String SDK Swift"
spec.swift_version = '5.0'
end