forked from qlcchain/QWallet-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
76 lines (61 loc) · 1.26 KB
/
Podfile
File metadata and controls
76 lines (61 loc) · 1.26 KB
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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
# shadowsock-----pod
def model
pod 'RealmSwift'
end
def socket
pod 'CocoaAsyncSocket', '~> 7.4.3'
end
def library
pod 'KissXML', '~> 5.2.2'
#pod 'ICSMainFramework', :path => "./Library/ICSMainFramework/"
pod 'MMWormhole', '~> 2.0.0'
pod 'KeychainAccess'
end
def tunnel
pod 'MMWormhole', '~> 2.0.0'
end
target "Qlink" do
pod 'AFNetworking'
pod 'IQKeyboardManager'
pod 'Masonry'
pod 'MJExtension'
pod 'MBProgressHUD'
pod 'SDWebImage'
# pod 'MJRefresh'
pod 'Hero'
# pod 'FMDB'
pod 'BGFMDB'
pod 'CocoaLumberjack/Swift'
pod 'Bugly'
pod 'OLImageView'
pod 'Firebase/Core', '~> 5.4.1'
# pod 'MMWormhole'
# shadowsock
pod 'SwiftColor'
pod 'AsyncSwift'
pod 'Appirater'
tunnel
library
#fabric
socket
model
end
target "ShadowsockLibrary" do
library
model
# YAML-Framework 0.0.3 is not available in cocoapods so we install it from local using git submodule
# pod 'YAML-Framework', :path => "./Library/YAML-Framework"
end
target "ShadowsockModel" do
model
end
target "ShadowsockTunnel" do
tunnel
socket
end
target "ShadowsockProcessor" do
socket
end