forked from TelemetryDeck/SwiftSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTelemetryClient.podspec
More file actions
16 lines (16 loc) · 858 Bytes
/
TelemetryClient.podspec
File metadata and controls
16 lines (16 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |spec|
spec.name = "TelemetryClient"
spec.version = "1.4.2"
spec.summary = "Client SDK for TelemetryDeck"
spec.swift_versions = "5.2"
spec.description = "This package allows you to send signals to TelemetryDeck from your Swift code. Sign up for a free account at telemetrydeck.com."
spec.homepage = "https://github.com/TelemetryDeck/SwiftClient"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Daniel Jilg" => "daniel@telemetrydeck.com" }
spec.ios.deployment_target = "12.0"
spec.osx.deployment_target = "10.13"
spec.watchos.deployment_target = "5.0"
spec.tvos.deployment_target = "13.0"
spec.source = { :git => "https://github.com/TelemetryDeck/SwiftClient.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.{h,m,swift}"
end