-
Notifications
You must be signed in to change notification settings - Fork 92
/
Podfile
104 lines (80 loc) · 2.67 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
95
96
97
98
99
100
101
102
103
104
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
use_modular_headers!
pod 'GoogleUtilities/AppDelegateSwizzler'
pod 'GoogleUtilities/Environment'
pod 'GoogleUtilities/ISASwizzler'
pod 'GoogleUtilities/Logger'
pod 'GoogleUtilities/MethodSwizzler'
pod 'GoogleUtilities/NSData+zlib'
pod 'GoogleUtilities/Network'
pod 'GoogleUtilities/Reachability'
pod 'GoogleUtilities/UserDefaults'
pod 'Firebase/Crashlytics'
pod 'SSZipArchive'
target 'IRCCloud' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for IRCCloud
pod 'youtube-ios-player-helper'
pod 'Firebase/Messaging'
target 'IRCCloudUnitTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'IRCCloud Enterprise' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for IRCCloud Enterprise
pod 'youtube-ios-player-helper'
pod 'Firebase/Messaging'
end
target 'IRCCloud FLEX' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for IRCCloud FLEX
pod 'youtube-ios-player-helper'
pod 'Firebase/Messaging'
end
target 'NotificationService' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for NotificationService
end
target 'NotificationService Enterprise' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for NotificationService Enterprise
end
target 'ShareExtension' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for ShareExtension
end
target 'ShareExtension Enterprise' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for ShareExtension Enterprise
end
post_install do |installer|
installer.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
installer.aggregate_targets.each do |target|
target.xcconfigs.each do |variant, xcconfig|
xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
xcconfig_path = config.base_configuration_reference.real_path
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
end
end