-
Notifications
You must be signed in to change notification settings - Fork 7
/
VGSShowSDK.podspec
23 lines (21 loc) · 1.17 KB
/
VGSShowSDK.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "VGSShowSDK"
spec.version = "1.2.1"
spec.summary = "VGS Show - is a product suite that allows customers to reveal and show information securely without possession of it."
spec.swift_version = '5.0'
spec.description = <<-DESC
VGS Show iOS SDK allows you to securely reveal data from VGS and display it via forms without having to have that data pass through your systems.
DESC
spec.homepage = "https://github.com/verygoodsecurity/vgs-show-ios"
spec.license = { type: 'MIT', file: 'LICENSE' }
spec.author = { "Very Good Security" => "[email protected]" }
spec.platform = :ios, "13.0"
spec.ios.deployment_target = "13.0"
spec.source = { :git => "https://github.com/verygoodsecurity/vgs-show-ios.git", :tag => "#{spec.version}" }
spec.requires_arc = true
spec.default_subspec = 'Core'
spec.subspec 'Core' do |core|
#set as default podspec to prevent from downloading additional modules
core.source_files = "Sources/VGSShowSDK", "Sources/VGSShowSDK/**/*.{swift}", "Sources/VGSShowSDK/**/*.{h, m}", "Sources/VGSShowSDK/PrivacyInfo.xcprivacy"
end
end