-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoms-client-swift-sdk.podspec
More file actions
28 lines (25 loc) · 1.04 KB
/
Copy pathoms-client-swift-sdk.podspec
File metadata and controls
28 lines (25 loc) · 1.04 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
28
Pod::Spec.new do |s|
s.name = "oms-client-swift-sdk"
s.version = "0.1.0-alpha.2"
s.summary = "OMS Client Swift SDK."
s.description = <<-DESC
OMS Client Swift SDK provides email, OIDC ID-token, and OIDC redirect wallet authentication,
request signing, session persistence, transaction helpers, signature verification, token balance queries, and
base-unit formatting helpers for iOS and macOS apps.
DESC
s.homepage = "https://github.com/0xsequence/swift-sdk"
s.readme = "https://raw.githubusercontent.com/0xsequence/swift-sdk/#{s.version}/README.md"
s.authors = "0xSequence"
s.license = {
:type => "Proprietary",
:text => "Copyright 0xSequence. All rights reserved."
}
s.source = { :git => "https://github.com/0xsequence/swift-sdk.git", :tag => s.version.to_s }
s.ios.deployment_target = "15.0"
s.osx.deployment_target = "12.0"
s.swift_version = "6.0"
s.module_name = "OMS_SDK"
s.requires_arc = true
s.source_files = "Sources/Swift SDK/**/*.swift"
s.frameworks = "Foundation", "Security", "CryptoKit"
end