forked from matomo-org/matomo-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPiwikTracker.podspec
More file actions
18 lines (17 loc) · 801 Bytes
/
PiwikTracker.podspec
File metadata and controls
18 lines (17 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = "PiwikTracker"
spec.version = "4.4.0"
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" => "mattias.levin@gmail.com", "Cornelius Horstmann" => "site-github@brototyp.de" }
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.subspec 'Core' do |core|
core.source_files = 'PiwikTracker/*.swift'
end
end