forked from matomo-org/matomo-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
39 lines (32 loc) · 789 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
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, '11.0'
inhibit_all_warnings!
project 'MatomoTracker'
workspace 'MatomoTracker'
inherit! :search_paths
pod 'Quick', '~> 5.0'
pod 'Nimble', '~> 10.0'
end