The AT Internet tag allows you to follow your users activity throughout your application’s lifecycle. To help you, the tag makes available classes (helpers) enabling the quick implementation of tracking for different application events (screen loads, gestures, video plays…)
iOS 10.0+ or tvOS 10.0+ or watchOS 3.0
Supported devices :
Find the integration information by following [this link]
CocoaPods is a dependency manager which automates and simplifies the process of using 3rd-party libraries in your projects.
target 'MyProject' do
pod "ATInternet-Apple-SDK/Tracker",">=2.0"
use_frameworks!
end
target 'MyProject' do
pod "ATInternet-Apple-SDK/tvOSTracker",">=2.0"
use_frameworks!
end
target 'MyProject' do
pod "ATInternet-Apple-SDK/watchOSTracker",">=2.0"
use_frameworks!
end
target 'MyProject App Extension' do
pod "ATInternet-Apple-SDK/AppExtension",">=2.0"
use_frameworks!
end
NB : To avoid conflicts caused by CocoaPods, it's possible to use an independent pod:
target 'MyProject App Extension' do
pod "ATInternet-Apple-SDK-AppExtension",">=2.0"
use_frameworks!
end
Carthage is an alternative to Cocoapods. It’s a simple dependency manager for Mac and iOS, created by a group of developers from Github.
// AppDelegate.swift
import Tracker
let trackerDelegate = DefaultTrackerDelegate() // weak var !
let tracker: Tracker = ATInternet.sharedInstance.defaultTracker
tracker.setSiteId(410501, sync: true, completionHandler: nil) // required
tracker.setLog("logp", sync: true, completionHandler: nil) // required
// tracker.enableDebugger = true // track the hit sent
// tracker.delegate = trackerDelegate // verbose mode
tracker.screens.add().sendView() // send a screen hit
MIT