-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathVouched.podspec
More file actions
27 lines (24 loc) · 1.05 KB
/
Vouched.podspec
File metadata and controls
27 lines (24 loc) · 1.05 KB
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 = 'Vouched'
s.version = '1.11.0'
s.summary = 'Making Verifications Fast and Simple.'
s.swift_version = '5.0'
s.description = <<-DESC
The Vouched Library allows for fast and simple verifications using an ID and Selfie.
DESC
s.homepage = 'https://github.com/vouched/vouched-ios'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.authors = { "Vouched" => "support@vouched.id" }
s.source = { :http => "https://github.com/vouched/vouched-ios/releases/download/v#{s.version}/VouchedMobileSDK.zip" }
s.platform = :ios
s.ios.deployment_target = '16.0'
s.default_subspec = 'Core'
s.subspec 'Core' do |cr|
cr.dependency 'TensorFlowLiteSwift', '2.17.0'
cr.ios.vendored_frameworks = 'VouchedMobileSDK/VouchedCore.xcframework'
end
s.subspec 'Barcode' do |bc|
bc.dependency 'Vouched/Core'
bc.ios.vendored_frameworks = 'VouchedMobileSDK/VouchedBarcode.xcframework'
end
end