forked from matomo-org/matomo-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPiwikTracker.podspec
21 lines (19 loc) · 881 Bytes
/
PiwikTracker.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |spec|
spec.name = "PiwikTracker"
spec.version = "4.4.2"
spec.summary = "A Piwik tracker written in Swift for iOS, tvOS and macOS apps."
spec.homepage = "https://github.com/piwik/piwik-sdk-ios/"
spec.license = { :type => 'MIT', :file => 'LICENSE.md' }
spec.author = { "Mattias Levin" => "[email protected]", "Cornelius Horstmann" => "[email protected]" }
spec.source = { :git => "https://github.com/piwik/piwik-sdk-ios.git", :tag => "v#{spec.version}" }
spec.ios.deployment_target = '8.0'
spec.tvos.deployment_target = '9.0'
spec.osx.deployment_target = '10.12'
spec.requires_arc = true
spec.default_subspecs = 'Core'
spec.swift_version = '5.0'
spec.deprecated_in_favor_of = 'MatomoTracker'
spec.subspec 'Core' do |core|
core.source_files = 'PiwikTracker/*.swift'
end
end