-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathDomainLayer.podspec
More file actions
38 lines (29 loc) · 940 Bytes
/
DomainLayer.podspec
File metadata and controls
38 lines (29 loc) · 940 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
31
32
33
34
35
36
37
38
Pod::Spec.new do |spec|
spec.name = 'DomainLayer'
spec.version = '0.1'
spec.ios.deployment_target = '11.0'
spec.requires_arc = true
spec.license = { :type => 'MIT' }
spec.homepage = 'https://wavesplatform.com'
spec.authors = { 'Mefilt' => 'Mefilt@gmail.com' }
spec.summary = 'DomainLayer'
spec.source_files = 'DomainLayer/**/**/*.{swift}'
spec.source = { :git => ''}
spec.ios.framework = 'Foundation'
spec.static_framework = true
# DB
spec.dependency 'RealmSwift'
spec.dependency 'RxRealm'
# Assisstant
spec.dependency 'RxSwift'
spec.dependency 'RxSwiftExt'
spec.dependency 'RxOptional'
spec.dependency 'RxReachability'
spec.dependency 'KeychainAccess'
spec.dependency 'CryptoSwift'
# Waves
spec.dependency 'WavesSDKExtensions'
spec.dependency 'WavesSDK'
spec.dependency 'WavesSDKCrypto'
spec.dependency 'Extensions'
end