forked from horizontalsystems/hd-wallet-kit-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHdWalletKit-Universal.swift.podspec
29 lines (22 loc) · 1.16 KB
/
HdWalletKit-Universal.swift.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
27
28
29
Pod::Spec.new do |s|
s.name = 'HdWalletKit-Universal.swift'
s.module_name = 'HdWalletKit'
s.version = '1.5.2'
s.summary = 'HD Wallet library for Swift. Supports iOS & OSX'
s.description = <<-DESC
HD Wallet library that makes possible generating and validating mnemonic phrases. Also it can generates public / private keys for HD keychain.
DESC
s.homepage = 'https://github.com/cuhte3/hd-wallet-kit-universal'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Horizontal Systems' => '[email protected]', 'cuhte3' => '[email protected]' }
s.source = { git: 'https://github.com/cuhte3/hd-wallet-kit-universal.git', tag: "#{s.version}" }
s.social_media_url = 'http://horizontalsystems.io/'
s.osx.deployment_target = '10.14'
s.ios.deployment_target = '11.0'
s.swift_version = '5'
s.source_files = 'HdWalletKit/Classes/**/*'
s.requires_arc = true
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
s.dependency 'OpenSslKit-Universal.swift', '~> 1.2.2'
s.dependency 'Secp256k1Kit-Universal.swift', '~> 1.1'
end