-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathPodfile
40 lines (33 loc) · 889 Bytes
/
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
source 'https://cdn.cocoapods.org/'
platform :ios, '13.0'
inhibit_all_warnings!
def live_app_pods
pod 'AWSMobileClient'
pod 'HyperTrack', '5.0.2'
pod 'HyperTrackViews/MapKit', '0.6.0'
pod 'lottie-ios', '3.1.9'
pod 'Branch', '1.39.2'
end
target 'LiveApp' do
use_frameworks!
live_app_pods
end
target 'Prelude' do
use_frameworks!
live_app_pods
end
target 'Model' do
use_frameworks!
live_app_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['DEBUG_INFORMATION_FORMAT'] = 'dwarf'
deployment_target = config.build_settings['IPHONEOS_DEPLOYMENT_TARGET']
if !deployment_target.nil? && !deployment_target.empty? && deployment_target.to_f < 12.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end
end