-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPodfile
42 lines (34 loc) · 796 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
40
41
42
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
install! 'cocoapods', :disable_input_output_paths => true
target 'LightCloud' do
use_frameworks!
pod 'ExtensionX', :path => './Pods/ExtensionX'
pod 'CleanJSON'
pod 'LeanCloud'
pod 'RxSwift'
pod 'RxCocoa'
pod 'RxDataSources'
pod 'RxGesture'
pod 'RxSwiftExt'
pod 'RxNetwork'
pod 'RxSwiftX'
pod 'RxSwiftX/DataSources'
pod 'SnapKit'
pod 'EasyRefresher'
pod 'Toast-Swift'
pod 'IQKeyboardManagerSwift'
pod 'FSPagerView'
pod 'Kingfisher'
pod 'CocoaChainKit'
pod 'EachNavigationBar', '1.15.0'
pod 'netfox'
target 'LightCloudTests' do
inherit! :search_paths
# Pods for testing
end
target 'LightCloudUITests' do
inherit! :search_paths
# Pods for testing
end
end