forked from zhiphe/Potatso-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
81 lines (68 loc) · 1.68 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
70
71
72
73
74
75
76
77
78
79
80
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
def library
pod 'KissXML'
pod 'KissXML/libxml_module'
pod 'ICSMainFramework', :path => "./Library/ICSMainFramework/"
pod 'MMWormhole', '~> 2.0.0'
end
def tunnel
pod 'MMWormhole', '~> 2.0.0'
end
def socket
pod 'CocoaAsyncSocket', '~> 7.4.3'
end
def model
pod 'RealmSwift', '~> 1.1.0'
end
target "Potatso" do
pod 'Aspects', :path => "./Library/Aspects/"
pod 'Cartography', '~> 0.7'
pod 'AsyncSwift', '~> 1.7'
pod 'SwiftColor', :git => 'https://github.com/liruqi/SwiftColor.git'
pod 'Appirater'
pod 'Eureka', :git => 'https://github.com/xmartlabs/Eureka.git', :branch => 'swift2.3'
pod 'MBProgressHUD'
pod 'CallbackURLKit', '~> 0.2'
pod 'SVPullToRefresh', :git => 'https://github.com/samvermette/SVPullToRefresh'
pod 'ISO8601DateFormatter', '~> 0.8'
pod 'Alamofire', '~> 3.5'
pod 'ObjectMapper', '~> 1.5.0'
pod 'PSOperations', '~> 2.3'
pod 'Fabric'
pod 'Crashlytics'
tunnel
library
socket
model
end
target "PacketTunnel" do
tunnel
socket
end
target "PacketProcessor" do
socket
end
target "TodayWidget" do
pod 'Cartography', '~> 0.7'
pod 'SwiftColor', :git => 'https://github.com/liruqi/SwiftColor.git'
library
socket
model
end
target "PotatsoLibrary" do
library
model
end
target "PotatsoModel" do
model
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['SWIFT_VERSION'] = '2.3'
end
end
end