-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPodfile
39 lines (35 loc) · 873 Bytes
/
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
use_frameworks!
def app_pods
pod 'SwiftyDropbox'
pod 'hoedown'
pod 'YapDatabase'
pod 'GRMustache', :git => 'https://github.com/landakram/GRMustache.git'
pod 'RFKeyboardToolbar'
pod 'IDMPhotoBrowser'
pod 'STKWebKitViewController'
pod 'TUSafariActivity'
pod 'Marklight'
pod 'MRProgress'
pod 'ViewUtils'
pod 'AMScrollingNavbar'
pod 'Fabric'
pod 'Crashlytics'
pod 'FileKit', :git => 'https://github.com/landakram/FileKit.git', :branch => 'set-modification-date'
pod 'RxSwift', '~> 5.0'
pod 'RxSwiftExt', '~> 5.1'
pod 'RxCocoa', '~> 5.0'
pod 'SwiftMessages', '~> 5.0'
pod 'RxReachability'
end
target 'Kiwi' do
app_pods
end
target 'Kiwi Development' do
app_pods
end
target 'KiwiTests' do
pod 'Quick'
pod 'Nimble'
pod 'RxBlocking', '~> 5.0'
pod 'RxTest', '~> 5.0'
end