-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Podfile
79 lines (66 loc) · 1.43 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
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'
end
def tunnel
pod 'MMWormhole', '~> 2.0.0'
end
def socket
pod 'CocoaAsyncSocket', '~> 7.4.3'
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'
tunnel
library
fabric
socket
end
target "PacketTunnel" do
tunnel
socket
end
target "PacketProcessor" do
socket
end
target "TodayWidget" do
pod 'Cartography'
pod 'SwiftColor'
library
socket
end
target "PotatsoLibrary" do
library
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'
end
end
end