forked from liruqi/Mume-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
80 lines (67 loc) · 1.36 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
def library
pod 'Alamofire'
pod 'ICSMainFramework', :path => "./Library/ICSMainFramework/"
pod 'MMWormhole', '~> 2.0.0'
pod "MMDB-Swift"
end
def tunnel
pod 'MMWormhole', '~> 2.0.0'
end
def socket
pod 'CocoaAsyncSocket', '~> 7.4.3'
end
def model
pod 'RealmSwift'
pod 'ObjectMapper'
end
target "Potatso" do
pod 'Alamofire'
pod 'Aspects', :path => "./Library/Aspects/"
pod 'Cartography'
pod 'AsyncSwift'
pod 'SwiftColor'
pod 'Eureka'
pod 'MBProgressHUD'
pod 'CallbackURLKit'
pod 'SVPullToRefresh', :git => 'https://github.com/samvermette/SVPullToRefresh'
pod 'ObjectMapper'
pod 'PSOperations/Core'
pod 'Fabric'
pod 'Crashlytics'
pod "EFQRCode", '~> 1.2.5'
tunnel
library
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
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