-
Notifications
You must be signed in to change notification settings - Fork 164
/
Podfile
52 lines (43 loc) · 1.22 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
source 'https://cdn.cocoapods.org/'
abstract_target :example do
use_frameworks!
inhibit_all_warnings!
project 'MatomoTracker'
workspace 'MatomoTracker'
target :iOSExampleApp do
platform :ios, '11.0'
project 'Example/ios/ios'
pod 'MatomoTracker', path: './'
end
target :macOSExampleApp do
platform :osx, '10.13'
project 'Example/macos/macos'
pod 'MatomoTracker', path: './'
end
target :tvOSExampleApp do
platform :tvos, '10.2'
project 'Example/tvos/tvos'
pod 'MatomoTracker', path: './'
end
end
target 'MatomoTrackerTests' do
use_frameworks!
platform :ios, '13.0'
inhibit_all_warnings!
project 'MatomoTracker'
workspace 'MatomoTracker'
inherit! :search_paths
pod 'Quick', '~> 7.0'
pod 'Nimble', '~> 12.0'
end
# https://github.com/CocoaPods/CocoaPods/issues/11402
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# disable code signing for pods
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ""
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end