forked from malcommac/SwiftLocation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftLocation.podspec
executable file
·43 lines (38 loc) · 2.05 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Be sure to run `pod lib lint SwiftLocation.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "SwiftLocation"
s.version = "0.2.0"
s.summary = "CoreLocation made easy in pure Swift"
s.description = <<-DESC
SwiftLocation is a simple 100% Swift 2.0+ wrapper around CoreLocation. Use Location services has never been easier and you can do it with your favourite language.
Let me show the best features of the library:
- **Auto-managed Hardware services** (heading/location/monitor services are turned off when not used)
- **Reverse geocoding services** (from address/coordinates to location placemark) using both **Apple** own CoreLocation services or external **Google Location APIs**
- Fast and low-powered **IP based device's location** discovery
- **Single shot location discovery** method (with desidered accuracy level) to get current user location with a simple closure as respond
- **Continous location update** methods to get both detailed locations or only significant data only.
- **Region monitor** with a single line of code
- **iBeacon proximity monitor** with a single line of code
- **Fixed user position** simulation
DESC
s.homepage = "https://github.com/malcommac/SwiftLocation"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "daniele margutti" => "[email protected]" }
s.source = { :git => "https://github.com/malcommac/SwiftLocation.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/danielemargutti'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'SwiftLocation' => ['Pod/Assets/*.png']
}
s.frameworks = 'UIKit', 'CoreLocation'
end