CleverTap
Using Plot Projects and CleverTap together allows you to segment your users based on the places they visit and add a location-intelligence layer to your marketing campaigns. You can, for example, segment and send push notifications to users whom you have qualified as 'Train Commuters’ based on who visited a train station more than eight times in the last week or 'Regular Cinema Visitors' based on who visited the cinema more than two times in the last month.
Set up a Listening Campaign in the Plot Projects dashboard¶
Plot Projects offers a Geo SDK easily connects to the CleverTap SDK (see paragraphs below). Once this is done you can create Listening Campaigns in the Plot Projects dashboard that tracks visits of your users.
The first step is to create the locations you want to track. This can be a single location like a train station:
Or a large set of locations:
Once your locations are set up, you can create a Plot Projects Listening Campaign defining the Segment you’d like users to be added after visiting the designated location(s).
When creating the campaign, set the field ‘Listening campaign Data’ with the tag key value in json format
{"key": "visited_train_station"}
That’s it, you’ve finished setting up the location campaigns! Users can now be automatically added to the corresponding segments in your CleverTap dashboard.
Plot Projects Listening Campaigns have many options, including:
- Trigger on geofences, polygons and/or beacons.
- Trigger on enter, exit or dwell.
- Define opening hours per location.
- Define start and end dates of the campaign.
Integrating into your app¶
Now that your Listening Campaign is set up, your app can be location-aware and forward the events to CleverTap. This integration guide is designed for Android, but also works for other supported platforms of the Plot SDK. You can find iOS documentation here After completing the integration guide, when a user enters the Paddington Station Plot triggers a CleverTap event. That results in the CleverTap dashboard as below:
Start with the Plot Projects integration guide and the CleverTap integration guide. After integrating both libraries, you can forward geotrigger events from Plot Projects to CleverTap.
To receive geotrigger events from Plot Projects, create a class that extends GeotriggerHandlerBroadcastReceiver. In that class you call the CleverTap API in order to send the event.
public class MyGeotriggerHandlerBroadcastReceiver extends GeotriggerHandlerBroadcastReceiver {
private static final String LOG_TAG = "MyGeotriggerHandler";
@Override
public List<Geotrigger> handleGeotriggers(List<Geotrigger> list) {
for (Geotrigger geotrigger: list)
try {
JSONObject jsonObject = new JSONObject(geotrigger.getData());
String key = jsonObject.getString("key");
CleverTapAPI cleverTap = CleverTapAPI.getInstance(getContext());
cleverTap.event.push(key);
Log.d(LOG_TAG, "sent CleverTap event: " + key);
} catch (CleverTapException e) {
// handle CleverTap exception
} catch (JSONException e) {
// handle JSON exception
}
return list;
}
}
The MyGeotriggerHandlerBroadcastReceiver
, presented above, records an event for CleverTap using the data field set in the dashboard as key.
To let Android find the receiver, add it to AndroidManifest.xml
<receiver
android:name=".MyGeotriggerHandlerBroadcastReceiver"
android:permission="false">
<intent-filter>
<action android:name="${applicationId}.plot.HandleGeotriggers" />
</intent-filter>
</receiver>
What's next
Users are now added automatically to the corresponding segments in the CleverTap dashboard. You can now target or create location-based marketing campaigns for these segments.