-
Notifications
You must be signed in to change notification settings - Fork 3
/
Podfile
59 lines (46 loc) · 1.61 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
# Uncomment this line to define a global platform for your project
platform :ios, '15.0'
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
inhibit_all_warnings!
# Pods for TCAT
target 'TCAT' do
# Location
pod 'GoogleMaps'
# Networking + Data
pod 'Apollo', '~> 1.9.3'
pod 'SwiftyJSON', '~> 5.0'
pod 'FutureNova', :git => 'https://github.com/cuappdev/ios-networking.git'
pod 'Wormholy', :configurations => ['Debug']
# Analytics
pod 'Firebase'
pod 'FirebaseCrashlytics'
pod 'Firebase/Messaging'
# File Management
pod 'Zip', '~> 1.1'
# UI Frameworks
pod 'DZNEmptyDataSet', :git=> 'https://github.com/cuappdev/DZNEmptyDataSet.git'
pod 'NotificationBannerSwift', '~> 3.0.0'
pod 'Pulley', '~> 2.7'
pod 'Presentation', :git=> 'https://github.com/cuappdev/Presentation.git'
pod 'SnapKit', '~> 5.0'
pod 'WhatsNewKit', '~> 1.1'
# Other
pod 'SwiftLint'
end
# Added for NotificationBannerSwift build issue
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
xcconfig_path = config.base_configuration_reference.real_path
xcconfig = File.read(xcconfig_path)
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
end
end
end