Enabling Remote Analytics

By default, remote analytics (sending data to Factual servers for processing) is disabled. This means Location Engine SDK data will not be sent to Factual servers by default. If you would like to enable remote analytics, add the following after you start the SDK:

[engine enableRemoteAnalytics];

In the example above you can place it in the engineDidStartWithInstance callback:

- (void)engineDidStartWithInstance:(FactualEngine *)engine {
  NSLog(@"Engine started.");
  
  [engine enableRemoteAnalytics];
  ...