-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPodfile
More file actions
37 lines (30 loc) · 753 Bytes
/
Podfile
File metadata and controls
37 lines (30 loc) · 753 Bytes
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
platform :ios, '12.0'
abstract_target 'DataManager' do
pod 'SwiftLint'
target 'DataManager iOS' do
target 'DataManager iOS Tests' do
inherit! :search_paths
end
end
target 'DataManager OSX' do
target 'DataManager OSX Tests' do
inherit! :search_paths
end
end
target 'DataManager tvOS' do
target 'DataManager tvOS Tests' do
inherit! :search_paths
end
end
target 'DataManager watchOS' do
end
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'] = '12.0'
end
end
end
end