-
Notifications
You must be signed in to change notification settings - Fork 1
/
SpruceIDMobileSdk.podspec
26 lines (23 loc) · 1.05 KB
/
SpruceIDMobileSdk.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
Pod::Spec.new do |spec|
spec.name = "SpruceIDMobileSdk"
spec.version = "0.4.0"
spec.summary = "Swift Mobile SDK."
spec.description = <<-DESC
SpruceID Swift Mobile SDK.
DESC
spec.homepage = "https://github.com/spruceid/mobile-sdk-swift"
spec.license = { :type => "MIT & Apache License, Version 2.0", :text => <<-LICENSE
Refer to LICENSE-MIT and LICENSE-APACHE in the repository.
LICENSE
}
spec.author = { "Spruce Systems, Inc." => "[email protected]" }
spec.platform = :ios
spec.swift_version = '5.9'
spec.ios.deployment_target = '14.0'
spec.source = { :git => "https://github.com/spruceid/mobile-sdk-swift.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/MobileSdk/*.swift"
spec.static_framework = true
spec.dependency 'SpruceIDMobileSdkRs', "~> 0.4.1"
spec.dependency 'SwiftAlgorithms', "~> 1.0.0"
spec.frameworks = 'Foundation', 'CoreBluetooth', 'CryptoKit'
end