forked from malcommac/SwiftLocation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftLocation.podspec
More file actions
17 lines (17 loc) · 863 Bytes
/
SwiftLocation.podspec
File metadata and controls
17 lines (17 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "SwiftLocation"
s.version = "4.2.0"
s.summary = "Easy and Efficient Location Tracking for iOS"
s.description = <<-DESC
Efficient location tracking for iOS with support for oneshot/continuous/background tracking, reverse geocoding, autocomplete and more!
DESC
s.homepage = "https://github.com/malcommac/SwiftLocation.git"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniele Margutti" => "hello@danielemargutti.com" }
s.social_media_url = "https://twitter.com/danielemargutti"
s.ios.deployment_target = "10.0"
s.source = { :git => "https://github.com/malcommac/SwiftLocation.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*.swift"
s.frameworks = "Foundation","CoreLocation","MapKit"
s.swift_versions = ['5.0', '5.1']
end