forked from wavesplatform/WavesWallet-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
114 lines (82 loc) · 2.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# 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 'UITextView+Placeholder'
pod 'SwipeView'
pod 'MGSwipeTableCell'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'SVProgressHUD'
pod 'UPCarouselFlowLayout'
pod 'InfiniteCollectionView', :git => 'git@github.com:wavesplatform/InfiniteCollectionView.git'
pod 'RESideMenu', :git => 'https://github.com/wavesplatform/RESideMenu.git'
pod 'Skeleton'
pod 'Charts'
pod 'Koloda'
pod 'IQKeyboardManagerSwift'
pod 'TPKeyboardAvoiding'
# Assisstant
pod 'RxSwift'
pod 'RxSwiftExt'
pod 'RxOptional'
pod 'RxGesture'
pod 'RxFeedback'
pod 'RxReachability'
# External Service
pod 'Firebase/Core'
pod 'Firebase/Database'
pod 'Firebase/Auth'
pod 'AppsFlyerFramework'
pod 'Fabric'
pod 'Crashlytics'
# Helperrs
pod 'IdentityImg', :git => 'git@github.com:wavesplatform/identity-img-swift.git'
pod '25519', :git => 'git@github.com:wavesplatform/25519.git'
pod 'base58', :path => 'Vendors/Base58'
pod 'keccak', :path => 'Vendors/Keccak'
pod 'blake2', :path => 'Vendors/Blake2'
pod 'CryptoSwift'
pod 'KeychainAccess'
pod 'QRCode'
pod 'QRCodeReader.swift'
pod 'SwiftDate'
pod 'DeviceKit', '~> 1.3'
# Cache
pod 'Kingfisher'
# DB
pod 'RealmSwift'
pod 'RxRealm'
# Network
pod 'RxAlamofire'
pod 'Moya/RxSwift'
# Parser
pod 'Gloss', '2.0.0-beta.1'
pod 'CSV.swift'
# Gen
pod 'SwiftGen', '~> 5.3.0'
# Debug
pod 'Reveal-SDK', :configurations => ['Debug']
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = "YES"
swift3_2pods = [
'InfiniteCollectionView'
]
if swift3_2pods.include? target.name
config.build_settings['SWIFT_VERSION'] = '3.2'
end
end
end
end