-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathSLPWallet.podspec
45 lines (33 loc) · 1.43 KB
/
SLPWallet.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Be sure to run `pod spec lint SLPWallet.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "SLPWallet"
s.version = "0.1.0"
s.summary = "SLP Wallet SDK for iOS"
s.description = "SLP Wallet SDK for iOS"
s.homepage = "https://github.com/Bitcoin-com/slp-wallet-sdk-ios"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "jbdtky" => "jb@bitcoin.com" }
s.swift_version = "4.0"
s.platform = :ios, "10.0"
# When using multiple platforms
# s.ios.deployment_target = "5.0"
# s.osx.deployment_target = "10.7"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/Bitcoin-com/slp-wallet-sdk-ios.git", :branch => "v#{s.version}" }
s.source_files = "SLPWallet/**/*.swift"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.dependency "RxSwift", "~> 4.0"
s.dependency "RxCocoa", "~> 4.0"
s.dependency "Moya/RxSwift", "~> 11.0"
s.dependency "KeychainAccess", "~> 3.1.2"
s.dependency "BitcoinKit", "~> 1.1.1"
end