Enable Advertiser Identifier Tracking

For accurate analytics around devices and tracking Re-installs, it is essential to track the Advertising Identifier.

info

Note

This is not supported in iOS

Add Ad Identifier Library

Add the below dependency in the application level build-extras.gradle file.

Groovy
implementation("com.google.android.gms:play-services-ads-identifier:18.0.1")    

To enable Advertising Identifier tracking use the enableAdIdTracking() method as shown below.

Javascript
var moe = MoECordova.init(YOUR_Workspace_ID);
moe.enableAdIdTracking();    

Before you enable Advertising Id tracking please ensure the application is complying with the Google Play Policy regarding Advertising Id tracking. Refer to our help document for more information on the policy.

 

In case, you need to disable advertising-id after enabling tracking use the following method.

Javascript
var moe = MoECordova.init(YOUR_Workspace_ID);
moe.disableAdIdTracking();    
info

Note

The above APIs are available only starting plugin version 7.3.3. In the older versions, Advertising Identifier tracking is enabled by default.

Previous

Next

Was this article helpful?
0 out of 0 found this helpful

How can we improve this article?