-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathConsentViewController.podspec
27 lines (27 loc) · 1.07 KB
/
ConsentViewController.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
Pod::Spec.new do |s|
s.name = 'ConsentViewController'
s.version = '7.7.7'
s.summary = 'SourcePoint\'s ConsentViewController to handle privacy consents.'
s.homepage = 'https://www.sourcepoint.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'SourcePoint' => '[email protected]' }
s.source = { :git => 'https://github.com/SourcePointUSA/ios-cmp-app.git', :tag => s.version.to_s }
s.swift_version = '5.1'
s.source_files = 'ConsentViewController/Classes/**/*'
s.dependency 'SPMobileCore', '0.0.11'
s.ios.deployment_target = '10.0'
s.ios.exclude_files = 'ConsentViewController/Classes/Views/tvOS'
s.tvos.deployment_target = '12.0'
s.tvos.exclude_files = 'ConsentViewController/Classes/Views/iOS'
s.tvos.dependency 'Down', '~> 0.11.0'
s.resource_bundles = {
'ConsentViewController' => [
'ConsentViewController/Assets/**/*',
'Pod/Classes/**/*.{xcprivacy,storyboard,xib,xcassets,json,imageset,png,js}'
]
}
s.resources = "ConsentViewController/**/*.{js,json,png}"
s.info_plist = {
'SPEnv' => 'prod'
}
end