forked from wavesplatform/WavesWallet-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
78 lines (58 loc) · 1.78 KB
/
Podfile
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
# Ignore all warnings from all pods
inhibit_all_warnings!
use_frameworks!(true)
# Enable the stricter search paths and module map generation for all pods
# use_modular_headers!
# Pods for WavesWallet-iOS
target 'WavesWallet-iOS' do
inherit! :search_paths
# UI
pod 'RxCocoa'
pod 'RxDataSources'
pod 'TTTAttributedLabel'
pod 'UILabel+Copyable', '~> 1.0.0'
pod 'UITextView+Placeholder'
pod 'SwipeView'
pod 'MGSwipeTableCell'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'SVProgressHUD'
pod 'RDVTabBarController'
pod 'UPCarouselFlowLayout'
pod 'RESideMenu', :git => 'https://github.com/florianbuerger/RESideMenu.git'
pod 'Charts'
pod 'Koloda'
# Assisstant
pod 'RxSwift'
pod 'RxGesture'
pod 'IQKeyboardManagerSwift'
pod 'TPKeyboardAvoiding'
pod '25519', :git => '[email protected]:wavesplatform/25519.git'
pod 'base58', :path => 'Vendors/Base58'
pod 'keccak', :path => 'Vendors/Keccak'
pod 'blake2', :path => 'Vendors/Blake2'
pod 'KeychainAccess'
pod 'QRCode'
pod 'QRCodeReader.swift'
# DB
pod 'RealmSwift'
pod 'RxRealm'
# Network
pod 'RxAlamofire'
pod 'Moya/RxSwift'
# Parser
pod 'SwiftyJSON'
pod 'Gloss', '2.0.0-beta.1'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.name == 'Debug'
config.build_settings['OTHER_SWIFT_FLAGS'] = ['$(inherited)', '-Onone']
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-O'
config.build_settings['SWIFT_COMPILATION_MODE'] = 'wholemodule'
end
end
end
end