forked from CYBAVO/specs_512
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCYBAVOWallet_snapshot.podspec
32 lines (30 loc) · 1.49 KB
/
CYBAVOWallet_snapshot.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
Pod::Spec.new do |s|
s.name = "CYBAVOWallet"
s.version = "LIB_VERSION"
s.summary = "CYBABO Wallet APP SDK for iOS."
s.description = <<-DESC
Use CYBAVO Wallet App SDK to easily develop secure wallets for your users without having to code any cryptography on your side. Our SDK allows you to perform the most common operations, such as creating a wallet, querying balances and executing cryptocurrency payments.
DESC
s.homepage = "https://www.cybavo.com/wallet-app-sdk/"
s.license = { :type => "Apache License, Version 2.0", :file => "LICENSE" }
s.author = { "CYBAVO" => "[email protected]" }
s.platform = :ios, "11.0"
s.source = { :git => "ssh://[email protected]/cybavo/ios_sdk_snapshot.git", :tag => "hw_LIB_VERSION" }
s.source_files = "**/*.{h}"
s.exclude_files = "Classes/Exclude"
s.swift_version = '4.2.1'
s.ios.vendored_frameworks = 'CYBAVOWallet.framework'
s.resources = ['CYBAVOWallet.framework/WalletSDK.plist', 'CYBAVOWallet.framework/*.nib']
s.dependency 'ObjectMapper', '~> 3.5.1'
s.dependency 'AlamofireObjectMapper', '~> 5.2.1'
s.dependency 'Alamofire', '~> 4.9.0'
s.dependency 'CryptoSwift', '~> 1.3.8'
s.dependency 'SwiftyUserDefaults', '4.0.0'
s.dependency 'SwiftOTP', '2.0.0'
s.dependency 'Web3'
s.dependency 'Web3/ContractABI'
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end