-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
87 lines (59 loc) · 1.6 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
platform :ios, '13.0'
use_frameworks!
# ignore all warnings from all pods
inhibit_all_warnings!
source 'https://cdn.cocoapods.org/'
source 'https://github.com/goinstant/pods-specs-public'
def all_pods
pod 'SwiftLint'
pod 'R.swift'
end
target 'CommonViews' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for CommonViews
end
target 'Constants' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Constants
end
target 'Extensions' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Extensions
end
target 'Helpers' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Helpers
end
target 'Models' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Models
end
target 'Profile' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Profile
end
target 'ProfileExampleApp' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
all_pods
# Pods for ProfileExampleApp
end
target 'xcodecloud-demo-growth' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
all_pods
# Pods for xcodecloud-demo-growth
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end