-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPodfile
88 lines (72 loc) · 2 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
platform :ios, '10.0'
SIPlibVersion = '3.7.3'
def default_pods
pod 'AFNetworkActivityLogger'
pod 'AFNetworking'
pod 'GoogleAnalytics'
pod 'Firebase/Core'
pod 'Firebase/Performance'
pod 'Firebase/Crashlytics'
pod 'HTCopyableLabel'
pod 'le', :git => 'https://github.com/LogentriesCommunity/le_ios.git'
pod 'MMDrawerController+Storyboard', :git => 'https://github.com/TomSwift/MMDrawerController-Storyboard.git'
pod 'PBWebViewController'
pod 'SAMKeychain'
pod 'SimulatorStatusMagic', :configurations => ['Debug']
pod 'SPLumberjackLogFormatter', :git => 'https://github.com/VoIPGRID/SPLumberjackLogFormatter.git', :inhibit_warnings => true
pod 'SVProgressHUD'
pod 'VialerSIPLib', SIPlibVersion
end
target 'Vialer' do
default_pods
end
target 'Voys' do
default_pods
end
target 'Verbonden' do
default_pods
end
target 'ANNAbel' do
default_pods
end
target 'Vialer Staging' do
default_pods
end
target 'Voys Staging' do
default_pods
end
target 'Verbonden Staging' do
default_pods
end
target 'ANNAbel Staging' do
default_pods
end
target 'VialerTests' do
pod 'VialerSIPLib', SIPlibVersion
pod 'OCMock'
pod 'OHHTTPStubs'
pod 'Firebase'
end
target 'VialerSnapshotUITests' do
default_pods
end
target 'VoysSnapshotUITests' do
default_pods
end
target 'VerbondenSnapshotUITests' do
default_pods
end
target 'ANNAbelSnapshotUITests' do
default_pods
end
post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)']
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'PJ_AUTOCONF=1'
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << 'SV_APP_EXTENSIONS'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '10.0'
end
end
end