-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOmiseGO.podspec
More file actions
30 lines (25 loc) · 891 Bytes
/
OmiseGO.podspec
File metadata and controls
30 lines (25 loc) · 891 Bytes
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
Pod::Spec.new do |s|
s.name = 'OmiseGO'
s.version = '1.1.2'
s.license = 'Apache'
s.summary = 'The OmiseGO iOS SDK allows developers to easily interact with a node of the OmiseGO eWallet.'
s.homepage = 'https://github.com/omisego/ios-sdk'
s.social_media_url = 'https://twitter.com/omise_go'
s.authors = { 'OmiseGO team' => 'omg@omise.co' }
s.source = { :git => 'https://github.com/omisego/ios-sdk.git', :tag => s.version }
s.platform = :ios, '10.0'
s.swift_version = '4.2'
s.subspec 'Core' do |ss|
ss.source_files = "Source/Core/**/*.swift"
ss.dependency 'Starscream', '~> 3.0'
ss.dependency 'BigInt', '~> 3.1'
end
s.subspec 'Client' do |ss|
ss.source_files = "Source/Client/**/*.swift"
ss.dependency 'OmiseGO/Core'
end
s.subspec 'Admin' do |ss|
ss.source_files = "Source/Admin/**/*.swift"
ss.dependency 'OmiseGO/Core'
end
end