-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPodfile
69 lines (57 loc) · 1.18 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
platform :ios, '10.3'
install! 'cocoapods',
:generate_multiple_pod_projects => true,
:incremental_installation => true,
:deduplicate_targets => true
def test_pods
pod 'Quick'
pod 'Nimble'
end
target 'ios-template-project' do
use_frameworks!
inhibit_all_warnings!
#ReactiveX
pod 'RxCocoa'
pod 'RxViewController'
pod 'RxDataSources'
pod 'RxSwiftExt'
pod 'NSObject+Rx'
# Networking
pod 'Alamofire'
pod 'Moya/RxSwift'
pod 'ReachabilitySwift'
pod 'SDWebImage'
# UI
pod 'UITextView+Placeholder'
pod 'MJRefresh'
pod 'RxMJ'
pod 'MBProgressHUD'
pod 'FSPagerView'
pod 'DZNEmptyDataSet'
pod 'Localize-Swift'
# Storage
pod 'KeychainAccess'
pod 'Cache'
# Logging
pod 'CocoaLumberjack/Swift'
# utils
pod 'IQKeyboardManagerSwift'
pod 'SnapKit'
pod 'Device'
pod 'UIFontComplete'
pod 'SwifterSwift'
pod 'R.swift'
pod 'SwiftLint'
pod 'Bugly'
# Pods for ios-template-project
target 'ios-template-projectTests' do
inherit! :search_paths
# Pods for testing
test_pods
end
target 'ios-template-projectUITests' do
inherit! :search_paths
# Pods for testing
test_pods
end
end