-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHyperTrackViews.podspec
33 lines (28 loc) · 1.26 KB
/
HyperTrackViews.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
Pod::Spec.new do |spec|
# Spec Metadata
spec.name = "HyperTrackViews"
spec.version = "0.9.0"
spec.summary = "Get HyperTrack data directly on your iOS app to build views"
spec.description = "The iOS Views SDK is used for getting live location and movement data for devices and trips directly to your iOS app."
spec.homepage = "https://hypertrack.com"
spec.license = { :type => "Copyright", :text => "Copyright (c) 2018 HyperTrack, Inc. (https://www.hypertrack.com)" }
spec.author = "HyperTrack Inc."
# Platform Specifics
spec.platform = :ios, "9.0"
# Source Location
spec.source = { :http => "https://github.com/hypertrack/views-ios/releases/download/#{spec.version}/#{spec.name}.zip" }
# Source Code
spec.subspec "Core" do |subspec|
subspec.source_files = "*"
subspec.exclude_files = "MapKit.swift"
end
spec.subspec "MapKit" do |subspec|
subspec.dependency "HyperTrackViews/Core"
subspec.source_files = "MapKit.swift"
subspec.ios.frameworks = 'MapKit'
end
spec.default_subspec = "Core"
spec.swift_versions = ['4.2', '5.0']
# Project Settings
spec.dependency "AWSAppSync", "3.0.2"
end