-
Notifications
You must be signed in to change notification settings - Fork 1
/
Podfile
97 lines (82 loc) · 2.11 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
source 'https://cdn.cocoapods.org/'
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
install! 'cocoapods', :disable_input_output_paths => true
def google_utilites
pod 'GTMSessionFetcher'
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'
end
def app_pods
pod 'Branch'
pod 'FacebookCore'
pod 'FBSDKCoreKit'
pod 'Firebase/Auth'
pod 'Firebase/Core'
pod 'Firebase/Crashlytics'
pod 'Firebase/DynamicLinks'
pod 'Firebase/Messaging'
pod 'Firebase/Performance'
pod 'Firebase/Storage'
pod 'Firebase/Firestore'
pod 'Firebase/InAppMessaging'
pod 'Firebase/Analytics'
pod 'FirebaseFirestoreSwift'
pod 'FirebaseUI'
pod 'FirebaseUI/Storage'
pod 'MarkdownKit', '1.5'
pod "NoveFeatherIcons", "~> 1.0"
pod 'SwiftLint'
end
def today_pods
pod 'Branch'
pod 'Firebase/Auth'
pod 'Firebase/Core'
pod 'Firebase/Firestore'
pod 'FirebaseFirestoreSwift'
pod 'Firebase/Storage'
pod 'MarkdownKit', '1.5'
pod "NoveFeatherIcons", "~> 1.0"
end
target 'Cactus Stage' do
use_frameworks!
inhibit_all_warnings!
google_utilites
app_pods
end
target 'Cactus Prod' do
use_frameworks!
inhibit_all_warnings!
google_utilites
app_pods
end
target 'Cactus Today Prod' do
use_frameworks!
inhibit_all_warnings!
google_utilites
today_pods
end
target 'Cactus UnitTests' do
use_frameworks!
inhibit_all_warnings!
google_utilites
app_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.name == 'Debug'
config.build_settings['OTHER_SWIFT_FLAGS'] = ['$(inherited)', '-Onone']
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
end
config.build_settings['LD_NO_PIE'] = 'NO'
end
end
end