forked from matomo-org/matomo-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
39 lines (32 loc) · 768 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://github.com/CocoaPods/Specs.git'
abstract_target :example do
use_frameworks!
inhibit_all_warnings!
project 'MatomoTracker'
workspace 'MatomoTracker'
target :ios do
platform :ios, '8.0'
project 'Example/ios/ios'
pod 'MatomoTracker', path: './'
end
target :macos do
platform :osx, '10.12'
project 'Example/macos/macos'
pod 'MatomoTracker', path: './'
end
target :tvos do
platform :tvos, '10.2'
project 'Example/tvos/tvos'
pod 'MatomoTracker', path: './'
end
end
target 'MatomoTrackerTests' do
use_frameworks!
platform :ios, '8.0'
inhibit_all_warnings!
project 'MatomoTracker'
workspace 'MatomoTracker'
inherit! :search_paths
pod 'Quick', '~> 1.2'
pod 'Nimble', '~> 7.0'
end