forked from kinecosystem/kin-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KinSDK.podspec
25 lines (22 loc) · 971 Bytes
/
KinSDK.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
Pod::Spec.new do |s|
s.name = 'KinSDK'
s.version = '1.0.2'
s.license = { :type => 'Kin Ecosystem SDK License', :file => 'LICENSE.md' }
s.author = { 'Kin Foundation' => '[email protected]' }
s.summary = 'Pod for the Kin SDK.'
s.homepage = 'https://github.com/kinecosystem/kin-sdk-ios'
s.documentation_url = 'https://kinecosystem.github.io/kin-website-docs/docs/quick-start/hi-kin-ios'
s.social_media_url = 'https://twitter.com/kin_foundation'
s.platform = :ios, '9.0'
s.swift_version = '5.0'
s.source = {
:git => 'https://github.com/kinecosystem/kin-sdk-ios.git',
:tag => s.version.to_s,
:submodules => true
}
s.source_files = ['KinSDK/KinSDK/**/*.swift',
'KinSDK/Dependencies/SHA256.swift',
'KinSDK/Dependencies/keychain-swift/KeychainSwift/*.swift']
s.dependency 'KinUtil', '0.1.0'
s.dependency 'Sodium', '0.8.0'
end