forked from SourcePointUSA/ios-cmp-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsentViewController.podspec
20 lines (20 loc) · 1.02 KB
/
ConsentViewController.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'ConsentViewController'
s.version = '6.3.0'
s.summary = 'SourcePoint\'s ConsentViewController to handle privacy consents.'
s.homepage = 'https://www.sourcepoint.com'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'SourcePoint' => 'contact@sourcepoint.com' }
s.source = { :git => 'https://github.com/SourcePointUSA/ios-cmp-app.git', :tag => s.version.to_s }
s.swift_version = '5.0'
s.source_files = 'ConsentViewController/Classes/**/*'
s.ios.deployment_target = '10.0'
s.ios.exclude_files = 'ConsentViewController/Classes/Views/tvOS'
s.tvos.deployment_target = '10.0'
s.tvos.exclude_files = 'ConsentViewController/Classes/Views/iOS'
s.resource_bundles = { 'ConsentViewController' => ['ConsentViewController/Assets/**/*', 'Pod/Classes/**/*.{storyboard,xib,xcassets,json,imageset,png,js}'] }
s.resources = "ConsentViewController/**/*.{js,json,png}"
s.info_plist = {
'SPEnv' => 'prod'
}
end