-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
executable file
·48 lines (40 loc) · 954 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
41
42
43
44
45
46
47
48
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
target 'Store-norske-leksikon-iOS' do
pod "Cartography"
pod "ReactiveSwift"
pod "ReactiveCocoa"
pod "Result"
pod "SDWebImage"
end
target 'SNLTests' do
pod "Result"
pod "ReactiveSwift"
end
def lottie
pod 'lottie-ios', '~> 4.5'
end
target 'Store-norske-leksikon-iOSFramework' do
pod "Cartography"
pod "ReactiveCocoa"
pod "ReactiveSwift"
pod "Result"
pod "SDWebImage"
lottie
end
target 'lex.dk' do
pod "Cartography"
lottie
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end