-
Notifications
You must be signed in to change notification settings - Fork 15
/
FitDataProtocol.podspec
45 lines (35 loc) · 1.47 KB
/
FitDataProtocol.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Be sure to run `pod lib lint FitDataProtocol.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FitDataProtocol'
s.version = '2.1.5'
s.summary = 'Garmin Flexible and Interoperable Data Transfer Protocol.'
s.description = <<-DESC
Swift version of the Garmin Flexible and Interoperable Data Transfer Protocol.
DESC
s.homepage = 'https://github.com/FitnessKit/FitDataProtocol'
s.documentation_url = 'https://fitnesskit.github.io/FitDataProtocol/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kevin A. Hoogheem' => 'kevin@hoogheem.net' }
s.source = { :git => 'https://github.com/FitnessKit/FitDataProtocol.git', :tag => s.version.to_s }
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.1' }
s.swift_version = '5.1'
#Targets
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
#Source
s.source_files = 'Sources/FitDataProtocol/**/*'
#Required Frameworks
# s.ios.framework = [ 'Dispatch' ]
#Dependancy
s.dependency 'DataDecoder', '>= 5.0.0'
s.dependency 'FitnessUnits', '>= 3.1.0'
s.dependency 'AntMessageProtocol', '>= 1.1.1'
end