-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
35 lines (30 loc) · 814 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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
use_frameworks!
def shared_pods
pod 'Alamofire'
pod 'PromiseKit/Alamofire'
pod 'SnapKit', '~> 4.0.0', :inhibit_warnings => true
pod 'SDWebImage', '~> 4.0'
pod 'Reusable'
pod 'FontAwesome.swift'
end
target 'EshopHacker' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
# Pods for EshopHacker
shared_pods
pod 'Tabman', '~> 2.1'
pod 'MJRefresh', :inhibit_warnings => true
pod 'UIWindowTransitions'
pod 'Toast-Swift', '~> 4.0.0'
pod 'WechatOpenSDK'
pod 'SwiftLint'
pod 'NVActivityIndicatorView', '~> 4.6.0'
target 'EshopHackerTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'TodayExtension' do
shared_pods
end