forked from malcommac/SwiftLocation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftLocation.podspec
28 lines (26 loc) · 1.21 KB
/
SwiftLocation.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
Pod::Spec.new do |s|
s.name = "SwiftLocation"
s.version = "5.1.0"
s.summary = "Location Manager Made Easy"
s.description = <<-DESC
Efficient location tracking for iOS with support for oneshot/continuous/background tracking, reverse geocoding, autocomplete, geofencing, beacon monitoring & broadcasting
DESC
s.homepage = "https://github.com/malcommac/SwiftLocation.git"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniele Margutti" => "[email protected]" }
s.social_media_url = "https://twitter.com/danielemargutti"
s.ios.deployment_target = "11.0"
s.macos.deployment_target = "11.0"
s.source = { :git => "https://github.com/malcommac/SwiftLocation.git", :tag => s.version.to_s }
s.frameworks = "Foundation","CoreLocation","MapKit"
s.swift_versions = ['5.0', '5.1', '5.3']
s.subspec 'Core' do |s|
s.source_files = "Sources/SwiftLocation/**/*.swift"
s.frameworks = "Foundation","CoreLocation","MapKit"
end
s.subspec 'BeaconBroadcaster' do |s|
s.dependency 'SwiftLocation/Core'
s.source_files = "Sources/SwiftLocationBeaconBroadcaster/**/*.swift"
s.frameworks = "Foundation","CoreBluetooth"
end
end