iOS Geofence SDK
Overview
CleverTap Geofence SDK provides geofencing capabilities to CleverTap iOS SDK by using Core Location framework. This document lists down steps to utilize CleverTap Geofence in your apps. You can further customize your integration of CleverTap Geofence by using the Geofence Customization document.
Requirements
The following are required for using CleverTap Geofence SDK:
- CleverTap iOS SDK version 3.9.0 or above
- Swift version 5.1 or above
- iOS version 10.0 or above
- CoreLocation iOS Framework
Installation
Via CocoaPods
CocoaPods is a dependency manager for iOS projects. To integrate CleverTap Geofence SDK into your Xcode project using CocoaPods, specify the following in your Podfile
:
pod 'CleverTap-Geofence-SDK'
For installing CleverTap Geofence via Carthage or Manually, check out the steps in Geofence Customization document.
Integration
CleverTap Geofence utilizes Core Location APIs to setup up Geofences Region monitoring.
The CleverTap Geofence will NOT request Location permissions from the user. Location Permission has to requested by the app as deemed fit while onboarding the user to the app.
- In Xcode, enable
Location Updates
inBackground Modes
for your App Target. You can enable this in Xcode by:
- Click on your
AppTarget
in Xcode Project Navigator - Click on
Signing & Capabilities
tab - Click on
+ Capability
button - Select the
Background Modes
option - Enable
Location Updates
by selecting the checkbox
- In your
Info.plist
file, add the following keys:
-
NSLocationAlwaysAndWhenInUseUsageDescription
also known asPrivacy - Location Always and When In Use Usage Description
This is a key that accepts a String description to be used by iOS while requesting Location permission from the user. -
NSLocationWhenInUseUsageDescription
also known asPrivacy - Location When In Use Usage Description
This is a key that accepts a String description to be used by iOS while requesting Location permission from the user. -
UIBackgroundModes
also known asRequired background modes
This is a key that accepts an Array of items. This should include thelocation
also known asApp registers for location updates
item to enable Background Location monitoring.For iOS 11 only: If your app targets iOS 11 then along with the above-mentioned three Info.plist keys, the following key is also required. If your app target is iOS 12 or above, the following is not required:
-
NSLocationAlwaysUsageDescription
also know asPrivacy - Location Always Usage Description
This is a key that accepts a String description to be used by iOS while requesting Location permission from the user. Only required for iOS 11.Following is an example of all the Info.plist keys in Source Code format:
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>App needs your location to provide enhanced features.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>App needs your location to provide enhanced features.</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>App needs your location to provide enhanced features.</string>
<key>UIBackgroundModes</key>
<array>
<string>location</string>
<string>remote-notification</string>
<string>fetch</string>
<string>processing</string>
</array>
- In your
AppDelegate
file, import the CleverTapGeofence module:
import CleverTapGeofence
@import CleverTapGeofence;
- In your AppDelegate's
application:didFinishLaunchingWithOptions:
function, add the following the code snippet. Ensure that Geofence SDK initialization is done after CleverTap Main SDK initialization.
CleverTapGeofence.monitor.start(didFinishLaunchingWithOptions: launchOptions)
[[CleverTapGeofence monitor] startWithDidFinishLaunchingWithOptions:launchOptions];
- CleverTap Geofence SDK requires location permission from users to provide Geofencing capabilities. The App is expected to request Location permission from the user at an appropriate time. Once CleverTap Geofence SDK detects that Location permission has been given by the user, only then the module starts to perform its functions.
An example of how an app can request location permission is below:
let locationManager = CLLocationManager()
locationManager.requestAlwaysAuthorization()
CLLocationManager *locationManager = [[CLLocationManager alloc] init];
[locationManager requestAlwaysAuthorization];
Customization
You can further customize your integration of CleverTap Geofence by following the Geofence Customization document.
Example Usage
- A demo application showing CocoaPods Installation.
- A demo application showing Carthage Installation.
Change Log
Refer to the CleverTap Geofence SDK Change Log.
Help and Questions
If you have questions or concerns, you can reach out to the CleverTap Support Team from your CleverTap Dashboard.
License
CleverTap Geofence is MIT licensed, as found in the LICENSE file.
Updated 12 months ago