forked from sobri909/LocoKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LocoKit.podspec
25 lines (25 loc) · 1015 Bytes
/
LocoKit.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
Pod::Spec.new do |s|
s.name = "LocoKit"
s.version = "5.1.1"
s.summary = "Location and activity recording framework"
s.homepage = "https://www.bigpaua.com/arckit/"
s.author = { "Matt Greenfield" => "[email protected]" }
s.license = { :text => "Copyright 2018 Matt Greenfield. All rights reserved.",
:type => "Commercial" }
s.source = { :git => 'https://github.com/sobri909/LocoKit.git', :tag => '5.1.1' }
s.frameworks = 'CoreLocation', 'CoreMotion'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.1' }
s.ios.deployment_target = '10.0'
s.default_subspec = 'Base'
s.subspec 'Base' do |sp|
sp.source_files = 'LocoKit/Base/**/*'
sp.dependency 'LocoKitCore', '5.1.1'
sp.dependency 'ReachabilitySwift', '~> 4.1'
sp.dependency 'Upsurge', '~> 0.10'
end
s.subspec 'LocalStore' do |sp|
sp.source_files = 'LocoKit/LocalStore/**/*'
sp.dependency 'LocoKit/Base'
sp.dependency 'GRDB.swift', '~> 2.10'
end
end