Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

iBeacon tracking

iBeacon tracking allows you to measure and target micro locations using iBeacon and Low Energy Bluetooth.

The following beacon data is sent to Analytics and Target when trackBeacon is called:

  • a.beacon.uuid - ProximityUUID of the beacon

  • a.beacon.major - Major number of the beacon, such as store number

  • a.beacon.minor - Minor number of the beacon, such as a unique number in a store

  • a.beacon.prox - The following values represent how close the user is to the beacon:

    • 0 is unknown
    • 1 is immediate
    • 2 is near
    • 3 is far

Track iBeacons

  1. Add the library to your project and implement lifecycle.

    For more information, see Add the SDK and Config File to your Project in Core Implementation and Lifecycle.

  2. Import the library:

    #import "ADBMobile.h"
  3. When a device is within the proximity of a beacon, call trackBeacon:

    [ADBMobile trackBeacon:beacon data:nil];
  4. When the user leaves the proximity of the beacon, clear the current beacon:

    [ADBMobile trackingClearCurrentBeacon];

Send additional data

In addition to the timed action name, you can send additional context data with each track action call:

[ADBMobile trackBeacon:beacon data:@{@"myapp.ImageLiked" : imageName}];

Context data values must be mapped to custom variables:

Examples

- (void)locationManager:(CLLocationManager *)manager didRangeBeacons:(NSArray *)beacons inRegion:(CLBeaconRegion *)region { 
    if (beacons.count > 0) { 
        CLBeacon *beacon = beacons[0]; 
        // Adobe - track when in range of a beacon 
        [ADBMobile trackBeacon:beacon data:@{@"sampleContextData" : @"sampleContextDataVal"}]; 
    } 
} 
 
// When the user leaves the proximity of the beacon, clear the current beacon 
[ADBMobile trackingClearCurrentBeacon];