Skip to content

Commit f0d2b1f

Browse files
committed
Added When-In-Use location monitoring option
1 parent 196f114 commit f0d2b1f

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed

Framework/IngeoSDK.framework/Headers/IGLocationManager.h

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,20 @@
9191
///---------------------------------------------------------------------------------------
9292

9393
/**
94-
Starts the location monitoring service.
94+
Starts the Always-On location monitoring service.
9595
*/
9696
+ (void)startUpdatingLocation;
9797

98+
/**
99+
Starts the Always-On location monitoring service.
100+
*/
101+
+ (void)startUpdatingLocationAlwaysOn;
102+
103+
/**
104+
Starts the When-In-Use location monitoring service.
105+
*/
106+
+ (void)startUpdatingLocationWhenInUse;
107+
98108
/**
99109
Stops the location monitoring service.
100110
*/
-1 Bytes
Binary file not shown.

Framework/IngeoSDK.framework/IngeoSDK

-166 KB
Binary file not shown.

IngeoSDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Pod::Spec.new do |s|
33
s.name = "IngeoSDK"
4-
s.version = "1.3.5"
4+
s.version = "1.3.6"
55
s.summary = "Ingeo iOS SDK"
66
s.homepage = "http://ingeo.io"
77
s.license = 'Apache License, Version 2.0'

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,11 @@ For a full list of features visit: http://ingeo.io/sdk
6969

7070
3. Start Location Monitoring
7171
```swift
72-
IGLocationManager.startUpdatingLocation()
72+
IGLocationManager.startUpdatingLocationAlwaysOn()
73+
```
74+
Or
75+
```swift
76+
IGLocationManager.startUpdatingLocationWhenInUse()
7377
```
7478

7579
4. Get the honey

0 commit comments

Comments
 (0)