-
Notifications
You must be signed in to change notification settings - Fork 164
/
MatomoTracker.podspec
26 lines (23 loc) · 1020 Bytes
/
MatomoTracker.podspec
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
Pod::Spec.new do |spec|
spec.name = "MatomoTracker"
spec.version = "7.7.0"
spec.summary = "A Matomo Tracker written in Swift for iOS, tvOS and macOS apps."
spec.homepage = "https://github.com/matomo-org/matomo-sdk-ios/"
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.author = { "Mattias Levin" => "mattias.levin@gmail.com", "Cornelius Horstmann" => "site-github@brototyp.de" }
spec.source = { :git => "https://github.com/matomo-org/matomo-sdk-ios.git", :tag => "v#{spec.version}" }
spec.ios.deployment_target = '11.0'
spec.tvos.deployment_target = '10.0'
spec.osx.deployment_target = '10.13'
spec.requires_arc = true
spec.default_subspecs = 'Core'
spec.swift_version = '5.0'
spec.ios.frameworks = 'UIKit'
spec.tvos.frameworks = 'UIKit'
spec.resource_bundles = {
'MatomoTracker_Privacy' => ['MatomoTracker/PrivacyInfo.xcprivacy'],
}
spec.subspec 'Core' do |core|
core.source_files = 'MatomoTracker/*.swift'
end
end