Comment on page
🔜
Beta SDK Geofence & Location
Beta SDK is currently in the production phase and will be released soon. We are working diligently to finalize it and make it available for you to use.
In your pod file, you should add
NetmeraLocation
and NetmeraGeofence
then install to your app target like this;pod "NetmeraLocation"
pod "NetmeraGeofence"
Netmera SDK does not gather any location information from the device:
By default, Netmera SDK does not gather any location information from the device. If you want to use Netmera features requiring location information such as geofence messages and filtering target users by location, you must enable location tracking for your application.
For using location to target your users, you should enable Location History from the web panel. In order to do that, follow these steps:
Developers -> App Info -> App Config -> Location History Enabled
Add appropriate authorization strings to your application target's
Info.plist
file- If your application will use geofence messages and supports iOS 10 and earlier, you must set
NSLocationAlwaysUsageDescription
key and add a proper description explaining why your app will use region monitoring, for iOS 11 and above you must setNSLocationAlwaysAndWhenInUseUsageDescription
and a proper description.- In this case, SDK will monitor region enter/exit actions for geofence regions configured inside Netmera Dashboard.
- If your application only needs occasional location history information, you can set
NSLocationWhenInUseUsageDescription
key and add a proper description.- In this case, SDK will send the most recent location only once per session.
Request location authorization from user by calling the following method in an appropriate place:
Netmera.requestLocationAuthorization()
Setting max regions for geofence:
You can set max regions for Geofence with setNetmeraMaxActiveRegions method. If you set max active regions' number greater than 20 or smaller than 0, it will be set as the default which is 20.
Last modified 18d ago