-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathPodfile
42 lines (34 loc) · 1.01 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
platform :ios, '12.0'
use_frameworks!
def project_pods
pod 'HEREMapsUI', :path => './'
pod 'SwiftLint', '0.44.0'
end
target 'MSDKUI_Demo' do
project_pods
target 'MSDKUI_Tests' do
inherit! :search_paths
pod 'OCMock', '3.8.1'
end
target 'MSDKUI_Demo_Tests' do
inherit! :search_paths
pod 'OCMock', '3.8.1'
end
target 'MSDKUI_Demo_UI_Tests' do
inherit! :search_paths
pod 'EarlGrey', '1.16.0'
end
end
target 'MSDKUI_Dev' do
project_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['LD_RUNPATH_SEARCH_PATHS'] = ['$(inherited)', '${PODS_ROOT}/HEREMaps/framework']
config.build_settings['PRODUCT_BUNDLE_IDENTIFIER'] = 'org.cocoapods.MSDKUI'
config.build_settings['RUN_CLANG_STATIC_ANALYZER'] = 'YES'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
end