forked from CybexDex/cybex-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
137 lines (120 loc) · 2.52 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
platform :ios, '9.0'
def network
# pod 'Starscream'
pod 'SocketRocket', :git => 'https://github.com/facebook/SocketRocket', :branch => 'master'
pod 'JSONRPCKit'
pod 'Moya'
pod 'Kingfisher'
pod 'RealReachability'
pod 'Apollo'
pod 'AlamofireNetworkActivityLogger'
end
def data
pod 'ObjectMapper'
pod 'HandyJSON'
pod 'SwiftyJSON'
pod 'BigInt'
pod 'GRDB.swift'
pod 'CryptoSwift'
pod 'RxGRDB'
pod 'SwiftyUserDefaults'
pod 'Zephyr'
pod 'Cache'
pod 'Locksmith'
pod 'Then'
pod 'FCUUID'
pod 'IQKeyboardManagerSwift'
pod 'Guitar'
end
def resource
pod 'R.swift'
end
def architecture
pod 'ReSwift'
pod 'RxSwift'
pod 'ObservableArray-RxSwift'
pod 'RxSwiftExt'
pod 'RxDataSources'
pod 'RxKeyboard'
pod 'RxValidator'
pod 'Action'
pod 'Lightning'
pod 'Localize-Swift'
pod 'SwiftTheme'
pod 'UIFontComplete'
pod 'RxCocoa'
pod 'AwaitKit'
pod 'AsyncOperation'
end
def permission
pod 'Proposer'
pod 'BiometricAuthentication'
end
def animation
pod 'EasyAnimation'
# pod 'Hero'
pod 'ChainableAnimations'
pod 'TableFlip'
end
def extension
pod 'KeychainAccess'
pod 'SwifterSwift'
pod 'Repeat'
end
def ui
pod 'TinyConstraints'
pod 'ESTabBarController-swift'
pod 'KMNavigationBarTransition'
pod 'NVActivityIndicatorView'
pod 'BeareadToast', :git => 'https://github.com/phpmaple/BeareadToast'
pod 'DNSPageView'
pod 'MJRefresh'
pod 'TextFieldEffects'
pod 'IHKeyboardAvoiding'
pod 'Typist'
pod 'RxGesture'
pod 'SwiftRichString', :git => 'https://github.com/malcommac/SwiftRichString', :tag => '2.0.1'
pod 'ZLaunchAd'
pod 'SDCAlertView'
pod 'Presentr'
pod 'Macaw'
pod 'SwiftEntryKit'
pod 'Keyboard+LayoutGuide'
pod 'XLPagerTabStrip'
pod 'EFQRCode'
pod 'GrowingTextView'
pod 'XLActionController'
pod 'ESPullToRefresh'
end
def other
pod 'Siren'
pod 'LifetimeTracker'
pod 'MLeaksFinder'
pod 'Device'
end
def fabric
pod 'Fabric'
pod 'Crashlytics'
end
def debug
pod 'SwiftyBeaver'
# pod 'AppSpectorSDK'
# pod 'WoodPeckeriOS', '>= 1.0.3', :configurations => ['Debug']
end
target 'cybexMobile' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
pod 'Reveal-SDK', :configurations => ['Debug']
fabric
network
animation
data
resource
architecture
permission
extension
ui
other
debug
end