forked from zhiphe/Potatso-iOS
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Podfile
95 lines (80 loc) · 1.73 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
def fabric
pod 'Fabric'
pod 'Crashlytics'
end
def library
pod 'KissXML'
pod 'KissXML/libxml_module'
pod 'ICSMainFramework', :path => "./Library/ICSMainFramework/"
pod 'MMWormhole', '~> 2.0.0'
pod 'KeychainAccess'
end
def tunnel
pod 'MMWormhole', '~> 2.0.0'
end
def socket
pod 'CocoaAsyncSocket', '~> 7.4.3'
end
def model
pod 'RealmSwift'
end
target "Potatso" do
pod 'Aspects', :path => "./Library/Aspects/"
pod 'Cartography'
pod 'AsyncSwift'
pod 'SwiftColor', '~> 0.3.7'
pod 'Appirater'
pod 'Eureka', '~> 1.6.0'
pod 'MBProgressHUD'
pod 'CallbackURLKit'
pod 'ICDMaterialActivityIndicatorView'
pod 'Reveal-iOS-SDK', '~> 1.6.2', :configurations => ['Debug']
pod 'ICSPullToRefresh', '~> 0.4'
pod 'ISO8601DateFormatter', '~> 0.8'
pod 'Alamofire'
pod 'ObjectMapper'
pod 'CocoaLumberjack/Swift'
pod 'Helpshift', '5.6.1'
tunnel
library
fabric
socket
model
end
target "PacketTunnel" do
tunnel
socket
end
target "PacketProcessor" do
socket
end
target "TodayWidget" do
pod 'Cartography'
pod 'SwiftColor'
library
socket
model
end
target "PotatsoLibrary" do
library
model
end
target "PotatsoModel" do
model
end
target "PotatsoLibraryTests" do
library
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
if target.name == "HelpShift"
config.build_settings["OTHER_LDFLAGS"] = '$(inherited) "-ObjC"'
end
end
end
end