Locations & Geofences

Configurable properties

In this section you will find a series of more advanced functionalities that require a more complex development. We recommend that a developer be in charge of this configuration.

Activate Geolocated Notifications

The indigitall SDK can manage the user's location. This allows you to use the location filters on the send push campaign screen ( Campaigns> Push> New push campaign > Filters> Geographical Filters)

1699

Once we have enabled this functionality, the end user will have to give their consent to the location permission and enable the location services of their smartphone, so that the application can obtain the exact location of the user.

Include the requestLocation parameter to your initialization.

...

IndigitallFlutterPlugin.init({ 
  IndigitallParams.PARAM_APP_KEY: "<YOUR_APP_KEY>", 
  IndigitallParams.PARAM_SENDER_ID: "<YOUR_SENDER_ID>", 
  IndigitallParams.PARAM_REQUEST_LOCATION: true 
  }, null, null, null);

...