Geo Tracking

Geo Tracking Usage

Gravite and some of the ad networks included in AATKit will make use of location services if your app is authorized to do so and if your app allows AATKit and ad networks to use the geo location information, too. By default, usage of location information is disabled. Please note, that allowing the usage of geo location information for advertising may leverage your revenues.

Ad networks that use location services are:

  • AdMob

  • AdX

  • AppNexus

  • DFP

  • InMobi

  • Smaato

  • SmartAd

If you want to give AATKit access to your geo data, please enable geo tracking with the AATConfigurationobject passed to AATKit’s initialization.

Enabling and disabling Geo Tracking

Configure AATKit like this:

let configuration = AATConfiguration()
configuration.isUseGeoLocation = true
AATSDK.initAATKit(with: configuration)

Change Geo Tracking Setting

You can change this setting at runtime:

let runtimeConfiguration = AATRuntimeConfiguration()
runtimeConfiguration.isUseGeoLocation = true
AATSDK.reconfigure(configuration: runtimeConfiguration)

Last updated